summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authorjlam <jlam>2000-08-27 10:37:00 +0000
committerjlam <jlam>2000-08-27 10:37:00 +0000
commit4a00c430ab0149d115fa091c087cead33f0bc4c1 (patch)
tree2f68a284f4e804aa3774ec66587daa928a61d931 /databases
parent7e77f9c91be5964b7ca690ec83717ce4f1570a21 (diff)
downloadpkgsrc-4a00c430ab0149d115fa091c087cead33f0bc4c1.tar.gz
Convert packages to use PERL5_PACKLIST (part 2). These are the database and
Apache perl modules, and each compiled and installed/de-installed apparently correctly. As a side effect of the dynamic PLIST, we no longer need to to have separate -static and -shared PLISTs. It's now easier than ever to make a perl5 package for NetBSD :)
Diffstat (limited to 'databases')
-rw-r--r--databases/p5-DBD-mysql/Makefile43
-rw-r--r--databases/p5-DBD-mysql/pkg/PLIST1
-rw-r--r--databases/p5-DBD-mysql/pkg/PLIST-md.shared4
-rw-r--r--databases/p5-DBD-mysql/pkg/PLIST-md.static4
-rw-r--r--databases/p5-DBD-mysql/pkg/PLIST-mi13
-rw-r--r--databases/p5-DBD-postgresql/Makefile15
-rw-r--r--databases/p5-DBD-postgresql/pkg/PLIST1
-rw-r--r--databases/p5-DBD-postgresql/pkg/PLIST-md.shared5
-rw-r--r--databases/p5-DBD-postgresql/pkg/PLIST-md.static5
-rw-r--r--databases/p5-DBD-postgresql/pkg/PLIST-mi5
-rw-r--r--databases/p5-DBI/Makefile7
-rw-r--r--databases/p5-DBI/pkg/PLIST1
-rw-r--r--databases/p5-DBI/pkg/PLIST-md.shared4
-rw-r--r--databases/p5-DBI/pkg/PLIST-md.static4
-rw-r--r--databases/p5-DBI/pkg/PLIST-mi39
-rw-r--r--databases/p5-gdbm/Makefile9
-rw-r--r--databases/p5-gdbm/pkg/PLIST9
-rw-r--r--databases/p5-perl-ldap/Makefile7
-rw-r--r--databases/p5-perl-ldap/pkg/PLIST62
-rw-r--r--databases/p5-pgsql/Makefile8
-rw-r--r--databases/p5-pgsql/pkg/PLIST1
-rw-r--r--databases/p5-pgsql/pkg/PLIST-md.shared4
-rw-r--r--databases/p5-pgsql/pkg/PLIST-md.static4
-rw-r--r--databases/p5-pgsql/pkg/PLIST-mi6
24 files changed, 57 insertions, 204 deletions
diff --git a/databases/p5-DBD-mysql/Makefile b/databases/p5-DBD-mysql/Makefile
index 8c9ab6102c0..18c5cfc27ec 100644
--- a/databases/p5-DBD-mysql/Makefile
+++ b/databases/p5-DBD-mysql/Makefile
@@ -1,29 +1,36 @@
-# $NetBSD: Makefile,v 1.6 2000/05/25 08:08:30 rh Exp $
+# $NetBSD: Makefile,v 1.7 2000/08/27 10:37:00 jlam Exp $
#
-DISTNAME= Msql-Mysql-modules-1.2214
-PKGNAME= p5-DBD-mysql-1.2214
-CATEGORIES= databases perl5
-MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
+DISTNAME= Msql-Mysql-modules-1.2214
+PKGNAME= p5-DBD-mysql-1.2214
+CATEGORIES= databases perl5
+MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
-MAINTAINER= bad@netbsd.org
-HOMEPAGE= http://www.mysql.com.org/
+MAINTAINER= bad@netbsd.org
+HOMEPAGE= http://www.mysql.com.org/
-DEPENDS+= mysql-client-3.22.32:../../databases/mysql-client
-DEPENDS+= p5-DBI-1.13:../../databases/p5-DBI
-DEPENDS+= p5-Data-Dumper>=2.101:../../devel/p5-Data-Dumper
-DEPENDS+= p5-Data-ShowTable-3.3:../../devel/p5-Data-ShowTable
+DEPENDS+= mysql-client-3.22.32:../../databases/mysql-client
+DEPENDS+= p5-DBI-1.13:../../databases/p5-DBI
+DEPENDS+= p5-Data-Dumper>=2.101:../../devel/p5-Data-Dumper
+DEPENDS+= p5-Data-ShowTable-3.3:../../devel/p5-Data-ShowTable
-USE_PERL5= YES
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Msql-Mysql-modules/.packlist
-MYSQL_HEADERDIR= ${PREFIX}/include/mysql
-MYSQL_LIBDIR= ${PREFIX}/lib/mysql
+MYSQL_HEADERDIR= ${PREFIX}/include/mysql
+MYSQL_LIBDIR= ${PREFIX}/lib/mysql
-CONFIGURE_ENV+= MYSQL_HEADERDIR="${MYSQL_HEADERDIR}"
-CONFIGURE_ENV+= MYSQL_LIBDIR="${MYSQL_LIBDIR}"
-CONFIGURE_ENV+= IN_MYSQL_DISTRIBUTION=1
+MAKE_ENV+= MYSQL_HEADERDIR="${MYSQL_HEADERDIR}"
+MAKE_ENV+= MYSQL_LIBDIR="${MYSQL_LIBDIR}"
+MAKE_ENV+= IN_MYSQL_DISTRIBUTION=1
+
+MAKE_PARAMS+= --noprompt
+MAKE_PARAMS+= --mysql-install
+MAKE_PARAMS+= --nomsql-install --nomsql1-install
+MAKE_PARAMS+= --mysql-incdir=${MYSQL_HEADERDIR}
+MAKE_PARAMS+= --mysql-libdir=${MYSQL_LIBDIR}
do-configure:
- @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL --noprompt --mysql-install --nomsql-install --nomsql1-install --mysql-incdir=${MYSQL_HEADERDIR} --mysql-libdir=${MYSQL_LIBDIR}
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL ${MAKE_PARAMS}
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-DBD-mysql/pkg/PLIST b/databases/p5-DBD-mysql/pkg/PLIST
new file mode 100644
index 00000000000..e2220f64fd7
--- /dev/null
+++ b/databases/p5-DBD-mysql/pkg/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1 2000/08/27 10:37:00 jlam Exp $
diff --git a/databases/p5-DBD-mysql/pkg/PLIST-md.shared b/databases/p5-DBD-mysql/pkg/PLIST-md.shared
deleted file mode 100644
index 4486f8c92f7..00000000000
--- a/databases/p5-DBD-mysql/pkg/PLIST-md.shared
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.shared,v 1.1.1.1 1999/06/10 18:32:37 bad Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql/mysql.bs
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql/mysql.so
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql
diff --git a/databases/p5-DBD-mysql/pkg/PLIST-md.static b/databases/p5-DBD-mysql/pkg/PLIST-md.static
deleted file mode 100644
index fec62efc811..00000000000
--- a/databases/p5-DBD-mysql/pkg/PLIST-md.static
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.static,v 1.1.1.1 1999/06/10 18:32:36 bad Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql/mysql.a
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql/extralibs.ld
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/mysql
diff --git a/databases/p5-DBD-mysql/pkg/PLIST-mi b/databases/p5-DBD-mysql/pkg/PLIST-mi
deleted file mode 100644
index af87f7cb929..00000000000
--- a/databases/p5-DBD-mysql/pkg/PLIST-mi
+++ /dev/null
@@ -1,13 +0,0 @@
-@comment $NetBSD: PLIST-mi,v 1.2 1999/08/25 21:42:40 bad Exp $
-bin/dbimon
-man/man1/dbimon.1
-lib/perl5/man/man3/Bundle::DBD::mysql.3
-lib/perl5/man/man3/DBD::mysql.3
-lib/perl5/man/man3/Mysql.3
-lib/perl5/site_perl/Bundle/DBD/mysql.pm
-lib/perl5/site_perl/DBD/mysql.pm
-lib/perl5/site_perl/Mysql.pm
-lib/perl5/site_perl/Mysql/Statement.pm
-@dirrm lib/perl5/site_perl/Mysql
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Msql-Mysql-modules/.packlist
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Msql-Mysql-modules
diff --git a/databases/p5-DBD-postgresql/Makefile b/databases/p5-DBD-postgresql/Makefile
index 28a979c478b..4bb50aaebb5 100644
--- a/databases/p5-DBD-postgresql/Makefile
+++ b/databases/p5-DBD-postgresql/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/05/24 10:35:54 rh Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/27 10:37:00 jlam Exp $
#
DISTNAME= DBD-Pg-0.93
@@ -12,15 +12,16 @@ HOMEPAGE= http://www.postgresql.org/
DEPENDS+= postgresql>=6.5.3:../../databases/postgresql
DEPENDS+= p5-DBI>=1.08:../../databases/p5-DBI
-USE_PERL5= YES
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/DBD/Pg/.packlist
-PGUSER?= pgsql
-PGPREFIX= ${PREFIX}/${PGUSER}
+PGUSER?= pgsql
+PGPREFIX= ${PREFIX}/${PGUSER}
-CONFIGURE_ENV+= POSTGRES_INCLUDE=${PREFIX}/include/pgsql
-CONFIGURE_ENV+= POSTGRES_LIB=${PREFIX}/lib
+MAKE_ENV+= POSTGRES_INCLUDE=${PREFIX}/include/pgsql
+MAKE_ENV+= POSTGRES_LIB=${PREFIX}/lib
do-configure:
- @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${MAKE_ENV} ${LOCALBASE}/bin/perl Makefile.PL
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-DBD-postgresql/pkg/PLIST b/databases/p5-DBD-postgresql/pkg/PLIST
new file mode 100644
index 00000000000..e2220f64fd7
--- /dev/null
+++ b/databases/p5-DBD-postgresql/pkg/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1 2000/08/27 10:37:00 jlam Exp $
diff --git a/databases/p5-DBD-postgresql/pkg/PLIST-md.shared b/databases/p5-DBD-postgresql/pkg/PLIST-md.shared
deleted file mode 100644
index f66efe45448..00000000000
--- a/databases/p5-DBD-postgresql/pkg/PLIST-md.shared
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST-md.shared,v 1.2 2000/05/03 15:50:25 rh Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/Pg.bs
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/Pg.so
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/.packlist
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg
diff --git a/databases/p5-DBD-postgresql/pkg/PLIST-md.static b/databases/p5-DBD-postgresql/pkg/PLIST-md.static
deleted file mode 100644
index ce76d443985..00000000000
--- a/databases/p5-DBD-postgresql/pkg/PLIST-md.static
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST-md.static,v 1.2 2000/05/03 15:50:25 rh Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/Pg.a
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/extralibs.ld
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg/.packlist
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBD/Pg
diff --git a/databases/p5-DBD-postgresql/pkg/PLIST-mi b/databases/p5-DBD-postgresql/pkg/PLIST-mi
deleted file mode 100644
index 23fd26fc716..00000000000
--- a/databases/p5-DBD-postgresql/pkg/PLIST-mi
+++ /dev/null
@@ -1,5 +0,0 @@
-@comment $NetBSD: PLIST-mi,v 1.1.1.1 2000/02/19 23:43:24 jwise Exp $
-lib/perl5/site_perl/./DBD/Pg.pm
-lib/perl5/site_perl/./DBD/dbd-pg.pod
-lib/perl5/man/man3/./DBD::Pg.3
-lib/perl5/man/man3/./DBD::dbd-pg.3
diff --git a/databases/p5-DBI/Makefile b/databases/p5-DBI/Makefile
index 02b0d0db5f6..36c30028625 100644
--- a/databases/p5-DBI/Makefile
+++ b/databases/p5-DBI/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2000/05/11 18:37:06 christos Exp $
+# $NetBSD: Makefile,v 1.3 2000/08/27 10:37:01 jlam Exp $
#
DISTNAME= DBI-1.13
@@ -9,9 +9,10 @@ MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=DBD/}
MAINTAINER= bad@netbsd.org
HOMEPAGE= http://www.symbolstone.org/technology/perl/DBI/index.html
-USE_PERL5= YES
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/DBI/.packlist
do-configure:
- @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${LOCALBASE}/bin/perl Makefile.PL
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-DBI/pkg/PLIST b/databases/p5-DBI/pkg/PLIST
new file mode 100644
index 00000000000..13b39931dec
--- /dev/null
+++ b/databases/p5-DBI/pkg/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1 2000/08/27 10:37:01 jlam Exp $
diff --git a/databases/p5-DBI/pkg/PLIST-md.shared b/databases/p5-DBI/pkg/PLIST-md.shared
deleted file mode 100644
index bb0c2699cfb..00000000000
--- a/databases/p5-DBI/pkg/PLIST-md.shared
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.shared,v 1.2 1999/06/10 18:28:19 bad Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/DBI.bs
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/DBI.so
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI
diff --git a/databases/p5-DBI/pkg/PLIST-md.static b/databases/p5-DBI/pkg/PLIST-md.static
deleted file mode 100644
index b2a2d85f9d9..00000000000
--- a/databases/p5-DBI/pkg/PLIST-md.static
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.static,v 1.2 1999/06/10 18:28:19 bad Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/DBI.a
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/extralibs.ld
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI
diff --git a/databases/p5-DBI/pkg/PLIST-mi b/databases/p5-DBI/pkg/PLIST-mi
deleted file mode 100644
index e7c99fb238d..00000000000
--- a/databases/p5-DBI/pkg/PLIST-mi
+++ /dev/null
@@ -1,39 +0,0 @@
-@comment $NetBSD: PLIST-mi,v 1.2 1999/06/10 18:28:19 bad Exp $
-bin/dbiproxy
-bin/dbish
-man/man1/dbiproxy.1
-man/man1/dbish.1
-lib/perl5/man/man3/Bundle::DBI.3
-lib/perl5/man/man3/DBD::ADO.3
-lib/perl5/man/man3/DBD::Proxy.3
-lib/perl5/man/man3/DBI.3
-lib/perl5/man/man3/DBI::DBD.3
-lib/perl5/man/man3/DBI::FAQ.3
-lib/perl5/man/man3/DBI::Format.3
-lib/perl5/man/man3/DBI::ProxyServer.3
-lib/perl5/man/man3/DBI::Shell.3
-lib/perl5/man/man3/DBI::W32ODBC.3
-lib/perl5/man/man3/Win32::DBIODBC.3
-lib/perl5/site_perl/Bundle/DBI.pm
-@unexec rmdir %D/lib/perl5/site_perl/Bundle/DBD 2>/dev/null || true
-lib/perl5/site_perl/DBD/ADO.pm
-lib/perl5/site_perl/DBD/ExampleP.pm
-lib/perl5/site_perl/DBD/NullP.pm
-lib/perl5/site_perl/DBD/Proxy.pm
-lib/perl5/site_perl/DBD/Sponge.pm
-@dirrm lib/perl5/site_perl/DBD
-lib/perl5/site_perl/DBI.pm
-lib/perl5/site_perl/DBI/DBD.pm
-lib/perl5/site_perl/DBI/FAQ.pm
-lib/perl5/site_perl/DBI/Format.pm
-lib/perl5/site_perl/DBI/ProxyServer.pm
-lib/perl5/site_perl/DBI/Shell.pm
-lib/perl5/site_perl/DBI/W32ODBC.pm
-@dirrm lib/perl5/site_perl/DBI
-lib/perl5/site_perl/Win32/DBIODBC.pm
-@dirrm lib/perl5/site_perl/Win32
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/Driver.xst
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/dbd_xsh.h
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/dbi_sql.h
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/DBIXS.h
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/DBI/.packlist
diff --git a/databases/p5-gdbm/Makefile b/databases/p5-gdbm/Makefile
index bca2547889d..eaeef445e92 100644
--- a/databases/p5-gdbm/Makefile
+++ b/databases/p5-gdbm/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2000/06/13 10:40:24 wiz Exp $
+# $NetBSD: Makefile,v 1.6 2000/08/27 10:37:02 jlam Exp $
DISTNAME= perl5.004_04
PKGNAME= p5-gdbm-5.4.4
@@ -10,11 +10,12 @@ MAINTAINER= packages@netbsd.org
DEPENDS+= gdbm>=1.7.3:../../databases/gdbm
-USE_PERL5= YES
-EXTRACT_ELEMENTS= perl5.004_04/ext/GDBM_File
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/GDBM_File/.packlist
+EXTRACT_ELEMENTS= ${DISTNAME}/ext/GDBM_File
WRKSRC= ${WRKDIR}/${EXTRACT_ELEMENTS}
do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-gdbm/pkg/PLIST b/databases/p5-gdbm/pkg/PLIST
index f56729ed68e..6c6a2ac379e 100644
--- a/databases/p5-gdbm/pkg/PLIST
+++ b/databases/p5-gdbm/pkg/PLIST
@@ -1,8 +1 @@
-@comment $NetBSD: PLIST,v 1.2 1999/04/08 18:51:49 agc Exp $
-lib/perl5/site_perl/GDBM_File.pm
-lib/perl5/site_perl/auto/GDBM_File/autosplit.ix
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/GDBM_File/.packlist
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/GDBM_File/GDBM_File.bs
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/GDBM_File/GDBM_File.so
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/GDBM_File
-@dirrm lib/perl5/site_perl/auto/GDBM_File
+@comment $NetBSD: PLIST,v 1.3 2000/08/27 10:37:02 jlam Exp $
diff --git a/databases/p5-perl-ldap/Makefile b/databases/p5-perl-ldap/Makefile
index 951e6ae5b3b..21bc05efe52 100644
--- a/databases/p5-perl-ldap/Makefile
+++ b/databases/p5-perl-ldap/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/06/09 14:32:47 kleink Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/27 10:37:02 jlam Exp $
#
DISTNAME= perl-ldap-0.19
@@ -13,9 +13,10 @@ DEPENDS+= p5-Digest-MD5-*:../../security/p5-Digest-MD5
DEPENDS+= p5-Convert-ASN1-*:../../textproc/p5-Convert-ASN1
DEPENDS+= p5-libwww-*:../../www/p5-libwww
-USE_PERL5= YES
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/perl-ldap/.packlist
do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-perl-ldap/pkg/PLIST b/databases/p5-perl-ldap/pkg/PLIST
index a85cb654f27..6c6a2ac379e 100644
--- a/databases/p5-perl-ldap/pkg/PLIST
+++ b/databases/p5-perl-ldap/pkg/PLIST
@@ -1,61 +1 @@
-@comment $NetBSD: PLIST,v 1.2 2000/06/09 14:32:49 kleink Exp $
-lib/perl5/site_perl/Authen/SASL.pm
-lib/perl5/site_perl/Authen/SASL.pod
-lib/perl5/site_perl/Authen/SASL/CRAM_MD5.pm
-lib/perl5/site_perl/Bundle/Net/LDAP.pm
-lib/perl5/site_perl/LWP/Protocol/ldap.pm
-lib/perl5/site_perl/Net/LDAP.pm
-lib/perl5/site_perl/Net/LDAP.pod
-lib/perl5/site_perl/Net/LDAP/ASN.pm
-lib/perl5/site_perl/Net/LDAP/Bind.pm
-lib/perl5/site_perl/Net/LDAP/Constant.pm
-lib/perl5/site_perl/Net/LDAP/Constant.pod
-lib/perl5/site_perl/Net/LDAP/Control.pm
-lib/perl5/site_perl/Net/LDAP/Control/Paged.pm
-lib/perl5/site_perl/Net/LDAP/Control/Sort.pm
-lib/perl5/site_perl/Net/LDAP/Control/SortResult.pm
-lib/perl5/site_perl/Net/LDAP/Control/VLV.pm
-lib/perl5/site_perl/Net/LDAP/Control/VLVResponse.pm
-lib/perl5/site_perl/Net/LDAP/Entry.pm
-lib/perl5/site_perl/Net/LDAP/Entry.pod
-lib/perl5/site_perl/Net/LDAP/Examples.pod
-lib/perl5/site_perl/Net/LDAP/Extension.pm
-lib/perl5/site_perl/Net/LDAP/FAQ.pod
-lib/perl5/site_perl/Net/LDAP/Filter.pm
-lib/perl5/site_perl/Net/LDAP/Filter.pod
-lib/perl5/site_perl/Net/LDAP/LDIF.pm
-lib/perl5/site_perl/Net/LDAP/LDIF.pod
-lib/perl5/site_perl/Net/LDAP/Message.pm
-lib/perl5/site_perl/Net/LDAP/Message.pod
-lib/perl5/site_perl/Net/LDAP/RFC.pod
-lib/perl5/site_perl/Net/LDAP/Reference.pod
-lib/perl5/site_perl/Net/LDAP/Schema.pm
-lib/perl5/site_perl/Net/LDAP/Schema.pod
-lib/perl5/site_perl/Net/LDAP/Search.pm
-lib/perl5/site_perl/Net/LDAP/Search.pod
-lib/perl5/site_perl/Net/LDAP/Util.pm
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/perl-ldap/.packlist
-lib/perl5/man/man3/Authen::SASL.3
-lib/perl5/man/man3/Bundle::Net::LDAP.3
-lib/perl5/man/man3/Net::LDAP.3
-lib/perl5/man/man3/Net::LDAP::Constant.3
-lib/perl5/man/man3/Net::LDAP::Control.3
-lib/perl5/man/man3/Net::LDAP::Control::Sort.3
-lib/perl5/man/man3/Net::LDAP::Control::SortResult.3
-lib/perl5/man/man3/Net::LDAP::Entry.3
-lib/perl5/man/man3/Net::LDAP::Examples.3
-lib/perl5/man/man3/Net::LDAP::FAQ.3
-lib/perl5/man/man3/Net::LDAP::Filter.3
-lib/perl5/man/man3/Net::LDAP::LDIF.3
-lib/perl5/man/man3/Net::LDAP::Message.3
-lib/perl5/man/man3/Net::LDAP::RFC.3
-lib/perl5/man/man3/Net::LDAP::Reference.3
-lib/perl5/man/man3/Net::LDAP::Schema.3
-lib/perl5/man/man3/Net::LDAP::Search.3
-lib/perl5/man/man3/Net::LDAP::Util.3
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/perl-ldap
-@dirrm lib/perl5/site_perl/Authen/SASL
-@dirrm lib/perl5/site_perl/Authen
-@dirrm lib/perl5/site_perl/Bundle/Net
-@dirrm lib/perl5/site_perl/Net/LDAP/Control
-@dirrm lib/perl5/site_perl/Net/LDAP
+@comment $NetBSD: PLIST,v 1.3 2000/08/27 10:37:02 jlam Exp $
diff --git a/databases/p5-pgsql/Makefile b/databases/p5-pgsql/Makefile
index c38c731e922..581e31d3497 100644
--- a/databases/p5-pgsql/Makefile
+++ b/databases/p5-pgsql/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2000/04/21 21:12:16 jwise Exp $
+# $NetBSD: Makefile,v 1.3 2000/08/27 10:37:02 jlam Exp $
#
DISTNAME= pgsql_perl5-1.8.1
@@ -11,10 +11,12 @@ HOMEPAGE= http://www.pobox.com/~gbarr/perl-ldap/
DEPENDS+= postgresql-*:../../databases/postgresql
-USE_PERL5= YES
+USE_PERL5= # defined
+PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/Pg/.packlist
+
MAKE_ENV+= POSTGRES_HOME="${PREFIX}"
do-configure:
- @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL
+ @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
.include "../../mk/bsd.pkg.mk"
diff --git a/databases/p5-pgsql/pkg/PLIST b/databases/p5-pgsql/pkg/PLIST
new file mode 100644
index 00000000000..811f6edefc3
--- /dev/null
+++ b/databases/p5-pgsql/pkg/PLIST
@@ -0,0 +1 @@
+@comment $NetBSD: PLIST,v 1.1 2000/08/27 10:37:02 jlam Exp $
diff --git a/databases/p5-pgsql/pkg/PLIST-md.shared b/databases/p5-pgsql/pkg/PLIST-md.shared
deleted file mode 100644
index 2a52b5c1f70..00000000000
--- a/databases/p5-pgsql/pkg/PLIST-md.shared
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.shared,v 1.1.1.1 1999/12/23 13:15:12 rh Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg/Pg.so
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg/Pg.bs
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg
diff --git a/databases/p5-pgsql/pkg/PLIST-md.static b/databases/p5-pgsql/pkg/PLIST-md.static
deleted file mode 100644
index 4f0423a8669..00000000000
--- a/databases/p5-pgsql/pkg/PLIST-md.static
+++ /dev/null
@@ -1,4 +0,0 @@
-@comment $NetBSD: PLIST-md.static,v 1.1.1.1 1999/12/23 13:15:12 rh Exp $
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg/Pg.a
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg/extralibs.ld
-@dirrm lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg
diff --git a/databases/p5-pgsql/pkg/PLIST-mi b/databases/p5-pgsql/pkg/PLIST-mi
deleted file mode 100644
index 1e79a13b6e9..00000000000
--- a/databases/p5-pgsql/pkg/PLIST-mi
+++ /dev/null
@@ -1,6 +0,0 @@
-@comment $NetBSD: PLIST-mi,v 1.1.1.1 1999/12/23 13:15:12 rh Exp $
-lib/perl5/site_perl/auto/Pg/autosplit.ix
-lib/perl5/site_perl/Pg.pm
-lib/perl5/man/man3/Pg.3
-lib/perl5/site_perl/${MACHINE_ARCH}-${LOWER_OPSYS}/auto/Pg/.packlist
-@dirrm lib/perl5/site_perl/auto/Pg