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 /mail/sympa | |
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 'mail/sympa')
-rw-r--r-- | mail/sympa/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/sympa/Makefile b/mail/sympa/Makefile index 8043ad39cd8..9827dbe327e 100644 --- a/mail/sympa/Makefile +++ b/mail/sympa/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2003/01/28 09:40:15 uebayasi Exp $ +# $NetBSD: Makefile,v 1.3 2003/01/28 22:03:42 jlam Exp $ # DISTNAME= sympa-3.4.2 @@ -23,8 +23,9 @@ DEPENDS+= p5-DBD-mysql>=2.0407:../../databases/p5-DBD-mysql DEPENDS+= p5-DBD-postgresql>=0.90:../../databases/p5-DBD-postgresql DEPENDS+= p5-perl-ldap>=0.10:../../databases/p5-perl-ldap -USE_BUILDLINK2= YES -GNU_CONFIGURE= YES +USE_BUILDLINK2= YES +USE_PKGINSTALL= YES +GNU_CONFIGURE= YES CONFIGURE_ARGS+= --with-piddir=/var/run PERL5_REQD= 5.005 @@ -37,7 +38,6 @@ post-install: ${CHMOD} ug-s ${PREFIX}/bin/wwsympa.fcgi .include "../../lang/perl5/buildlink2.mk" -.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" PREFIX= ${LOCALBASE}/sympa |