diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2012-03-08 05:02:17 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2012-03-08 05:02:17 +0800 |
commit | 70b8e9c3148f86455da4ca2fba51cdb8dad0ec18 (patch) | |
tree | d958630563555d35920ead342f12ac0fb71fb4c1 /databases | |
parent | 442cf54cd49f2a02b2b5da472e3cc8305d46d8d6 (diff) | |
download | freebsd-ports-graphics-70b8e9c3148f86455da4ca2fba51cdb8dad0ec18.tar.gz freebsd-ports-graphics-70b8e9c3148f86455da4ca2fba51cdb8dad0ec18.tar.zst freebsd-ports-graphics-70b8e9c3148f86455da4ca2fba51cdb8dad0ec18.zip |
databases/p5-Mysql||2012-03-07|no release in 11 years, doesn't work with mysql 4.0+, unmaintained
Also BROKEN with lang/perl5.14
PR: ports/165457
With Hat: perl@
Diffstat (limited to 'databases')
-rw-r--r-- | databases/Makefile | 1 | ||||
-rw-r--r-- | databases/p5-Mysql/Makefile | 39 | ||||
-rw-r--r-- | databases/p5-Mysql/distinfo | 2 | ||||
-rw-r--r-- | databases/p5-Mysql/files/patch-dbd-myMsql.h | 14 | ||||
-rw-r--r-- | databases/p5-Mysql/pkg-descr | 15 | ||||
-rw-r--r-- | databases/p5-Mysql/pkg-plist | 14 |
6 files changed, 0 insertions, 85 deletions
diff --git a/databases/Makefile b/databases/Makefile index c5f3dde769a..8d3a44f8b74 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -424,7 +424,6 @@ SUBDIR += p5-Metadata SUBDIR += p5-MongoDB SUBDIR += p5-MySQL-Diff - SUBDIR += p5-Mysql SUBDIR += p5-ORLite SUBDIR += p5-ORLite-Migrate SUBDIR += p5-Oryx diff --git a/databases/p5-Mysql/Makefile b/databases/p5-Mysql/Makefile deleted file mode 100644 index d5ebe306542..00000000000 --- a/databases/p5-Mysql/Makefile +++ /dev/null @@ -1,39 +0,0 @@ -# New ports collection makefile for: p5-Mysql-modules -# Date created: September 29th 1996 -# Whom: James FitzGibbon <jfitz@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= Mysql-modules -PORTVERSION= 1.2219 -CATEGORIES= databases perl5 -MASTER_SITES= CPAN -PKGNAMEPREFIX= p5- -DISTNAME= Msql-Mysql-modules-${PORTVERSION} - -MAINTAINER= ports@FreeBSD.org -COMMENT= Perl5 modules for accessing MySQL databases - -BUILD_DEPENDS= ${SITE_PERL}/Data/ShowTable.pm:${PORTSDIR}/devel/p5-Data-ShowTable \ - ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI -RUN_DEPENDS:= ${BUILD_DEPENDS} - -CONFLICTS= p5-DBD-mysql-* p5-DBD-mysql4[0-9]-* p5-DBD-mysql5[0-9]-* - -USE_MYSQL= yes - -PERL_CONFIGURE= yes -CONFIGURE_ARGS= PREFIX=${PREFIX} CC="${CC}" CCFLAGS="${CFLAGS}" \ - --noprompt --mysql-install --nomsql-install -CONFIGURE_ENV= MYSQL_HOME=${PREFIX} IN_MYSQL_DISTRIBUTION=1 - -MAN1= dbimon.1 -MAN3= Bundle::DBD::mysql.3 \ - DBD::mysql.3 \ - Mysql.3 - -pre-configure: - @${PERL} -p -i -e 's| -lgz||' ${WRKSRC}/lib/DBD/mysql/Install.pm - -.include <bsd.port.mk> diff --git a/databases/p5-Mysql/distinfo b/databases/p5-Mysql/distinfo deleted file mode 100644 index 9cab66bd2b3..00000000000 --- a/databases/p5-Mysql/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (Msql-Mysql-modules-1.2219.tar.gz) = 37e8ff737650833992a8a93e9b2e2b288a1991b71a907952dad4d8136cf91388 -SIZE (Msql-Mysql-modules-1.2219.tar.gz) = 195634 diff --git a/databases/p5-Mysql/files/patch-dbd-myMsql.h b/databases/p5-Mysql/files/patch-dbd-myMsql.h deleted file mode 100644 index b2cd424bc6d..00000000000 --- a/databases/p5-Mysql/files/patch-dbd-myMsql.h +++ /dev/null @@ -1,14 +0,0 @@ ---- dbd/myMsql.h.orig Wed Nov 30 09:28:39 2005 -+++ dbd/myMsql.h Wed Nov 30 09:29:09 2005 -@@ -117,7 +117,11 @@ - #define MyGetHostInfo(s) mysql_get_host_info(s) - #define MyGetServerInfo(s) mysql_get_server_info(s) - #define MyGetProtoInfo(s) mysql_get_proto_info(s) -+#if MYSQL_VERSION_ID < 40000 - #define MyShutdown(s) mysql_shutdown(s) -+#else -+#define MyShutdown(s) mysql_shutdown(s, SHUTDOWN_DEFAULT) -+#endif - #ifdef REFRESH_GRANT - #define MyReload(s) mysql_refresh(s, \ - REFRESH_GRANT|REFRESH_LOG|REFRESH_TABLES) diff --git a/databases/p5-Mysql/pkg-descr b/databases/p5-Mysql/pkg-descr deleted file mode 100644 index 5387b091d04..00000000000 --- a/databases/p5-Mysql/pkg-descr +++ /dev/null @@ -1,15 +0,0 @@ -Mysql.pm and DBD::mysql implement two different approaches to -communicate with an MySQL server. DBD::mysql is built upon the DBI, the -generic Perl Database Interface. It brings you an identical interface -to a broad variety of databases and is in this regard comparable to -ODBC. The advantage of the DBI approach is portability and -interoperability. Msql.pm is the elder species. It was written before -DBI was available but it was inspired by an early draft of the DBI -specification. As it has been circulating longer it is more mature and -pretty stable. It's also more complete than DBD::mysql. - -Some day in the future DBD::mysql will probably be the clearly superior -competitor in this package. Today you have to decide on your own about -the trade-offs. - -WWW: http://www.symbolstone.org/technology/perl/DBI/ diff --git a/databases/p5-Mysql/pkg-plist b/databases/p5-Mysql/pkg-plist deleted file mode 100644 index e9ee49efec0..00000000000 --- a/databases/p5-Mysql/pkg-plist +++ /dev/null @@ -1,14 +0,0 @@ -bin/dbimon -%%SITE_PERL%%/%%PERL_ARCH%%/Mysql.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Bundle/DBD/mysql.pm -%%SITE_PERL%%/%%PERL_ARCH%%/DBD/mysql.pm -%%SITE_PERL%%/%%PERL_ARCH%%/Mysql/Statement.pm -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/mysql/mysql.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/mysql/mysql.so -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Msql-Mysql-modules/.packlist -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/mysql -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Msql-Mysql-modules -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Mysql -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/Bundle/DBD -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Bundle -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD |