aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2011-01-01 01:35:17 +0800
committerrene <rene@FreeBSD.org>2011-01-01 01:35:17 +0800
commitff32110ad1ae4249cafc08e82470e39fcfcfee1d (patch)
tree1d6e356e768d2e1ed9d7fa0e6003c793e3907e88 /databases
parent2dbccfb962f342f7ff3a8e950fa41b91b6a7cee1 (diff)
downloadfreebsd-ports-gnome-ff32110ad1ae4249cafc08e82470e39fcfcfee1d.tar.gz
freebsd-ports-gnome-ff32110ad1ae4249cafc08e82470e39fcfcfee1d.tar.zst
freebsd-ports-gnome-ff32110ad1ae4249cafc08e82470e39fcfcfee1d.zip
Garbage-collect expired ports:
2010-12-30 databases/p5-sqlrelay: broken and upstream disapeared 2010-12-30 devel/php-dbg2: No upstream support 2010-12-30 dns/fourcdns: upstream has disapeared 2010-12-31 emulators/win4bsd: Development has ceased and distfile is no longer available 2010-12-31 french/mozilla-flp: www/seamonkey port is deprecated. Consider using the www/firefox-i18n. 2010-12-31 french/xtel: Minitel services will be discontinued at the end of 2010. 2010-12-30 ftp/ftpq: upstream has disapeared 2010-12-30 graphics/paintlib: does not compile with new tiff and no more maintained upstream 2010-12-30 graphics/g3dviewer: does not build with gcc 4.2, upstream disapeared 2010-12-30 lang/scriba: Does not compile with gcc 4.2+, looks like abandonware 2010-12-30 math/rascal: Broken on every arch since 2008, looks like an abandonware 2010-12-31 net-mgmt/nrg: Project has vanished. Use cacti instead. 2010-12-31 security/hostsentry: Project is dead. 2010-12-31 sysutils/kcube: Project has vanished 2010-12-31 www/cybercalendar: has been unmaintained since 2001 and is unusable with dates after 2010 (see ports/150974) 2010-12-31 www/flock: Flock 3 moves from Firefox to Chromium 2010-12-31 www/linux-flock: Flock 3 moves from Firefox to Chromium 2010-12-30 x11-clocks/xtu: Looks like abandonware Leave java/tya in for now, as it has outstanding PRs.
Diffstat (limited to 'databases')
-rw-r--r--databases/Makefile1
-rw-r--r--databases/p5-sqlrelay/Makefile68
-rw-r--r--databases/p5-sqlrelay/pkg-descr4
-rw-r--r--databases/p5-sqlrelay/pkg-plist17
4 files changed, 0 insertions, 90 deletions
diff --git a/databases/Makefile b/databases/Makefile
index 66c6d1a48047..dd43a4f42d16 100644
--- a/databases/Makefile
+++ b/databases/Makefile
@@ -461,7 +461,6 @@
SUBDIR += p5-mysql-genocide
SUBDIR += p5-postgresql-plperl
SUBDIR += p5-qdbm
- SUBDIR += p5-sqlrelay
SUBDIR += p5-tokyotyrant
SUBDIR += pear-DB
SUBDIR += pear-DBA
diff --git a/databases/p5-sqlrelay/Makefile b/databases/p5-sqlrelay/Makefile
deleted file mode 100644
index 7b3d30057e43..000000000000
--- a/databases/p5-sqlrelay/Makefile
+++ /dev/null
@@ -1,68 +0,0 @@
-# New ports collection makefile for: Perl5 modules for SQL Relay
-# Date created: 2 July 2001
-# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= ${SQLRELAY_PORTNAME}
-PORTVERSION= ${SQLRELAY_PORTVERSION}
-PORTREVISION= 2
-CATEGORIES= databases perl5
-MASTER_SITES= # none
-PKGNAMEPREFIX= p5-
-DISTFILES= # none
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Perl5 modules to access to SQL Relay, including a DBD interface
-
-BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
-RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/DBI.pm:${PORTSDIR}/databases/p5-DBI
-EXTRACT_DEPENDS= ${NONEXISTENT}:${SQLRELAY_PORTDIR}:patch
-LIB_DEPENDS= sqlrclient.0:${SQLRELAY_PORTDIR}
-
-DEPRECATED= broken and upstream disapeared
-EXPIRATION_DATE= 2010-12-30
-BROKEN= does not build
-
-USE_PERL5= yes
-
-WRKSRC= ${WRKDIR}/${PORTNAME}
-USE_GMAKE= yes
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= ${SQLRELAY_CONFIGURE_ARGS} \
- --with-pod2man=`which pod2man` \
- --with-perl-prefix="/usr"
-CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
- ${SQLRELAY_CONFIGURE_ENV}
-
-MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}
-MAN3= DBD::SQLRelay.3 SQLRelay::Connection.3 SQLRelay::Cursor.3
-
-.include "${.CURDIR}/../sqlrelay/Makefile.common"
-.include <bsd.port.pre.mk>
-
-do-extract:
- ${MKDIR} ${WRKDIR}
- ${LN} -fs `${SQLRELAY_WRKSRC_CMD}` ${WRKSRC}
- ${RM} -rf ${WRKSRC}/src/api/perl/CVS
-
-post-patch:
- ${REINPLACE_CMD} -e 's/installman3dir/siteman3dir/g' \
- ${WRKSRC}/src/api/perl/*/Makefile
-
-do-build:
- for dir in ${WRKSRC}/src/api/perl/*; do \
- cd $$dir && \
- ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} \
- ${MAKE_ARGS} ${ALL_TARGET}; \
- done
-
-do-install:
- for dir in ${WRKSRC}/src/api/perl/*; do \
- cd $$dir && \
- ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} \
- ${MAKE_ARGS} ${INSTALL_TARGET}; \
- done
-
-.include <bsd.port.post.mk>
diff --git a/databases/p5-sqlrelay/pkg-descr b/databases/p5-sqlrelay/pkg-descr
deleted file mode 100644
index ba41f340095d..000000000000
--- a/databases/p5-sqlrelay/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-This package provides Perl5 modules to access to SQL Relay, including
-a DBD interface.
-
-WWW: http://www.firstworks.com/sqlrelay.html
diff --git a/databases/p5-sqlrelay/pkg-plist b/databases/p5-sqlrelay/pkg-plist
deleted file mode 100644
index 031fe7fc7819..000000000000
--- a/databases/p5-sqlrelay/pkg-plist
+++ /dev/null
@@ -1,17 +0,0 @@
-%%SITE_PERL%%/DBD/SQLRelay.pm
-@dirrmtry %%SITE_PERL%%/DBD
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLRelay/.packlist
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD/SQLRelay
-@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/DBD
-%%SITE_PERL%%/%%PERL_ARCH%%/SQLRelay/Connection.pm
-%%SITE_PERL%%/%%PERL_ARCH%%/SQLRelay/Cursor.pm
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Connection/.packlist
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Connection/Connection.bs
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Connection/Connection.so
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Connection
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Cursor/.packlist
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Cursor/Cursor.bs
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Cursor/Cursor.so
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay/Cursor
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/SQLRelay
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/SQLRelay