diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-07-04 19:12:39 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-07-04 19:12:39 +0000 |
commit | 2c51eea233b33b7056787a5c257ee8dfa11647ca (patch) | |
tree | 3a302ab3596f2c357375e10e45e4a9335dc52c5b /graphics | |
parent | Add older CD types, matcd, mcd, scd. (diff) |
Change NO_GSBIT to WITHOUT_GHOSTSCRIPT. This has two benefits:
1) Consistency with other support exclusion options in the ports tree.
2) Better odds that the option will be shared by other ports.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/xfig-devel/Makefile | 4 | ||||
-rw-r--r-- | graphics/xfig/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/graphics/xfig-devel/Makefile b/graphics/xfig-devel/Makefile index 06426d673902..6b06f0229ab0 100644 --- a/graphics/xfig-devel/Makefile +++ b/graphics/xfig-devel/Makefile @@ -31,13 +31,13 @@ INSTALL_TARGET= install install.all .endif pre-fetch: -.if !defined(NO_GSBIT) +.if !defined(WITHOUT_GHOSTSCRIPT) @${ECHO_MSG} "To build this port without Ghostscript support," @${ECHO_MSG} "define \"NO_GSBIT\"." .endif post-patch: -.if defined(NO_GSBIT) +.if defined(WITHOUT_GHOSTSCRIPT) @${PERL} -pi -e 's|-DGSBIT ||g' ${WRKSRC}/Imakefile .endif diff --git a/graphics/xfig/Makefile b/graphics/xfig/Makefile index 06426d673902..6b06f0229ab0 100644 --- a/graphics/xfig/Makefile +++ b/graphics/xfig/Makefile @@ -31,13 +31,13 @@ INSTALL_TARGET= install install.all .endif pre-fetch: -.if !defined(NO_GSBIT) +.if !defined(WITHOUT_GHOSTSCRIPT) @${ECHO_MSG} "To build this port without Ghostscript support," @${ECHO_MSG} "define \"NO_GSBIT\"." .endif post-patch: -.if defined(NO_GSBIT) +.if defined(WITHOUT_GHOSTSCRIPT) @${PERL} -pi -e 's|-DGSBIT ||g' ${WRKSRC}/Imakefile .endif |