diff options
author | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2003-01-28 22:03:00 +0000 |
commit | d7f69e47ce32be7271733bcdf48d28468f400ab9 (patch) | |
tree | d3bbe0e3f34c0d0b96c3bf5abf2964293c181c7b /security/pks/Makefile | |
parent | 63fd8d49cc206089921ed7d972b87faff07efbe6 (diff) | |
download | pkgsrc-d7f69e47ce32be7271733bcdf48d28468f400ab9.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 'security/pks/Makefile')
-rw-r--r-- | security/pks/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/security/pks/Makefile b/security/pks/Makefile index 51aa2afc0c1..1b74d40e53b 100644 --- a/security/pks/Makefile +++ b/security/pks/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2002/09/19 09:04:25 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2003/01/28 22:04:07 jlam Exp $ DISTNAME= pks-0.9.4 CATEGORIES= security www @@ -16,6 +16,7 @@ HOMEPAGE= http://www.mit.edu/people/marc/pks/ COMMENT= PGP Public Key Server USE_BUILDLINK2= YES +USE_PKGINSTALL= YES GNU_CONFIGURE= YES CONFIGURE_ARGS+= --datadir=${PREFIX}/share/pks CONFIGURE_ARGS+= --localstatedir=/var/pks @@ -32,6 +33,4 @@ RCD_SCRIPTS= pksd OWN_DIRS= /var/pks /var/pks/db /var/pks/incoming .include "../../databases/db/buildlink2.mk" - -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" |