diff options
author | Ernst de Haan <znerd@FreeBSD.org> | 2002-10-10 08:38:39 +0000 |
---|---|---|
committer | Ernst de Haan <znerd@FreeBSD.org> | 2002-10-10 08:38:39 +0000 |
commit | 2c50b3e55f4cb003a84e1d300a9cd896a2f7a96d (patch) | |
tree | 29d0c757329aa501ce8f8768135bb25f5659a067 /java/jdk15/Makefile | |
parent | 9f43ab1dd812b4f275f24181649737b69659cf85 (diff) | |
download | ports-2c50b3e55f4cb003a84e1d300a9cd896a2f7a96d.tar.gz ports-2c50b3e55f4cb003a84e1d300a9cd896a2f7a96d.zip |
Not using IGNORE anymore to avoid package building.
.if defined(BATCH) || defined(PACKAGE_BUILDING)
IGNORE= "You can not legally distribute binaries"
.endif
This was superfluous and inhibiting package builds of things that
depend on the port. Having RESTRICTED and NO_CDROM is enough to
ensure that a package will not appear on the FTP site or a CDROM
(it will be built and used as a basis for other packages to build
with, but will be deleted at the end of the build run).
Requested by: kris
Reviewed by: portmgr (silence)
PR: 42758
Notes
Notes:
svn path=/head/; revision=67730
Diffstat (limited to 'java/jdk15/Makefile')
-rw-r--r-- | java/jdk15/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/java/jdk15/Makefile b/java/jdk15/Makefile index cdb855b22662..27b6facbd2c6 100644 --- a/java/jdk15/Makefile +++ b/java/jdk15/Makefile @@ -44,7 +44,8 @@ JDK13DIR?= ${LOCALBASE}/linux-sun-jdk${JDK_VERSION} ONLY_FOR_ARCHS= i386 USE_GMAKE= yes -RESTRICTED= "Redistribution of pre-compiled binaries isn't permitted" +RESTRICTED= "Redistribution of pre-compiled binaries is not permitted" +NO_CDROM= "Redistribution of pre-compiled binaries is not permitted" MAKE_ENV= ALT_BOOTDIR="${JDK13DIR}" \ ALT_MOTIF_DIR="${X11BASE}" \ OPENWINHOME="${X11BASE}" \ @@ -90,10 +91,6 @@ PLIST_SUB+= PLUGIN:="@comment " PLIST_SUB+= PLUGIN:="" .endif -.if defined(BATCH) || defined(PACKAGE_BUILDING) -IGNORE= "You can not legally distribute pre-compiled binaries" -.endif - .include <bsd.port.pre.mk> .if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500038 ) |