diff options
author | jlam <jlam> | 2000-08-27 07:10:59 +0000 |
---|---|---|
committer | jlam <jlam> | 2000-08-27 07:10:59 +0000 |
commit | 6b651933b95c6a21e0e7629f5183e1492bb71903 (patch) | |
tree | fd4f0178e134e50e9dc8acc6e016d62c645457cf /devel/p5-LDAP/Makefile | |
parent | c861cb3db8ffcd7b9fa94be5348a80b681bcff64 (diff) | |
download | pkgsrc-6b651933b95c6a21e0e7629f5183e1492bb71903.tar.gz |
Convert packages to use PERL5_PACKLIST (part 1). These were the easy
ones to do, and each compiled and installed/de-installed apparently
correctly.
As a side effect of the dynamic PLIST, we no longer need to have separate
-static and -shared PLISTs. It's now easier than ever to make a perl5
package for NetBSD :)
Diffstat (limited to 'devel/p5-LDAP/Makefile')
-rw-r--r-- | devel/p5-LDAP/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/devel/p5-LDAP/Makefile b/devel/p5-LDAP/Makefile index b91a0dd4b70..8971302a019 100644 --- a/devel/p5-LDAP/Makefile +++ b/devel/p5-LDAP/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/05/24 08:32:35 hwr Exp $ +# $NetBSD: Makefile,v 1.2 2000/08/27 07:11:07 jlam Exp $ # DISTNAME= perldap-1.2.2 @@ -12,11 +12,16 @@ HOMEPAGE= http://www.mozilla.org/directory/perldap.html DEPENDS+= ldapsdk-12311998:../../devel/ldapsdk -USE_PERL5= YES +USE_PERL5= # defined +PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Mozilla/LDAP/API/.packlist WRKSRC= ${WRKDIR}/perldap +MAKE_ENV+= LDAPSDKDIR=${LOCALBASE} +MAKE_ENV+= LDAPSDKSSL="no" +MAKE_ENV+= LDAPV3ON="yes" + do-configure: - @cd ${WRKSRC}; ${SETENV} LDAPSDKDIR=${LOCALBASE} LDAPSDKSSL="no" LDAPV3ON=yes ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL + @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL .include "../../mk/bsd.pkg.mk" |