diff options
author | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-02-21 07:40:00 +0000 |
---|---|---|
committer | Dmitry Sivachenko <demon@FreeBSD.org> | 2003-02-21 07:40:00 +0000 |
commit | d82d074a19cffd13ec1728fd7d7fc5b2ba923508 (patch) | |
tree | b4860f3517b4f92ab63606eddda0c41603f7dd9f | |
parent | De-pkg-comment. (diff) |
Fix INDEX build (my fault).
Yelled by: kris
Notes
Notes:
svn path=/head/; revision=76016
-rw-r--r-- | graphics/gimp-manual-html/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/graphics/gimp-manual-html/Makefile b/graphics/gimp-manual-html/Makefile index 4e8ec27f92d0..d59e9c72cc89 100644 --- a/graphics/gimp-manual-html/Makefile +++ b/graphics/gimp-manual-html/Makefile @@ -17,7 +17,7 @@ MAINTAINER= brett@peloton.runet.edu .if !defined(DOCFORMAT) DOCFORMAT=HTML .else -.if ${DOCFORMAT} != "HTML" && ${DOCFORMAT} != "PDF" +.if ${DOCFORMAT} != "HTML" && ${DOCFORMAT} != "PDF" && ${DOCFORMAT} != "PS" .BEGIN: @${ECHO} "ERROR: invalid value for DOCFORMAT: \"${DOCFORMAT}\"" @${ECHO} "Possible values are: HTML, PDF." @@ -25,6 +25,10 @@ DOCFORMAT=HTML .endif .endif +.if ${DOCFORMAT} == "PS" +IGNORE= "PostScript version not yet available" +.endif + PLIST= ${PKGDIR}/pkg-plist_${DOCFORMAT} pre-fetch: |