diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-07-05 03:12:39 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-07-05 03:12:39 +0800 |
commit | 38d16ab4da18828ebf3c43cba7e77f72633db827 (patch) | |
tree | 343036afae5a6c7cee66637188b7c1a2e85b5f4a /graphics/xfig-devel | |
parent | 2cc3abf665227a9b503d0062de49bea854c188e0 (diff) | |
download | freebsd-ports-gnome-38d16ab4da18828ebf3c43cba7e77f72633db827.tar.gz freebsd-ports-gnome-38d16ab4da18828ebf3c43cba7e77f72633db827.tar.zst freebsd-ports-gnome-38d16ab4da18828ebf3c43cba7e77f72633db827.zip |
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/xfig-devel')
-rw-r--r-- | graphics/xfig-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 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 |