diff options
author | jlam <jlam> | 2003-01-28 22:03:00 +0000 |
---|---|---|
committer | jlam <jlam> | 2003-01-28 22:03:00 +0000 |
commit | d9bf9ebd1c4d0cf9334ca40c2f585d4d17f70bdf (patch) | |
tree | d3bbe0e3f34c0d0b96c3bf5abf2964293c181c7b /print/ghostscript-esp | |
parent | ebed1329682fd1c81284e9ee1632af9b987050f0 (diff) | |
download | pkgsrc-d9bf9ebd1c4d0cf9334ca40c2f585d4d17f70bdf.tar.gz |
Instead of including bsd.pkg.install.mk directly in a package Makefile,
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set
to "YES". This enforces the requirement that bsd.pkg.install.mk be
included at the end of a package Makefile. Idea suggested by Julio M.
Merino Vidal <jmmv at menta.net>.
Diffstat (limited to 'print/ghostscript-esp')
-rw-r--r-- | print/ghostscript-esp/Makefile.common | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/print/ghostscript-esp/Makefile.common b/print/ghostscript-esp/Makefile.common index a33853ab8fd..4042e7477f5 100644 --- a/print/ghostscript-esp/Makefile.common +++ b/print/ghostscript-esp/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.3 2002/10/24 20:08:22 bouyer Exp $ +# $NetBSD: Makefile.common,v 1.4 2003/01/28 22:04:01 jlam Exp $ DISTNAME= espgs-${GS_VERS}-source BASEGS_VERS= 7.05 @@ -22,9 +22,10 @@ CONFLICTS+= ghostscript-gnu{,-nox11,-x11}-[0-9]* DEPENDS+= ghostscript-fonts-6.0:../../fonts/ghostscript-fonts -USE_BUILDLINK2= # defined -USE_GMAKE= # defined -GNU_CONFIGURE= # defined +USE_BUILDLINK2= yes +USE_PKGINSTALL= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-ijs CONFIGURE_ARGS+= --with-gimp-print CONFIGURE_ARGS+= --without-omni @@ -93,7 +94,6 @@ post-install: .include "../../print/cups/buildlink2.mk" .include "../../print/gimp-print-lib/buildlink2.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" .if ${OPSYS} == "NetBSD" && ${MACHINE_ARCH} == "arm32" |