diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2005-10-07 20:25:40 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2005-10-07 20:25:40 +0000 |
commit | 75047e4b587664f938b582408c874626197295ef (patch) | |
tree | d7244caf5b9eb8d8f7f18209a544029a8640c91e /textproc/xml4j | |
parent | e0397ac29fc745cb68c7835889e7687b58f73f9c (diff) | |
download | ports-75047e4b587664f938b582408c874626197295ef.tar.gz ports-75047e4b587664f938b582408c874626197295ef.zip |
. Don't define PORTDOCS if NOPORTDOCS is defined.
Notes
Notes:
svn path=/head/; revision=144529
Diffstat (limited to 'textproc/xml4j')
-rw-r--r-- | textproc/xml4j/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/textproc/xml4j/Makefile b/textproc/xml4j/Makefile index 84a35f82259c..a95174699be1 100644 --- a/textproc/xml4j/Makefile +++ b/textproc/xml4j/Makefile @@ -23,9 +23,11 @@ DATADIR= ${JAVASHAREDIR}/${PORTNAME} CONFLICTS= xerces-j-2.* SAMPLES= dom sax simpletype socket ui xni xs -PORTDOCS= *.html graphics images javadocs resources JARFILES= resolver.jar xercesImpl.jar xercesSamples.jar xml-apis.jar xmlParserAPIs.jar DATAFILES= personal-schema.xml personal.dtd personal.xml personal.xsd +.if !defined(NOPORTDOCS) +PORTDOCS= *.html graphics images javadocs resources +.endif PLIST_FILES= ${JARFILES:S,^,%%JAVAJARDIR%%/,} \ ${DATAFILES:S,^,%%DATADIR%%/,} |