diff options
author | glewis <glewis@FreeBSD.org> | 2009-05-03 14:17:08 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2009-05-03 14:17:08 +0800 |
commit | 4fc9195a6eb6ea06d7ba4c69ec0953fb9d1ba35c (patch) | |
tree | ad7eaf6022067594f52eb6089d3863684852c92a /java/jdk15-doc | |
parent | 4e1209b69fa828f3b974ad59b9c12100f57b7d4c (diff) | |
download | freebsd-ports-gnome-4fc9195a6eb6ea06d7ba4c69ec0953fb9d1ba35c.tar.gz freebsd-ports-gnome-4fc9195a6eb6ea06d7ba4c69ec0953fb9d1ba35c.tar.zst freebsd-ports-gnome-4fc9195a6eb6ea06d7ba4c69ec0953fb9d1ba35c.zip |
. Remove quotes from NO_CDROM and RESTRICTED. [1]
. Set IGNORE if NOPORTDOCS is set since this port only installs docs. [2]
Pointed out by: portlint [1]
QAT [2]
Diffstat (limited to 'java/jdk15-doc')
-rw-r--r-- | java/jdk15-doc/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/java/jdk15-doc/Makefile b/java/jdk15-doc/Makefile index 5865b17d239a..dc339e231092 100644 --- a/java/jdk15-doc/Makefile +++ b/java/jdk15-doc/Makefile @@ -17,8 +17,11 @@ COMMENT= Java Development Kit ${JDK_MAJOR_VER} Documentation LATEST_LINK= jdk${JDK_CONCAT_VER}-doc DOCSDIR?= ${PREFIX}/share/doc/jdk${JDK_MAJOR_VER} -NO_CDROM= "License does not allow distribution with fee." -RESTRICTED= "This documentation is under license and export control." +NO_CDROM= License does not allow distribution with fee. +RESTRICTED= This documentation is under license and export control. +.if defined(NOPORTDOCS) +IGNORE= port only installs documentation +.endif WRKSRC= ${WRKDIR}/docs JDK_VERSION= 1.5.0 |