diff options
Diffstat (limited to 'databases')
| -rw-r--r-- | databases/Makefile | 6 | ||||
| -rw-r--r-- | databases/postgresql84-client/Makefile | 19 | ||||
| -rw-r--r-- | databases/postgresql84-contrib/Makefile | 30 | ||||
| -rw-r--r-- | databases/postgresql84-contrib/pkg-descr | 23 | ||||
| -rw-r--r-- | databases/postgresql84-docs/Makefile | 36 | ||||
| -rw-r--r-- | databases/postgresql84-plperl/Makefile | 6 | ||||
| -rw-r--r-- | databases/postgresql84-plpython/Makefile | 6 | ||||
| -rw-r--r-- | databases/postgresql84-pltcl/Makefile | 6 |
8 files changed, 0 insertions, 132 deletions
diff --git a/databases/Makefile b/databases/Makefile index 0ef4f887ac09..5a3020fee497 100644 --- a/databases/Makefile +++ b/databases/Makefile @@ -639,12 +639,6 @@ SUBDIR += postgresql-plv8js SUBDIR += postgresql-relay SUBDIR += postgresql-repmgr - SUBDIR += postgresql84-client - SUBDIR += postgresql84-contrib - SUBDIR += postgresql84-docs - SUBDIR += postgresql84-plperl - SUBDIR += postgresql84-plpython - SUBDIR += postgresql84-pltcl SUBDIR += postgresql84-server SUBDIR += postgresql90-client SUBDIR += postgresql90-contrib diff --git a/databases/postgresql84-client/Makefile b/databases/postgresql84-client/Makefile deleted file mode 100644 index fe9bf9f29a63..000000000000 --- a/databases/postgresql84-client/Makefile +++ /dev/null @@ -1,19 +0,0 @@ -# Created by: Palle Girgensohn <girgen@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= postgresql -PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} - -COMMENT= PostgreSQL database (client) - -MASTERDIR= ${.CURDIR}/../postgresql84-server - -BUILD_DIRS= config src/include src/interfaces src/port \ - src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \ - doc src/makefiles -CLIENT_ONLY= yes -COMPONENT= -client -USE_LDCONFIG= yes -USES+= readline - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql84-contrib/Makefile b/databases/postgresql84-contrib/Makefile deleted file mode 100644 index feff083af4c9..000000000000 --- a/databases/postgresql84-contrib/Makefile +++ /dev/null @@ -1,30 +0,0 @@ -# Created by: Palle Girgensohn <girgen@pingpong.net> -# $FreeBSD$ - -PORTNAME= postgresql -PORTREVISION= 1 -CATEGORIES= databases -PKGNAMESUFFIX?= ${DISTVERSION:R:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= The contrib utilities from the PostgreSQL distribution - -LIB_DEPENDS= libxslt.so:${PORTSDIR}/textproc/libxslt \ - libxml2.so:${PORTSDIR}/textproc/libxml2 - -USES+= pgsql:8.4 -MASTERDIR= ${.CURDIR}/../postgresql84-server - -USES+= bison - -BUILD_DIRS= src/port contrib -INSTALL_DIRS= contrib - -SLAVE_ONLY= yes -COMPONENT= -contrib -CONFIGURE_ARGS+=--with-libxslt --with-libxml --with-openssl - -post-install: - @- ${INSTALL_DATA} ${WRKSRC}/contrib/README ${STAGEDIR}${DOCSDIR}/contrib/README - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql84-contrib/pkg-descr b/databases/postgresql84-contrib/pkg-descr deleted file mode 100644 index f7a01fd35e15..000000000000 --- a/databases/postgresql84-contrib/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -This is the port for all stuff that comes in the contrib subtree of -the postgresql distribution. This subtree contains porting tools, -analysis utilities, and plug-in features that are not part of the core -PostgreSQL system, mainly because they address a limited audience or -are too experimental to be part of the main source tree. This does -not preclude their usefulness. - -Each subdirectory contains a README file with information about the -module. Some directories supply new user-defined functions, operators, -or types. After you have installed the files you need to register the -new entities in the database system by running the commands in the -supplied .sql file. For example, - - $ psql -d dbname -f module.sql - -The .sql files are installed into /usr/local/share/postgresql/contrib - -For more information, please see -/usr/local/share/doc/postgresql/contrib/README* - -This software is part of the standard PostgreSQL distribution. - -WWW: http://www.postgresql.org/ diff --git a/databases/postgresql84-docs/Makefile b/databases/postgresql84-docs/Makefile deleted file mode 100644 index e4958428400c..000000000000 --- a/databases/postgresql84-docs/Makefile +++ /dev/null @@ -1,36 +0,0 @@ -# Created by: Palle Girgensohn <girgen@pingpong.net> -# $FreeBSD$ - -PORTNAME= postgresql -PORTREVISION= 0 -PKGNAMESUFFIX?= ${DISTV:S/.//}-docs -DISTV= ${DISTVERSION:R} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= The PostgreSQL documentation set - -MASTERDIR= ${.CURDIR}/../../databases/postgresql84-server - -USES+= pgsql:8.4 - -NO_BUILD= YES -SLAVE_ONLY= YES -COMPONENT= -docs -PATCHDIR= mustnotexist - -PGDOCSDIR?= ${DOCSDIR}/release-${PGSQL_VER} - -do-install: - @ $(MKDIR) ${STAGEDIR}${PGDOCSDIR}; \ - ${GZIP_CMD} -dc ${WRKSRC}/doc/postgres.tar.gz | \ - ( cd ${STAGEDIR}${PGDOCSDIR} && $(TAR) xf - ) - -post-install: - @ ${TAR} ztf ${WRKSRC}/doc/postgres.tar.gz | ${GREP} -v /$$ | \ - ${SED} "s,^,${PGDOCSDIR:S,^${PREFIX}/,,}/," >> ${TMPPLIST} ;\ - ${TAR} ztf ${WRKSRC}/doc/postgres.tar.gz | ${GREP} /$$ | \ - ${SED} "s,^,@dirrm\ ," >> ${TMPPLIST} ;\ - ${ECHO} @dirrm ${PGDOCSDIR:S,^${PREFIX}/,,} >> ${TMPPLIST} ;\ - ${ECHO} "@unexec rmdir %D/${DOCSDIR:S,^${PREFIX}/,,} 2> /dev/null || true" >> ${TMPPLIST} - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql84-plperl/Makefile b/databases/postgresql84-plperl/Makefile deleted file mode 100644 index 3b8f49575338..000000000000 --- a/databases/postgresql84-plperl/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -# Created by: Palle Girgensohn <girgen@partitur.se> -# $FreeBSD$ - -WANT_PGSQL_VER= 8.4 - -.include "${.CURDIR}/../postgresql90-plperl/Makefile" diff --git a/databases/postgresql84-plpython/Makefile b/databases/postgresql84-plpython/Makefile deleted file mode 100644 index fbcbb1bfa3eb..000000000000 --- a/databases/postgresql84-plpython/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -# $FreeBSD$ - -WANT_PYTHON_USE= python:2 -WANT_PGSQL_VER= 8.4 - -.include "${.CURDIR}/../postgresql90-plpython/Makefile" diff --git a/databases/postgresql84-pltcl/Makefile b/databases/postgresql84-pltcl/Makefile deleted file mode 100644 index e030e650238e..000000000000 --- a/databases/postgresql84-pltcl/Makefile +++ /dev/null @@ -1,6 +0,0 @@ -# Created by: Palle Girgensohn <girgen@partitur.se> -# $FreeBSD$ - -WANT_PGSQL_VER?= 8.4 - -.include "${.CURDIR}/../postgresql91-pltcl/Makefile" |
