From 5a870ed2bbd6a93d165bda1faadb04f028b8b9ee Mon Sep 17 00:00:00 2001 From: Erwin Lansing Date: Tue, 3 Jul 2007 21:23:15 +0000 Subject: Remove older version of DBI that was only useful to support the ancient perl on 4.x. 2007-04-22 databases/p5-DBI-137: Use databases/p5-DBI instead --- databases/p5-DBI-137/Makefile | 62 -------------------------- databases/p5-DBI-137/distinfo | 3 -- databases/p5-DBI-137/files/patch-CAN-2005-0077 | 47 ------------------- databases/p5-DBI-137/files/patch-Makefile.PL | 10 ----- databases/p5-DBI-137/pkg-descr | 13 ------ databases/p5-DBI-137/pkg-plist | 42 ----------------- 6 files changed, 177 deletions(-) delete mode 100644 databases/p5-DBI-137/Makefile delete mode 100644 databases/p5-DBI-137/distinfo delete mode 100644 databases/p5-DBI-137/files/patch-CAN-2005-0077 delete mode 100644 databases/p5-DBI-137/files/patch-Makefile.PL delete mode 100644 databases/p5-DBI-137/pkg-descr delete mode 100644 databases/p5-DBI-137/pkg-plist (limited to 'databases/p5-DBI-137') diff --git a/databases/p5-DBI-137/Makefile b/databases/p5-DBI-137/Makefile deleted file mode 100644 index 864d9f33443c..000000000000 --- a/databases/p5-DBI-137/Makefile +++ /dev/null @@ -1,62 +0,0 @@ -# New ports collection makefile for: p5-DBI -# Date created: October 17th 1996 -# Whom: James FitzGibbon -# -# $FreeBSD$ -# - -PORTNAME= DBI -PORTVERSION= 1.37 -PORTREVISION= 1 -CATEGORIES= databases perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= DBI -PKGNAMEPREFIX= p5- - -MAINTAINER= perl@FreeBSD.org -COMMENT= The perl5 Database Interface. Required for DBD::* modules - -.if defined(WITH_PROXY) -BUILD_DEPENDS= ${SITE_PERL}/RPC/PlServer.pm:${PORTSDIR}/net/p5-PlRPC -RUN_DEPENDS= ${BUILD_DEPENDS} -.endif - -DEPRECATED= Use databases/p5-DBI instead -EXPIRATION_DATE= 2007-04-22 - -CONFLICTS= p5-DBI-1.[!3]* -PERL_CONFIGURE= yes -LATEST_LINK= p5-DBI-137 - -MAN1= dbiprof.1 \ - dbiproxy.1 -MAN3= Bundle::DBI.3 \ - DBD::Proxy.3 \ - DBI.3 \ - DBI::Const::GetInfo::ANSI.3 \ - DBI::Const::GetInfo::ODBC.3 \ - DBI::Const::GetInfoReturn.3 \ - DBI::Const::GetInfoType.3 \ - DBI::DBD.3 \ - DBI::DBD::Metadata.3 \ - DBI::FAQ.3 \ - DBI::Profile.3 \ - DBI::ProfileData.3 \ - DBI::ProfileDumper.3 \ - DBI::ProfileDumper::Apache.3 \ - DBI::ProxyServer.3 \ - DBI::PurePerl.3 \ - DBI::W32ODBC.3 \ - Win32::DBIODBC.3 - -.if !defined(WITH_PROXY) -pre-everything:: - @${ECHO_CMD} "If you need DBI::Proxy, try to set WITH_PROXY." - @${ECHO_CMD} "" - @sleep 1 -.endif - -post-patch: - @${RM} -f ${WRKSRC}/lib/DBI/ProxyServer.pm.orig - -.include diff --git a/databases/p5-DBI-137/distinfo b/databases/p5-DBI-137/distinfo deleted file mode 100644 index a2ca4b759a18..000000000000 --- a/databases/p5-DBI-137/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -MD5 (DBI-1.37.tar.gz) = 0113d0f47cf13b0694e0bfb2d13a5789 -SHA256 (DBI-1.37.tar.gz) = f0885e15fa9d120b4609cb3a41f0c7035cb5df0cb4e9eb003d38f1d2b054bdd4 -SIZE (DBI-1.37.tar.gz) = 294495 diff --git a/databases/p5-DBI-137/files/patch-CAN-2005-0077 b/databases/p5-DBI-137/files/patch-CAN-2005-0077 deleted file mode 100644 index d89724b3712d..000000000000 --- a/databases/p5-DBI-137/files/patch-CAN-2005-0077 +++ /dev/null @@ -1,47 +0,0 @@ ---- lib/DBI/ProxyServer.pm.orig Wed May 10 11:41:53 2006 -+++ lib/DBI/ProxyServer.pm Wed May 10 11:48:29 2006 -@@ -33,13 +33,6 @@ require Config; - package DBI::ProxyServer; - - --my $haveFileSpec = eval { require File::Spec }; --my $tmpDir = $haveFileSpec ? File::Spec->tmpdir() : -- ($ENV{'TMP'} || $ENV{'TEMP'} || '/tmp'); --my $defaultPidFile = $haveFileSpec ? -- File::Spec->catdir($tmpDir, "dbiproxy.pid") : "/tmp/dbiproxy.pid"; -- -- - ############################################################################ - # - # Constants -@@ -109,7 +102,9 @@ my %DEFAULT_SERVER_OPTIONS; - } else { - $o->{'mode'} = 'single'; - } -- $o->{'pidfile'} = $defaultPidFile; -+ # No pidfile by default, configuration must provide one if needed -+ # (see CAN-2005-0077) -+ $o->{'pidfile'} = 'none'; - $o->{'user'} = undef; - }; - -@@ -520,7 +515,7 @@ mode with "--mode=single". - =item I (B<--pidfile=file>) - - (UNIX only) If this option is present, a PID file will be created at the --given location. -+given location. Default is do not create a pidfile. - - =item I (B<--user=uid>) - ---- dbiproxy.PL.orig Wed May 10 11:49:19 2006 -+++ dbiproxy.PL Wed May 10 11:49:44 2006 -@@ -146,7 +146,7 @@ mode with "--mode=single". - =item B<--pidfile=file> - - (UNIX only) If this option is present, a PID file will be created at the --given location. -+given location. Default is do not create a pidfile. - - =item B<--user=uid> - diff --git a/databases/p5-DBI-137/files/patch-Makefile.PL b/databases/p5-DBI-137/files/patch-Makefile.PL deleted file mode 100644 index 545383eb83aa..000000000000 --- a/databases/p5-DBI-137/files/patch-Makefile.PL +++ /dev/null @@ -1,10 +0,0 @@ ---- Makefile.PL.orig Sat Mar 1 02:50:24 2003 -+++ Makefile.PL Sun Mar 9 13:02:08 2003 -@@ -23,7 +23,6 @@ - ************************************************************************** - }; - sleep 3; -- my $pause = <>; - } - - use ExtUtils::MakeMaker 5.16, qw(WriteMakefile $Verbose); diff --git a/databases/p5-DBI-137/pkg-descr b/databases/p5-DBI-137/pkg-descr deleted file mode 100644 index 92d5083d58d4..000000000000 --- a/databases/p5-DBI-137/pkg-descr +++ /dev/null @@ -1,13 +0,0 @@ -The DBI interface allows perl programs to use DBD (Database Definition) -drivers with a common set of routines. A program can then (theoretically) -change from using mSQL to Oracle (for example) without changing the entire -program around. - -This DBI interface is not yet fully specified. The current development -work is focused on writing drivers, such as DBD::Oracle, which also -implement emulations of old perl4 database interfaces, e.g., oraperl. -This strategy enables the DBI and drivers to serve a useful purpose -whilst allowing the real interface to evolve with experience behind the -emulation interface. - -WWW: http://dbi.perl.org diff --git a/databases/p5-DBI-137/pkg-plist b/databases/p5-DBI-137/pkg-plist deleted file mode 100644 index f362576f7da5..000000000000 --- a/databases/p5-DBI-137/pkg-plist +++ /dev/null @@ -1,42 +0,0 @@ -bin/dbiprof -bin/dbiproxy -%%SITE_PERL%%/%%PERL_ARCH%%/Bundle/DBI.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/ExampleP.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/NullP.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/Proxy.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/Sponge.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Changes.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const/GetInfo/ANSI.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const/GetInfo/ODBC.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const/GetInfoReturn.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const/GetInfoType.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/DBD.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/DBD/Metadata.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/FAQ.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/Profile.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/ProfileData.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/ProfileDumper.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/ProfileDumper/Apache.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/ProxyServer.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/PurePerl.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBI/W32ODBC.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Win32/DBIODBC.pm -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/.packlist -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/DBI.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/DBI.so -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/DBIXS.h -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/Driver.xst -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/Driver_xst.h -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/dbd_xsh.h -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/dbi_sql.h -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI/dbipport.h -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBI -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/DBI/ProfileDumper -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/DBI/DBD -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const/GetInfo -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/DBI/Const -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/DBI -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Win32 -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/DBD -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Bundle -- cgit v1.2.3