diff options
author | seanc <seanc@FreeBSD.org> | 2003-02-07 10:44:21 +0800 |
---|---|---|
committer | seanc <seanc@FreeBSD.org> | 2003-02-07 10:44:21 +0800 |
commit | 029b18cf87aedbf71e33f8d866f6df8c14ff7289 (patch) | |
tree | 2315898546b50fdde5fb0c2b3b87a246f37d3136 /print | |
parent | 1f6ee4fb3acab07e5bf5542a77600b7f2b044939 (diff) | |
download | freebsd-ports-gnome-029b18cf87aedbf71e33f8d866f6df8c14ff7289.tar.gz freebsd-ports-gnome-029b18cf87aedbf71e33f8d866f6df8c14ff7289.tar.zst freebsd-ports-gnome-029b18cf87aedbf71e33f8d866f6df8c14ff7289.zip |
Correct ports that were abusing the FORBIDDEN variable and replace with
either IGNORE or BROKEN.
Since there seems to be some confusion, for the record:
BROKEN is reserved for ports that don't work. This will prevent
users from installing the port, but please note that
ports marked as BROKEN will still be built by bento
IGNORE is reserved for ports that should not be built for one
reason or another (including bento). Users and bento
will not build ports marked as IGNORE.
FORBIDDEN is reserved for security breakages only!!! Only mark a
port as FORBIDDEN if there is a security issue with the
port at the time.
Reviewed by: kris (portmgr)
Diffstat (limited to 'print')
-rw-r--r-- | print/gp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/gp/Makefile b/print/gp/Makefile index 7774c784a55c..2436f4e9e634 100644 --- a/print/gp/Makefile +++ b/print/gp/Makefile @@ -24,7 +24,7 @@ RUN_DEPENDS= ${PREFIX}/bin/psbook:${PORTSDIR}/print/psutils-${PAPERSIZE} \ LANGUAGE?= English .if (${LANGUAGE} == "English") -FORBIDDEN= Broken unless someone makes it work with tcl/tk 8.X +IGNORE= Broken unless someone makes it work with tcl/tk 8.X ALL_TARGET= filters #LIB_DEPENDS= tcl76.1:${PORTSDIR}/lang/tcl76 #RUN_DEPENDS+= ${PREFIX}/bin/wish4.2:${PORTSDIR}/x11-toolkits/tk42 @@ -41,7 +41,7 @@ DOCDIRNAME= Doc.ja DOCEXT= .euc PAPERSIZE= a4 .else -FORBIDDEN= Broken unless someone makes it work with tcl/tk 8.X +IGNORE= Broken unless someone makes it work with tcl/tk 8.X PAPERSIZE= a4 .endif MAKE_ENV= LANGUAGE=${LANGUAGE} LANGEXT=${LANGEXT} |