diff options
author | znerd <znerd@FreeBSD.org> | 2002-10-10 16:38:39 +0800 |
---|---|---|
committer | znerd <znerd@FreeBSD.org> | 2002-10-10 16:38:39 +0800 |
commit | 5f5179de26d38781425a4067cd0fb4dcd4f0409d (patch) | |
tree | 4721689e202a1cda58ea6eaf35e5f5fb64d50f87 /java/jdk14-doc | |
parent | 73eb630512cb408be8c7cceedfdaad5655c57930 (diff) | |
download | freebsd-ports-gnome-5f5179de26d38781425a4067cd0fb4dcd4f0409d.tar.gz freebsd-ports-gnome-5f5179de26d38781425a4067cd0fb4dcd4f0409d.tar.zst freebsd-ports-gnome-5f5179de26d38781425a4067cd0fb4dcd4f0409d.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
Diffstat (limited to 'java/jdk14-doc')
-rw-r--r-- | java/jdk14-doc/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/java/jdk14-doc/Makefile b/java/jdk14-doc/Makefile index 45386d2767e4..54d47a38638c 100644 --- a/java/jdk14-doc/Makefile +++ b/java/jdk14-doc/Makefile @@ -14,11 +14,7 @@ DISTNAME= j2sdk-${JDK_VERSION:S/./_/g}-doc MAINTAINER= znerd@FreeBSD.org NO_CDROM= "License does not allow distribution with fee." -RESTRICTED= "This software is under license and export control." - -.if defined(BATCH) || defined(PACKAGE_BUILDING) -IGNORE= "You cannot legally distribute packages" -.endif +RESTRICTED= "This documentation is under license and export control." PLIST_SUB+= T=${TARGET_DIR:S/^${PREFIX}\///} TARGET_DIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER} |