diff options
author | steve <steve@FreeBSD.org> | 2000-01-30 05:47:59 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2000-01-30 05:47:59 +0800 |
commit | 10181b37306410999f6c2fab6e2b0880b72135f2 (patch) | |
tree | f2421a659cddbe730c6b49601c4eae23dba588df /graphics/xfig/Makefile | |
parent | 77955226c11aa69d5a0dfa703803b4ffa000f4c5 (diff) | |
download | freebsd-ports-gnome-10181b37306410999f6c2fab6e2b0880b72135f2.tar.gz freebsd-ports-gnome-10181b37306410999f6c2fab6e2b0880b72135f2.tar.zst freebsd-ports-gnome-10181b37306410999f6c2fab6e2b0880b72135f2.zip |
- Change default status of Ghostscript support
- Fix pkg/DESCR to apply locale naming rule of FreeBSD
- Fix pkg/PLIST
PR: 16426
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'graphics/xfig/Makefile')
-rw-r--r-- | graphics/xfig/Makefile | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/graphics/xfig/Makefile b/graphics/xfig/Makefile index 4801bce5905f..ba4a2bc21ea7 100644 --- a/graphics/xfig/Makefile +++ b/graphics/xfig/Makefile @@ -20,28 +20,18 @@ LIB_DEPENDS= Xpm.4:${PORTSDIR}/graphics/xpm \ Xaw3d.6:${PORTSDIR}/x11-toolkits/Xaw3d RUN_DEPENDS= fig2dev:${PORTSDIR}/print/transfig -.if defined(WANT_GS_SUPPORT) -RUN_DEPENDS+= gs:${PORTSDIR}/print/ghostscript5 -.endif - USE_IMAKE= yes MAN1= xfig.1 pre-fetch: -.if !defined(WANT_GS_SUPPORT) - @${ECHO_MSG} "" - @${ECHO_MSG} "If you would like build xfig with Ghostscript support" - @${ECHO_MSG} "you must set the variable WANT_GS_SUPPORT" - @${ECHO_MSG} "" -.else - @${ECHO_MSG} "" - @${ECHO_MSG} "Building xfig with Ghostscript support" - @${ECHO_MSG} "" +.if !defined(NO_GSBIT) + @${ECHO_MSG} "To build this port without Ghostscript support," + @${ECHO_MSG} "define \"NO_GSBIT\"." .endif post-patch: @${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/Imakefile -.if !defined(WANT_GS_SUPPORT) +.if defined(NO_GSBIT) @${PERL} -pi -e 's|-DGSBIT ||g' ${WRKSRC}/Imakefile .endif |