aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MOVED1
-rw-r--r--databases/Makefile1
-rw-r--r--databases/p5-DBI-137/Makefile62
-rw-r--r--databases/p5-DBI-137/distinfo3
-rw-r--r--databases/p5-DBI-137/files/patch-CAN-2005-007747
-rw-r--r--databases/p5-DBI-137/files/patch-Makefile.PL10
-rw-r--r--databases/p5-DBI-137/pkg-descr13
-rw-r--r--databases/p5-DBI-137/pkg-plist42
8 files changed, 1 insertions, 178 deletions
diff --git a/MOVED b/MOVED
index 76ef51515115..268f60965699 100644
--- a/MOVED
+++ b/MOVED
@@ -3086,3 +3086,4 @@ ftp/lukemftp|ftp/tnftp|2007-07-02|Vendor name change
net/obnc||2007-07-03|Removed: A new version of this port is available from base system.
databases/p5-DBD-RAM||2007-07-03|Has expired: Only works on 4.x
databases/p5-DBD-File||2007-07-03|Has expired: Only usable on 4.x
+databases/p5-DBI-137|databases/p5-DBI|2007-07-03|Only useful for 4.x
diff --git a/databases/Makefile b/databases/Makefile
index cac60c9bad7b..9dab4a2d9310 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -230,7 +230,6 @@
SUBDIR += p5-DBD-mysql50
SUBDIR += p5-DBD-mysql51
SUBDIR += p5-DBI
- SUBDIR += p5-DBI-137
SUBDIR += p5-DBI-Shell
SUBDIR += p5-DBIWrapper
SUBDIR += p5-DBIx-Abstract
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 <jfitz@FreeBSD.org>
-#
-# $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 <bsd.port.mk>
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<pidfile> (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<user> (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