- Move CONFLICTS definition to slave ports itself instead of making it in

master port so that portmaster can pick this up correctly
- Remove MD5 checksum from distinfo

Reported by: Warren Block <wblock at wonkity.com> and dougb@
This commit is contained in:
Rong-En Fan 2011-03-13 14:15:42 +00:00
parent 5d2e78ba26
commit 6cd721e3b0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=270791
4 changed files with 12 additions and 11 deletions

View file

@ -5,7 +5,11 @@
# $FreeBSD$
#
CONFLICTS= enscript-letter-* enscript-letterdj-*
PAPERSIZE= a4
PS= A4
MASTERDIR= ${.CURDIR}/../enscript-letter
.include "${MASTERDIR}/Makefile"

View file

@ -19,21 +19,15 @@ COMMENT= ASCII to PostScript filter
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-nls --with-media=${PS}
CONFLICTS?= enscript-a4-* enscript-letterdj-*
INFO= enscript
MAN1= diffpp.1 enscript.1 sliceprint.1 states.1
PAPERSIZE?= letter
PS= Letter
.if ${PAPERSIZE} == a4
PS=A4
CONFLICTS= enscript-letter-* enscript-letterdj-*
.elif ${PAPERSIZE} == letter
PS=Letter
CONFLICTS= enscript-a4-* enscript-letterdj-*
.elif ${PAPERSIZE} == letterdj
PS=Letterdj
CONFLICTS= enscript-a4-* enscript-letter-*
.else
.if (${PAPERSIZE} != a4 && ${PAPERSIZE} != letter && ${PAPERSIZE} != letterdj)
.BEGIN:
@${ECHO} "Error: invalid value for PAPERSIZE: \"${PAPERSIZE}\""
@${ECHO} "Possible values are: a4, letter, or letterdj"

View file

@ -1,3 +1,2 @@
MD5 (enscript-1.6.4.tar.gz) = b5174b59e4a050fb462af5dbf28ebba3
SHA256 (enscript-1.6.4.tar.gz) = 45299a4db47c9c08c3649d4f62b211ae79ef5143360c264a40371a728f6ad99b
SIZE (enscript-1.6.4.tar.gz) = 1036734

View file

@ -5,7 +5,11 @@
# $FreeBSD$
#
CONFLICTS= enscript-a4-* enscript-letter-*
PAPERSIZE= letterdj
PS= Letterdj
MASTERDIR= ${.CURDIR}/../enscript-letter
.include "${MASTERDIR}/Makefile"