diff options
Diffstat (limited to 'databases/postgresql73-server')
31 files changed, 0 insertions, 1482 deletions
diff --git a/databases/postgresql73-server/Makefile b/databases/postgresql73-server/Makefile deleted file mode 100644 index 65081d0612f2..000000000000 --- a/databases/postgresql73-server/Makefile +++ /dev/null @@ -1,256 +0,0 @@ -# New ports collection makefile for: PostgreSQL -# Date created: November 13, 1998 -# Whom: Marc G. Fournier <scrappy@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME?= postgresql -PORTVERSION?= 7.3.21 -PORTREVISION?= 2 -CATEGORIES?= databases -MASTER_SITES= ${MASTER_SITE_PGSQL} -MASTER_SITE_SUBDIR= source/v${PORTVERSION} -PKGNAMESUFFIX?= -server -DISTFILES?= postgresql-${PORTVERSION}${EXTRACT_SUFX} - -MAINTAINER?= girgen@FreeBSD.org -COMMENT?= The most advanced open-source database available anywhere -DEPRECATED= EOL see http://wiki.postgresql.org/wiki/PostgreSQL_Release_Support_Policy -EXPIRATION_DATE=2011-04-02 - -CONFLICTS?= ${PORTNAME}${PKGNAMESUFFIX}-7.[0-24-9]* \ - ${PORTNAME}${PKGNAMESUFFIX}-8.* \ - ${PORTNAME}-client-7.[0-24-9]* \ - ${PORTNAME}-client-8.* - -WRKSRC= ${WRKDIR}/postgresql-${PORTVERSION} -DIST_SUBDIR= postgresql - -UNIQUENAME?= ${PORTNAME}73 -LATEST_LINK?= ${PKGNAMEPREFIX}${UNIQUENAME}${PKGNAMESUFFIX} - -PKGINSTALL?= ${PKGDIR}/pkg-install${PKGNAMESUFFIX} -USE_BZIP2= YES -USE_GMAKE= YES -GNU_CONFIGURE= YES -.if defined(NO_BUILD) -.undef USE_GMAKE -.undef GNU_CONFIGURE -.endif - -CONFIGURE_ARGS+=--with-libraries=${LOCALBASE}/lib \ - --docdir=${DOCSDIR} -CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}" - -PLIST= ${PKGDIR}/pkg-plist${PKGNAMESUFFIX} - -BUILD_DIRS?= src/backend src/backend/utils/mb/conversion_procs \ - src/bin/initdb src/bin/initlocation src/bin/ipcclean \ - src/bin/pg_controldata src/bin/pg_ctl src/bin/pg_id \ - src/bin/pg_resetxlog src/bin/postgres src/bin/postmaster \ - src/pl - -INSTALL_DIRS?= ${BUILD_DIRS} - -.if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY) -SERVER_ONLY= yes -USE_RC_SUBR= postgresql -SUB_FILES+= dot.cshrc dot.profile -USE_PGSQL= yes -WANT_PGSQL_VER= ${PORTVERSION:C/([0-9][0-9]*)\.([0-9][0-9]*).*/\1\2/g} -.endif - -.if !defined(SLAVE_ONLY) -OPTIONS= NLS "Use internationalized messages" on -.endif - -# Cannot check this with standard OPTION due to a catch-22. -# USE_OPENSSL must precede bsd.port.pre.mk, but then we don't know -# what OPTIONS are set. -# -# If you *don't* want SSL, set WITHOUT_SSL=YES when making -.if !defined(WITHOUT_SSL) -USE_OPENSSL= yes -CONFIGURE_ARGS+=--with-openssl -.endif - -.include <bsd.port.pre.mk> - -.if !defined(SLAVE_ONLY) -# Note: server only options are no-ops for the client -OPTIONS+= PAM "Build with PAM support (server only)" off -OPTIONS+= MIT_KRB5 "Build with MIT's kerberos support" off -OPTIONS+= HEIMDAL_KRB5 "Builds with Heimdal kerberos support" off -OPTIONS+= OPTIMIZED_CFLAGS "Builds with compiler optimizations (-O3)" off -OPTIONS+= LIBC_R "Link w/ libc_r, used by plpython (server)" off -# to run regression tests: -OPTIONS+= TESTS "Allows the use of a \"check\" target (server)" off -OPTIONS+= DEBUG "Builds with debugging symbols" off - -. if defined(SERVER_ONLY) && defined(WITH_PAM) -CONFIGURE_ARGS+=--with-pam -. endif - -. if !(defined(WITHOUT_GETTEXT) || defined(WITHOUT_NLS)) -CONFIGURE_ARGS+=--enable-nls --with-includes=${LOCALBASE}/include -PLIST_SUB+= GETTEXT="" -USE_GETTEXT= YES -. else -CONFIGURE_ARGS+=--disable-nls -PLIST_SUB+= GETTEXT="@comment " -. endif - -. if defined(WITH_OPTIMIZED_CFLAGS) -CFLAGS+= -O3 -funroll-loops -. endif - -. if defined(WITH_DEBUG) -CONFIGURE_ARGS+= --enable-debug -INSTALL_TARGET= install -. else -INSTALL_TARGET= install-strip -. endif - -. if defined(WITH_MIT_KRB5) -. if exists(/usr/lib/libkrb5.so) || exists(/usr/bin/krb5-config) -BROKEN= You must remove heimdal's /usr/bin/krb5-config and /usr/lib/libkrb5.so*, and set NO_KERBEROS=true in /etc/make.conf to build successfully with MIT-KRB -. endif -# Allow defining a home built MIT Kerberos by setting KRB5_HOME -. if defined(KRB5_HOME) && exists(${KRB5_HOME}/lib/libgssapi_krb5.a) && exists(${KRB5_HOME}/bin/krb5-config) -CONFIGURE_ARGS+=--with-krb5=${KRB5_HOME} -. else -LIB_DEPENDS+= krb5.3:${PORTSDIR}/security/krb5 -CONFIGURE_ARGS+=--with-krb5=${LOCALBASE} -. endif -. endif - -. if defined(WITH_HEIMDAL_KRB5) -# Allow defining a home built Heimdal Kerberos by setting HEIMDAL_HOME -. if defined(HEIMDAL_HOME) && exists(${HEIMDAL_HOME}/lib/libgssapi.a) && exists(${HEIMDAL_HOME}/bin/krb5-config) -CONFIGURE_ARGS+=--with-krb5=${HEIMDAL_HOME} -. else -# Postgresql apps will not link properly when libpq is linked with base heimdal in /usr, -# so we always use the heimdal port. See -# http://lists.freebsd.org/pipermail/freebsd-stable/2005-October/018809.html -LIB_DEPENDS+= krb5.26:${PORTSDIR}/security/heimdal -CONFIGURE_ARGS+=--with-krb5=${LOCALBASE} -. endif -. endif - -. if (defined(SERVER_ONLY) && defined(WITH_TESTS)) || make(makesum) -EXTRA_PATCHES= ${FILESDIR}/regresspatch-src-test-regress-pgregress-sh -. endif - -. if defined(SERVER_ONLY) && defined(WITH_LIBC_R) -CFLAGS+= ${PTHREAD_CFLAGS} -LDFLAGS+= ${PTHREAD_LIBS} -. endif -.endif # !SLAVE_ONLY - -.if defined(CLIENT_ONLY) -MAN1= clusterdb.1 createdb.1 createlang.1 createuser.1 dropdb.1 \ - droplang.1 dropuser.1 ecpg.1 initdb.1 initlocation.1 ipcclean.1 \ - pg_config.1 pg_controldata.1 pg_ctl.1 pg_dump.1 pg_dumpall.1 \ - pg_resetxlog.1 pg_restore.1 pgtclsh.1 pgtksh.1 postgres.1 \ - postmaster.1 psql.1 vacuumdb.1 - -MAN7= abort.7 alter_database.7 alter_group.7 alter_table.7 \ - alter_trigger.7 alter_user.7 analyze.7 begin.7 checkpoint.7 \ - close.7 cluster.7 comment.7 commit.7 copy.7 create_aggregate.7 \ - create_cast.7 create_constraint_trigger.7 create_conversion.7 \ - create_database.7 create_domain.7 create_function.7 create_group.7 \ - create_index.7 create_language.7 create_operator.7 \ - create_operator_class.7 create_rule.7 create_schema.7 \ - create_sequence.7 create_table.7 create_table_as.7 \ - create_trigger.7 create_type.7 create_user.7 create_view.7 \ - deallocate.7 declare.7 delete.7 drop_aggregate.7 \ - drop_cast.7 drop_conversion.7 drop_database.7 drop_domain.7 \ - drop_function.7 drop_group.7 drop_index.7 drop_language.7 \ - drop_operator.7 drop_operator_class.7 drop_rule.7 drop_schema.7 \ - drop_sequence.7 \ - drop_table.7 drop_trigger.7 drop_type.7 drop_user.7 \ - drop_view.7 end.7 execute.7 explain.7 fetch.7 grant.7 insert.7 \ - listen.7 load.7 lock.7 move.7 notify.7 prepare.7 reindex.7 \ - reset.7 revoke.7 rollback.7 select.7 select_into.7 \ - set.7 set_constraints.7 set_transaction.7 show.7 \ - set_session_authorization.7 start_transaction.7 \ - truncate.7 unlisten.7 update.7 vacuum.7 -.endif - -.if defined(SERVER_ONLY) -pre-everything:: - @${SH} ${PKGINSTALL} ${PORTNAME} BACKUPWARNING -.endif - -.if !defined(NO_BUILD) - -pre-configure: -. if defined(WITH_MIT_KRB5) && defined(WITH_HEIMDAL_KRB5) - @${ECHO} "MIT's and Heimdal Kerberos are mutually exclusive." - @${ECHO} "Please choose one or the other." - @exit 1 -. endif - -do-build: - @ cd ${WRKSRC}/src/backend ;\ - ${GMAKE} ../../src/include/parser/parse.h ../../src/include/utils/fmgroids.h - @ for dir in ${BUILD_DIRS}; do \ - cd ${WRKSRC}/$${dir} && ${SETENV} ${MAKE_ENV} ${GMAKE}; \ - done - -. if exists(${FILESDIR}/pkg-message${PKGNAMESUFFIX}.in) -SUB_FILES+= pkg-message${PKGNAMESUFFIX} -PKGMESSAGE= ${WRKSRC}/pkg-message${PKGNAMESUFFIX} -. endif -.endif - -.if defined(SERVER_ONLY) -pre-su-install: - @ ${SETENV} PKG_PREFIX=${PREFIX} \ - ${SH} ${PKGINSTALL} ${PORTNAME} PRE-INSTALL -.endif - -.if !defined(NO_BUILD) -do-install: - @for dir in ${INSTALL_DIRS}; do \ - cd ${WRKSRC}/$${dir} && \ - ${SETENV} ${MAKE_ENV} ${GMAKE} ${INSTALL_TARGET}; \ - done -. if defined(CLIENT_ONLY) - @ cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${GMAKE} install-all-headers -. elif defined(SERVER_ONLY) - @ ${MKDIR} ${PREFIX}/share/postgresql -. for i in profile cshrc - ${INSTALL_DATA} ${WRKDIR}/dot.$i ${PREFIX}/share/postgresql/dot.$i.dist; \ - ${INSTALL_DATA} -o pgsql -g pgsql ${WRKDIR}/dot.$i ~pgsql/dot.$i.dist ; \ - if [ ! -f ~pgsql/.$i ]; then \ - ${CP} -p ~pgsql/dot.$i.dist ~pgsql/.$i; \ - fi -. endfor - @ ${CHOWN} -R pgsql:pgsql ~pgsql/. ;\ - ${MKDIR} ${PREFIX}/etc/periodic/daily ;\ - ${INSTALL_SCRIPT} ${FILESDIR}/502.pgsql \ - ${PREFIX}/etc/periodic/daily -. endif # SERVER_ONLY - @ if [ -r ${PKGMESSAGE} ]; then \ - ${MKDIR} ${DOCSDIR} ;\ - ${INSTALL_DATA} ${PKGMESSAGE} ${DOCSDIR}/README${PKGNAMESUFFIX} ;\ - ${ECHO} "======================================================================" ;\ - ${CAT} ${PKGMESSAGE} ;\ - ${ECHO} "======================================================================" ;\ - fi -.endif # !NO_BUILD - -.if defined(SERVER_ONLY) && defined(WITH_TESTS) -check: - @if [ `id -u` != 0 ] ; then \ - ${ECHO} "Running postgresql regressions tests" ;\ - cd ${WRKSRC}; ${GMAKE} check ;\ - else \ - ${ECHO} "You cannot run regression tests when postgresql is built as user root." ; \ - ${ECHO} "Clean and rebuild the port as a regular user to run the tests." ;\ - fi -.endif - -.include <bsd.port.post.mk> diff --git a/databases/postgresql73-server/distinfo b/databases/postgresql73-server/distinfo deleted file mode 100644 index 3a575f1a4c08..000000000000 --- a/databases/postgresql73-server/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (postgresql/postgresql-7.3.21.tar.bz2) = bf44e0ac259e9f6e14ac102f2977496b6996ecea2fd227fbdcea5fa70e342888 -SIZE (postgresql/postgresql-7.3.21.tar.bz2) = 9284558 diff --git a/databases/postgresql73-server/files/502.pgsql b/databases/postgresql73-server/files/502.pgsql deleted file mode 100644 index 09591559c317..000000000000 --- a/databases/postgresql73-server/files/502.pgsql +++ /dev/null @@ -1,97 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# Maintenance shell script to vacuum and backup database -# Put this in /usr/local/etc/periodic/daily, and it will be run -# every night -# -# Written by Palle Girgensohn <girgen@pingpong.net> -# -# In public domain, do what you like with it, -# and use it at your own risk... :) -# - -# Define these variables in either /etc/periodic.conf or -# /etc/periodic.conf.local to override the default values. -# -# daily_pgsql_backup_enable="YES" # do backup -# daily_pgsql_vacuum_enable="YES" # do vacuum - -daily_pgsql_vacuum_enable="YES" -daily_pgsql_backup_enable="NO" - -daily_pgsql_vacuum_args="-z" -daily_pgsql_pgdump_args="-b -F c" -# backupdir is relative to ~pgsql home directory unless it begins with a slash: -daily_pgsql_backupdir="~pgsql/backups" -daily_pgsql_savedays="7" - -# If there is a global system configuration file, suck it in. -# -if [ -r /etc/defaults/periodic.conf ] -then - . /etc/defaults/periodic.conf - source_periodic_confs -fi - -# allow '~´ in dir name -eval backupdir=${daily_pgsql_backupdir} - -rc=0 - -case "$daily_pgsql_backup_enable" in - [Yy][Ee][Ss]) - - # daily_pgsql_backupdir must be writeable by user pgsql - # ~pgsql is just that under normal circumstances, - # but this might not be where you want the backups... - if [ ! -d ${backupdir} ] ; then - echo Creating ${backupdir} - mkdir ${backupdir}; chmod 700 ${backupdir}; chown pgsql ${backupdir} - fi - - echo - echo "PostgreSQL maintenance" - - # Protect the data - umask 077 - dbnames=`su -l pgsql -c "psql -q -t -A -d template1 -c SELECT\ datname\ FROM\ pg_database\ WHERE\ datname!=\'template0\'"` - rc=$? - now=`date "+%Y-%m-%dT%H:%M:%S"` - file=${daily_pgsql_backupdir}/pgglobals_${now} - su -l pgsql -c "pg_dumpall -g | gzip -9 > ${file}.gz" - for db in ${dbnames}; do - echo -n " $db" - file=${backupdir}/pgdump_${db}_${now} - su -l pgsql -c "pg_dump ${daily_pgsql_pgdump_args} -f ${file} ${db}" - [ $? -gt 0 ] && rc=3 - done - - if [ $rc -gt 0 ]; then - echo - echo "Errors were reported during backup." - fi - - # cleaning up old data - find ${backupdir} \( -name 'pgdump_*' -o -name 'pgglobals_*' \) \ - -a -mtime +${daily_pgsql_savedays} -delete - ;; -esac - -case "$daily_pgsql_vacuum_enable" in - [Yy][Ee][Ss]) - - echo - echo "vacuuming..." - su -l pgsql -c "vacuumdb -a -q ${daily_pgsql_vacuum_args}" - if [ $? -gt 0 ] - then - echo - echo "Errors were reported during vacuum." - rc=3 - fi - ;; -esac - -exit $rc diff --git a/databases/postgresql73-server/files/dot.cshrc.in b/databases/postgresql73-server/files/dot.cshrc.in deleted file mode 100644 index 4069398b376e..000000000000 --- a/databases/postgresql73-server/files/dot.cshrc.in +++ /dev/null @@ -1,11 +0,0 @@ -setenv PGLIB %%PREFIX%%/lib - -# note: PGDATA can be overridden by the -D startup option -setenv PGDATA $HOME/data - -#You might want to set some locale stuff here -#setenv PGDATESTYLE ISO -#setenv LC_ALL sv_SE.ISO_8859-1 - -# if you want to make regression tests use this TZ -#setenv TZ PST8PDT diff --git a/databases/postgresql73-server/files/dot.profile.in b/databases/postgresql73-server/files/dot.profile.in deleted file mode 100644 index 6da911dfa6fa..000000000000 --- a/databases/postgresql73-server/files/dot.profile.in +++ /dev/null @@ -1,25 +0,0 @@ -# both new and old layout's paths, but new path first... -PATH=%%PREFIX%%/bin:${PATH} - -PGLIB=%%PREFIX%%/lib - -# note: PGDATA can be overridden by the -D startup option -PGDATA=${HOME}/data - -export PATH PGLIB PGDATA - -# if you use the periodic script from share/postgresql/502.pgsql, you -# can set these -#PGDUMP_ARGS="-b -F c" -#PGBACKUPDIR=${HOME}/backups -#PGBACKUP_SAVE_DAYS=7 -#export PGBACKUPDIR PGDUMP_ARGS PGBACKUP_SAVE_DAYS - -#You might want to set some locale stuff here -#PGDATESTYLE=ISO -#LC_ALL=sv_SE.ISO_8859-1 -#export PGDATESTYLE LC_ALL - -# if you want to make regression tests use this TZ -#TZ=PST8PDT -#export TZ diff --git a/databases/postgresql73-server/files/patch-configure b/databases/postgresql73-server/files/patch-configure deleted file mode 100644 index ed7555e8e259..000000000000 --- a/databases/postgresql73-server/files/patch-configure +++ /dev/null @@ -1,71 +0,0 @@ ---- configure.orig Wed Jun 26 21:28:24 2002 -+++ configure Wed Jun 26 21:35:16 2002 -@@ -441,6 +441,11 @@ - -docdir=* | --docdir=* | --infodi=* | --infod=* | --doc=* | --inf=*) - docdir=$ac_optarg ;; - -+ -infodir | --infodir | --infodi | --infod | --info | --inf) -+ ac_prev=infodir ;; -+ -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) -+ infodir=$ac_optarg ;; -+ - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) -@@ -2007,11 +2007,13 @@ - EOF - - -- if test -d "$krb4_prefix/include"; then -- INCLUDES="$INCLUDES -I$krb4_prefix/include" -- fi -- if test -d "$krb4_prefix/lib"; then -- LIBDIRS="$LIBDIRS -L$krb4_prefix/lib" -+ if test "$krb4_prefix" != "/usr"; then -+ if test -d "$krb4_prefix/include"; then -+ INCLUDES="$INCLUDES -I$krb4_prefix/include" -+ fi -+ if test -d "$krb4_prefix/lib"; then -+ LIBDIRS="$LIBDIRS -L$krb4_prefix/lib" -+ fi - fi - - krb_srvtab="/etc/srvtab" -@@ -2052,11 +2054,13 @@ - EOF - - -- if test -d "$krb5_prefix/include"; then -- INCLUDES="$INCLUDES -I$krb5_prefix/include" -- fi -- if test -d "$krb5_prefix/lib"; then -- LIBDIRS="$LIBDIRS -L$krb5_prefix/lib" -+ if test "$krb5_prefix" != "/usr"; then -+ if test -d "$krb5_prefix/include"; then -+ INCLUDES="$INCLUDES -I$krb5_prefix/include" -+ fi -+ if test -d "$krb5_prefix/lib"; then -+ LIBDIRS="$LIBDIRS -L$krb5_prefix/lib" -+ fi - fi - - krb_srvtab="FILE:\$(sysconfdir)/krb5.keytab" -@@ -2157,11 +2161,13 @@ - EOF - - -- if test -d "${openssl_prefix}/include" ; then -- INCLUDES="$INCLUDES -I${openssl_prefix}/include" -- fi -- if test -d "${openssl_prefix}/lib" ; then -- LIBDIRS="$LIBDIRS -L${openssl_prefix}/lib" -+ if test "${openssl_prefix}" != "/usr"; then -+ if test -d "${openssl_prefix}/include" ; then -+ INCLUDES="$INCLUDES -I${openssl_prefix}/include" -+ fi -+ if test -d "${openssl_prefix}/lib" ; then -+ LIBDIRS="$LIBDIRS -L${openssl_prefix}/lib" -+ fi - fi - - fi diff --git a/databases/postgresql73-server/files/patch-doc-Makefile b/databases/postgresql73-server/files/patch-doc-Makefile deleted file mode 100644 index 53a4622703b7..000000000000 --- a/databases/postgresql73-server/files/patch-doc-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- doc/Makefile~ 2002-11-28 00:21:20.000000000 +0100 -+++ doc/Makefile 2008-01-07 11:50:06.000000000 +0100 -@@ -26,7 +26,7 @@ - .NOTPARALLEL: - - ifneq ($(wildcard $(srcdir)/postgres.tar.gz),) --found_html := yes -+#found_html := yes - endif - - ifneq ($(wildcard $(srcdir)/man.tar.gz),) diff --git a/databases/postgresql73-server/files/patch-plpython-Makefile b/databases/postgresql73-server/files/patch-plpython-Makefile deleted file mode 100644 index a1303151170a..000000000000 --- a/databases/postgresql73-server/files/patch-plpython-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- src/pl/plpython/Makefile~ Thu Mar 4 08:06:19 2004 -+++ src/pl/plpython/Makefile Thu Mar 4 08:06:44 2004 -@@ -8,7 +8,7 @@ - # On some platforms we can only build PL/Python if libpython is a - # shared library. Since there is no official way to determine this, - # we see if there is a file that is named like a shared library. --ifneq (,$(wildcard $(python_configdir)/libpython*$(DLSUFFIX)*)) -+ifneq (,$(wildcard $(python_configdir)/../../libpython*$(DLSUFFIX)*)) - shared_libpython = yes - endif - diff --git a/databases/postgresql73-server/files/patch-src-bin-initdb-Makefile b/databases/postgresql73-server/files/patch-src-bin-initdb-Makefile deleted file mode 100644 index 406613b8114e..000000000000 --- a/databases/postgresql73-server/files/patch-src-bin-initdb-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- src/bin/initdb/Makefile.orig Tue Jan 9 11:31:36 2007 -+++ src/bin/initdb/Makefile Tue Jan 9 11:32:07 2007 -@@ -13,7 +13,7 @@ - top_builddir = ../../.. - include $(top_builddir)/src/Makefile.global - --all: initdb -+all: submake-libpq submake-libpgport initdb - - initdb: initdb.sh $(top_builddir)/src/Makefile.global - sed -e 's/@VERSION@/$(VERSION)/g' \ diff --git a/databases/postgresql73-server/files/patch-src-interfaces-jdbc-build-xml b/databases/postgresql73-server/files/patch-src-interfaces-jdbc-build-xml deleted file mode 100644 index 44a6e7960a2c..000000000000 --- a/databases/postgresql73-server/files/patch-src-interfaces-jdbc-build-xml +++ /dev/null @@ -1,11 +0,0 @@ ---- src/interfaces/jdbc/build.xml.orig Fri Mar 28 09:55:21 2003 -+++ src/interfaces/jdbc/build.xml Fri Mar 28 09:57:29 2003 -@@ -101,7 +101,7 @@ - - <!-- This is the core of the driver. It is common for all three versions. --> - <target name="compile" depends="prepare,check_versions,driver"> -- <javac srcdir="${srcdir}" destdir="${builddir}" debug="${debug}"> -+ <javac includeAntRuntime="no" srcdir="${srcdir}" destdir="${builddir}" debug="${debug}"> - <include name="${package}/**" /> - - <exclude name="${package}/jdbc1/**" unless="jdbc1"/> diff --git a/databases/postgresql73-server/files/patch-src-interfaces-libpgtcl-Makefile b/databases/postgresql73-server/files/patch-src-interfaces-libpgtcl-Makefile deleted file mode 100644 index 318deac9d737..000000000000 --- a/databases/postgresql73-server/files/patch-src-interfaces-libpgtcl-Makefile +++ /dev/null @@ -1,11 +0,0 @@ ---- src/interfaces/libpgtcl/Makefile.orig Wed Dec 11 05:08:05 2002 -+++ src/interfaces/libpgtcl/Makefile Sat Oct 23 17:37:20 2004 -@@ -25,7 +25,7 @@ - # If crypt is a separate library, rather than part of libc, it may need - # to be referenced separately to keep (broken) linkers happy. (This is - # braindead; users of libpq should not need to know what it depends on.) --SHLIB_LINK+= $(filter -L%, $(LDFLAGS)) $(filter -lcrypt, $(LIBS)) -+SHLIB_LINK+= $(filter -L%, $(LDFLAGS)) $(filter -lcrypt -ltcl83 -ltcl84, $(LIBS)) - - all: submake-libpq all-lib - diff --git a/databases/postgresql73-server/files/patch-src-makefiles-Makefile.freebsd b/databases/postgresql73-server/files/patch-src-makefiles-Makefile.freebsd deleted file mode 100644 index 9b4571d5dc30..000000000000 --- a/databases/postgresql73-server/files/patch-src-makefiles-Makefile.freebsd +++ /dev/null @@ -1,17 +0,0 @@ ---- src/makefiles/Makefile.freebsd.orig Wed Aug 29 21:14:40 2001 -+++ src/makefiles/Makefile.freebsd Sat Jan 31 17:51:25 2004 -@@ -7,7 +7,7 @@ - endif - - DLSUFFIX = .so --CFLAGS_SL = -fpic -DPIC -+CFLAGS_SL = -fPIC -DPIC - - %.so: %.o - ifdef ELF_SYSTEM -@@ -23,3 +23,5 @@ - endif - - sqlmansect = 7 -+ -+allow_nonpic_in_shlib = yes diff --git a/databases/postgresql73-server/files/patch-src:backend:utils:misc:postgresql.conf.sample b/databases/postgresql73-server/files/patch-src:backend:utils:misc:postgresql.conf.sample deleted file mode 100644 index e9ad9322157e..000000000000 --- a/databases/postgresql73-server/files/patch-src:backend:utils:misc:postgresql.conf.sample +++ /dev/null @@ -1,24 +0,0 @@ ---- src/backend/utils/misc/postgresql.conf.sample.orig Sun Mar 30 23:38:13 2003 -+++ src/backend/utils/misc/postgresql.conf.sample Thu Oct 28 05:24:07 2004 -@@ -119,7 +119,7 @@ - #client_min_messages = notice # Values, in order of decreasing detail: - # debug5, debug4, debug3, debug2, debug1, - # log, info, notice, warning, error --#silent_mode = false -+silent_mode = true - - #log_connections = false - #log_pid = false -@@ -145,9 +145,9 @@ - # - # Syslog - # --#syslog = 0 # range 0-2 --#syslog_facility = 'LOCAL0' --#syslog_ident = 'postgres' -+syslog = 2 # range 0-2 -+syslog_facility = 'LOCAL0' -+syslog_ident = 'postgres' - - - # diff --git a/databases/postgresql73-server/files/pkg-message-client.in b/databases/postgresql73-server/files/pkg-message-client.in deleted file mode 100644 index 722d50cb4244..000000000000 --- a/databases/postgresql73-server/files/pkg-message-client.in +++ /dev/null @@ -1,32 +0,0 @@ -The PostgreSQL port has a collection of "side orders": - -postgresql-doc - For all of the html documentation - -p5-Pg - A perl5 API for client access to PostgreSQL databases. - -postgresql-tcltk - If you want tcl/tk client support. - -postgresql-jdbc - For Java JDBC support. - -postgresql-odbc - For client access from unix applications using ODBC as access - method. Not needed to access unix PostgreSQL servers from Win32 - using ODBC. See below. - -ruby-postgres, py-PyGreSQL - For client access to PostgreSQL databases using the ruby & python - languages. - -p5-postgresql-plperl, postgresql-pltcl & postgresql-plruby - For using perl5, tcl & ruby as procedural languages. - -postgresql-contrib - Lots of contributed utilities, postgresql functions and - datatypes. There you find autovacuum, pgcrypto and many other cool - things. - -etc... diff --git a/databases/postgresql73-server/files/pkg-message-contrib.in b/databases/postgresql73-server/files/pkg-message-contrib.in deleted file mode 100644 index 2b29ffd33041..000000000000 --- a/databases/postgresql73-server/files/pkg-message-contrib.in +++ /dev/null @@ -1,3 +0,0 @@ -The PostgreSQL contrib utilities have been installed. Please see -%%PREFIX%%/share/doc/postgresql/contrib/README -for more information. diff --git a/databases/postgresql73-server/files/pkg-message-plperl.in b/databases/postgresql73-server/files/pkg-message-plperl.in deleted file mode 100644 index 5d0c83920563..000000000000 --- a/databases/postgresql73-server/files/pkg-message-plperl.in +++ /dev/null @@ -1,3 +0,0 @@ -PL/Perl has been installed. Check the createlang(l) manpage for more -info. You can install PL/Perl as trusted or untrusted, by using either -"createlang plperl" or "createlang plperlu". diff --git a/databases/postgresql73-server/files/pkg-message-plpython.in b/databases/postgresql73-server/files/pkg-message-plpython.in deleted file mode 100644 index c413582b6295..000000000000 --- a/databases/postgresql73-server/files/pkg-message-plpython.in +++ /dev/null @@ -1,3 +0,0 @@ -PL/Python has been installed. Check the createlang(l) manpage for more -info. You can install PL/Python by using "createlang plpythonu" (it -exists as an untrusted language only). diff --git a/databases/postgresql73-server/files/pkg-message-pltcl.in b/databases/postgresql73-server/files/pkg-message-pltcl.in deleted file mode 100644 index 0902b858de0b..000000000000 --- a/databases/postgresql73-server/files/pkg-message-pltcl.in +++ /dev/null @@ -1,3 +0,0 @@ -PL/Tcl has been installed. Check the createlang(l) manpage for more -info. You can install pltcl as trusted or untrusted, by using either -"createlang pltcl" or "createlang pltclu". diff --git a/databases/postgresql73-server/files/pkg-message-server.in b/databases/postgresql73-server/files/pkg-message-server.in deleted file mode 100644 index d2367e291511..000000000000 --- a/databases/postgresql73-server/files/pkg-message-server.in +++ /dev/null @@ -1,67 +0,0 @@ - -For procedural languages and postgresql functions, please note that -you might have to update them when updating the server. - -If you have many tables and many clients running, consider raising -kern.maxfiles using sysctl(8), or reconfigure your kernel -appropriately. - -You should vacuum and backup your database regularly. There is a -periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that you may -find useful. See the script for instructions. - -To allow many simultaneous connections to your PostgreSQL server, you -should raise the SystemV shared memory limits in your kernel. Here are -example values for allowing up to 180 clients (configurations in -postgresql.conf also needed, of course): - options SYSVSHM - options SYSVSEM - options SYSVMSG - options SHMMAXPGS=65536 - options SEMMNI=40 - options SEMMNS=240 - options SEMUME=40 - options SEMMNU=120 - -If you plan to access your PostgreSQL server using ODBC, please -consider running the SQL script %%PREFIX%%/share/postgresql/odbc.sql -to get the functions required for ODBC compliance. - -Please note that if you use the rc script, -%%PREFIX%%/etc/rc.d/postgresql, to initialize the database, unicode -(UTF-8) will be used to store character data by default. Set -postgresql_initdb_flags or use login.conf settings described below to -alter this behaviour. See the start rc script for more info. - -To set limits, environment stuff like locale and collation and other -things, you can set up a class in /etc/login.conf before initializing -the database. Add something similar to this to /etc/login.conf: ---- -postgres:\ - :lang=en_US.UTF-8:\ - :setenv=LC_COLLATE=C:\ - :tc=default: ---- -and run `cap_mkdb /etc/login.conf'. -Then add 'postgresql_class="postgres"' to /etc/rc.conf. - -====================================================================== - -To initialize the database, run - - %%PREFIX%%/etc/rc.d/postgresql initdb - -You can then start PostgreSQL by running: - - %%PREFIX%%/etc/rc.d/postgresql start - -For postmaster settings, see ~pgsql/data/postgresql.conf - -NB. FreeBSD's PostgreSQL port logs to syslog by default - See ~pgsql/data/postgresql.conf for more info - -====================================================================== - -To run PostgreSQL at startup, add -'postgresql_enable="YES"' to /etc/rc.conf - diff --git a/databases/postgresql73-server/files/pkgIndex.tcl.in b/databases/postgresql73-server/files/pkgIndex.tcl.in deleted file mode 100644 index bd8329b15c69..000000000000 --- a/databases/postgresql73-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql73-server/files/postgresql.in b/databases/postgresql73-server/files/postgresql.in deleted file mode 100644 index 405d2efaa4d3..000000000000 --- a/databases/postgresql73-server/files/postgresql.in +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh - -# $FreeBSD$ -# -# PROVIDE: postgresql -# REQUIRE: LOGIN -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="%%PREFIX%%/pgsql/data" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_class="default" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=pgsql -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data"} -postgresql_class=${postgresql_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=`set_rcvar` -command_args="-D ${postgresql_data} ${postgresql_flags}" -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" - -initdb_cmd="postgresql_initdb" - -postgresql_command() -{ - su -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - su -l -c ${postgresql_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data}" -} - -run_rc_command "$1" diff --git a/databases/postgresql73-server/files/regresspatch-src-test-regress-pgregress-sh b/databases/postgresql73-server/files/regresspatch-src-test-regress-pgregress-sh deleted file mode 100644 index 7273152b1f67..000000000000 --- a/databases/postgresql73-server/files/regresspatch-src-test-regress-pgregress-sh +++ /dev/null @@ -1,12 +0,0 @@ ---- src/test/regress/pg_regress.sh~ Wed Nov 13 17:40:29 2002 -+++ src/test/regress/pg_regress.sh Sat Jan 8 05:31:17 2005 -@@ -348,6 +348,9 @@ - (exit 2); exit - fi - -+ # make rest of this script happy -+ echo "syslog = 0" >> $PGDATA/postgresql.conf -+ echo "silent_mode = false" >> $PGDATA/postgresql.conf - - # ---------- - # Start postmaster diff --git a/databases/postgresql73-server/pkg-descr b/databases/postgresql73-server/pkg-descr deleted file mode 100644 index f8f8a9e0d422..000000000000 --- a/databases/postgresql73-server/pkg-descr +++ /dev/null @@ -1,23 +0,0 @@ -PostgreSQL is a sophisticated Object-Relational DBMS, supporting -almost all SQL constructs, including subselects, transactions, and -user-defined types and functions. It is the most advanced open-source -database available anywhere. Commercial Support is also available. - -The original Postgres code was the effort of many graduate students, -undergraduate students, and staff programmers working under the direction of -Professor Michael Stonebraker at the University of California, Berkeley. In -1995, Andrew Yu and Jolly Chen took on the task of converting the DBMS query -language to SQL and created a new database system which came to known as -Postgres95. Many others contributed to the porting, testing, debugging and -enhancement of the Postgres95 code. As the code improved, and 1995 faded into -memory, PostgreSQL was born. - -PostgreSQL development is presently being performed by a team of Internet -developers who are now responsible for all current and future development. The -development team coordinator is Marc G. Fournier (scrappy@PostgreSQL.ORG). -Support is available from the PostgreSQL developer/user community through the -support mailing list (questions@PostgreSQL.ORG). - -PostgreSQL is free and the complete source is available. - -WWW: http://www.postgresql.org/ diff --git a/databases/postgresql73-server/pkg-install-server b/databases/postgresql73-server/pkg-install-server deleted file mode 100644 index 4a953cac5cec..000000000000 --- a/databases/postgresql73-server/pkg-install-server +++ /dev/null @@ -1,65 +0,0 @@ -#! /bin/sh - -# $FreeBSD: /tmp/pcvs/ports/databases/postgresql73-server/Attic/pkg-install-server,v 1.1 2004-11-23 19:15:10 ade Exp $ - -PATH=/bin:/usr/sbin -PGUSER=pgsql -DB_DIR=${PKG_PREFIX}/${PGUSER} - -backupwarning() { echo " - - =========== BACKUP YOUR DATA! ============= - As always, backup your data before - upgrading. If the upgrade leads to a higher - minor revision (e.g. 7.3.x -> 7.4), a dump - and restore of all databases is - required. This is *NOT* done by the port! - - Press ctrl-C *now* if you need to pg_dump. - =========================================== -" - sleep 5 -} - -case $2 in -PRE-INSTALL) - backupwarning - USER=${PGUSER} - GROUP=${USER} - UID=70 - GID=${UID} - - if pw group show "${GROUP}" 2>/dev/null; then - echo "You already have a group \"${GROUP}\", so I will use it." - else - if pw groupadd ${GROUP} -g ${GID}; then - echo "Added group \"${GROUP}\"." - else - echo "Adding group \"${GROUP}\" failed..." - exit 1 - fi - fi - - if pw user show "${USER}" 2>/dev/null; then - echo "You already have a user \"${USER}\", so I will use it." - else - if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ - -d ${DB_DIR} -c "PostgreSQL Daemon" - then - echo "Added user \"${USER}\"." - else - echo "Adding user \"${USER}\" failed..." - exit 1 - fi - fi - - if ! [ -x ~${PGUSER} ] ; then - mkdir -p ${DB_DIR} - chown pgsql:pgsql ${DB_DIR} - fi - ;; - -BACKUPWARNING) - backupwarning - ;; -esac diff --git a/databases/postgresql73-server/pkg-plist b/databases/postgresql73-server/pkg-plist deleted file mode 100644 index 9c9bab36b9f8..000000000000 --- a/databases/postgresql73-server/pkg-plist +++ /dev/null @@ -1 +0,0 @@ -@comment to make portlint happy diff --git a/databases/postgresql73-server/pkg-plist-client b/databases/postgresql73-server/pkg-plist-client deleted file mode 100644 index 364b988dfe7c..000000000000 --- a/databases/postgresql73-server/pkg-plist-client +++ /dev/null @@ -1,403 +0,0 @@ -bin/clusterdb -bin/createdb -bin/createlang -bin/createuser -bin/dropdb -bin/droplang -bin/dropuser -bin/ecpg -bin/pg_config -bin/pg_dump -bin/pg_dumpall -bin/pg_encoding -bin/pg_restore -bin/psql -bin/vacuumdb -include/libpq/libpq-fs.h -@dirrm include/libpq -include/postgresql/internal/libpq/pqcomm.h -@dirrm include/postgresql/internal/libpq -include/postgresql/internal/lib/dllist.h -@dirrm include/postgresql/internal/lib -include/postgresql/internal/c.h -include/postgresql/internal/libpq-int.h -include/postgresql/internal/postgres_fe.h -include/postgresql/internal/pqexpbuffer.h -@dirrm include/postgresql/internal -include/postgresql/server/access/attnum.h -include/postgresql/server/access/clog.h -include/postgresql/server/access/genam.h -include/postgresql/server/access/gist.h -include/postgresql/server/access/gistscan.h -include/postgresql/server/access/hash.h -include/postgresql/server/access/heapam.h -include/postgresql/server/access/hio.h -include/postgresql/server/access/htup.h -include/postgresql/server/access/ibit.h -include/postgresql/server/access/iqual.h -include/postgresql/server/access/istrat.h -include/postgresql/server/access/itup.h -include/postgresql/server/access/nbtree.h -include/postgresql/server/access/printtup.h -include/postgresql/server/access/relscan.h -include/postgresql/server/access/rmgr.h -include/postgresql/server/access/rtree.h -include/postgresql/server/access/rtscan.h -include/postgresql/server/access/sdir.h -include/postgresql/server/access/skey.h -include/postgresql/server/access/strat.h -include/postgresql/server/access/transam.h -include/postgresql/server/access/tupdesc.h -include/postgresql/server/access/tupmacs.h -include/postgresql/server/access/valid.h -include/postgresql/server/access/tuptoaster.h -include/postgresql/server/access/xact.h -include/postgresql/server/access/xlog.h -include/postgresql/server/access/xlogdefs.h -include/postgresql/server/access/xlogutils.h -include/postgresql/server/bootstrap/bootstrap.h -include/postgresql/server/catalog/catalog.h -include/postgresql/server/catalog/catname.h -include/postgresql/server/catalog/catversion.h -include/postgresql/server/catalog/dependency.h -include/postgresql/server/catalog/heap.h -include/postgresql/server/catalog/index.h -include/postgresql/server/catalog/indexing.h -include/postgresql/server/catalog/namespace.h -include/postgresql/server/catalog/pg_aggregate.h -include/postgresql/server/catalog/pg_am.h -include/postgresql/server/catalog/pg_amop.h -include/postgresql/server/catalog/pg_amproc.h -include/postgresql/server/catalog/pg_attrdef.h -include/postgresql/server/catalog/pg_attribute.h -include/postgresql/server/catalog/pg_cast.h -include/postgresql/server/catalog/pg_class.h -include/postgresql/server/catalog/pg_constraint.h -include/postgresql/server/catalog/pg_control.h -include/postgresql/server/catalog/pg_conversion.h -include/postgresql/server/catalog/pg_database.h -include/postgresql/server/catalog/pg_depend.h -include/postgresql/server/catalog/pg_group.h -include/postgresql/server/catalog/pg_description.h -include/postgresql/server/catalog/pg_index.h -include/postgresql/server/catalog/pg_inherits.h -include/postgresql/server/catalog/pg_language.h -include/postgresql/server/catalog/pg_largeobject.h -include/postgresql/server/catalog/pg_listener.h -include/postgresql/server/catalog/pg_namespace.h -include/postgresql/server/catalog/pg_opclass.h -include/postgresql/server/catalog/pg_operator.h -include/postgresql/server/catalog/pg_proc.h -include/postgresql/server/catalog/pg_rewrite.h -include/postgresql/server/catalog/pg_shadow.h -include/postgresql/server/catalog/pg_statistic.h -include/postgresql/server/catalog/pg_trigger.h -include/postgresql/server/catalog/pg_type.h -include/postgresql/server/catalog/pg_version.h -include/postgresql/server/commands/async.h -include/postgresql/server/commands/cluster.h -include/postgresql/server/commands/comment.h -include/postgresql/server/commands/conversioncmds.h -include/postgresql/server/commands/copy.h -include/postgresql/server/commands/dbcommands.h -include/postgresql/server/commands/defrem.h -include/postgresql/server/commands/explain.h -include/postgresql/server/commands/lockcmds.h -include/postgresql/server/commands/portalcmds.h -include/postgresql/server/commands/prepare.h -include/postgresql/server/commands/proclang.h -include/postgresql/server/commands/schemacmds.h -include/postgresql/server/commands/sequence.h -include/postgresql/server/commands/tablecmds.h -include/postgresql/server/commands/trigger.h -include/postgresql/server/commands/user.h -include/postgresql/server/commands/vacuum.h -include/postgresql/server/commands/variable.h -include/postgresql/server/commands/version.h -include/postgresql/server/commands/view.h -include/postgresql/server/executor/execdebug.h -include/postgresql/server/executor/execdefs.h -include/postgresql/server/executor/execdesc.h -include/postgresql/server/executor/executor.h -include/postgresql/server/executor/functions.h -include/postgresql/server/executor/hashjoin.h -include/postgresql/server/executor/instrument.h -include/postgresql/server/executor/nodeAgg.h -include/postgresql/server/executor/nodeAppend.h -include/postgresql/server/executor/nodeFunctionscan.h -include/postgresql/server/executor/nodeGroup.h -include/postgresql/server/executor/nodeHash.h -include/postgresql/server/executor/nodeHashjoin.h -include/postgresql/server/executor/nodeIndexscan.h -include/postgresql/server/executor/nodeLimit.h -include/postgresql/server/executor/nodeMaterial.h -include/postgresql/server/executor/nodeMergejoin.h -include/postgresql/server/executor/nodeNestloop.h -include/postgresql/server/executor/nodeResult.h -include/postgresql/server/executor/nodeSeqscan.h -include/postgresql/server/executor/nodeSetOp.h -include/postgresql/server/executor/nodeSort.h -include/postgresql/server/executor/nodeSubplan.h -include/postgresql/server/executor/nodeSubqueryscan.h -include/postgresql/server/executor/nodeTidscan.h -include/postgresql/server/executor/nodeUnique.h -include/postgresql/server/executor/spi.h -include/postgresql/server/executor/spi_priv.h -include/postgresql/server/executor/tuptable.h -include/postgresql/server/lib/dllist.h -include/postgresql/server/lib/lispsort.h -include/postgresql/server/lib/stringinfo.h -include/postgresql/server/libpq/auth.h -include/postgresql/server/libpq/be-fsstubs.h -include/postgresql/server/libpq/crypt.h -include/postgresql/server/libpq/hba.h -include/postgresql/server/libpq/libpq-be.h -include/postgresql/server/libpq/libpq-fs.h -include/postgresql/server/libpq/libpq.h -include/postgresql/server/libpq/password.h -include/postgresql/server/libpq/pqcomm.h -include/postgresql/server/libpq/pqformat.h -include/postgresql/server/libpq/pqsignal.h -include/postgresql/server/mb/pg_wchar.h -include/postgresql/server/nodes/execnodes.h -include/postgresql/server/nodes/makefuncs.h -include/postgresql/server/nodes/memnodes.h -include/postgresql/server/nodes/nodeFuncs.h -include/postgresql/server/nodes/nodes.h -include/postgresql/server/nodes/params.h -include/postgresql/server/nodes/parsenodes.h -include/postgresql/server/nodes/pg_list.h -include/postgresql/server/nodes/plannodes.h -include/postgresql/server/nodes/primnodes.h -include/postgresql/server/nodes/print.h -include/postgresql/server/nodes/readfuncs.h -include/postgresql/server/nodes/relation.h -include/postgresql/server/optimizer/clauses.h -include/postgresql/server/optimizer/cost.h -include/postgresql/server/optimizer/geqo.h -include/postgresql/server/optimizer/geqo_copy.h -include/postgresql/server/optimizer/geqo_gene.h -include/postgresql/server/optimizer/geqo_misc.h -include/postgresql/server/optimizer/geqo_mutation.h -include/postgresql/server/optimizer/geqo_pool.h -include/postgresql/server/optimizer/geqo_random.h -include/postgresql/server/optimizer/geqo_recombination.h -include/postgresql/server/optimizer/geqo_selection.h -include/postgresql/server/optimizer/joininfo.h -include/postgresql/server/optimizer/pathnode.h -include/postgresql/server/optimizer/paths.h -include/postgresql/server/optimizer/plancat.h -include/postgresql/server/optimizer/planmain.h -include/postgresql/server/optimizer/planner.h -include/postgresql/server/optimizer/prep.h -include/postgresql/server/optimizer/restrictinfo.h -include/postgresql/server/optimizer/subselect.h -include/postgresql/server/optimizer/tlist.h -include/postgresql/server/optimizer/var.h -include/postgresql/server/parser/analyze.h -include/postgresql/server/parser/gramparse.h -include/postgresql/server/parser/keywords.h -include/postgresql/server/parser/parse.h -include/postgresql/server/parser/parse_agg.h -include/postgresql/server/parser/parse_clause.h -include/postgresql/server/parser/parse_coerce.h -include/postgresql/server/parser/parse_expr.h -include/postgresql/server/parser/parse_func.h -include/postgresql/server/parser/parse_node.h -include/postgresql/server/parser/parse_oper.h -include/postgresql/server/parser/parse_relation.h -include/postgresql/server/parser/parse_target.h -include/postgresql/server/parser/parse_type.h -include/postgresql/server/parser/parser.h -include/postgresql/server/parser/parsetree.h -include/postgresql/server/parser/scansup.h -include/postgresql/server/port/aix.h -include/postgresql/server/port/beos.h -include/postgresql/server/port/bsdi.h -include/postgresql/server/port/darwin.h -include/postgresql/server/port/dgux.h -include/postgresql/server/port/freebsd.h -include/postgresql/server/port/hpux.h -include/postgresql/server/port/irix5.h -include/postgresql/server/port/linux.h -include/postgresql/server/port/netbsd.h -include/postgresql/server/port/nextstep.h -include/postgresql/server/port/openbsd.h -include/postgresql/server/port/osf.h -include/postgresql/server/port/qnx4.h -include/postgresql/server/port/sco.h -include/postgresql/server/port/solaris.h -include/postgresql/server/port/sunos4.h -include/postgresql/server/port/svr4.h -include/postgresql/server/port/ultrix4.h -include/postgresql/server/port/univel.h -include/postgresql/server/port/unixware.h -include/postgresql/server/port/win.h -include/postgresql/server/port/win32.h -include/postgresql/server/regex/cclass.h -include/postgresql/server/regex/cname.h -include/postgresql/server/regex/regex.h -include/postgresql/server/regex/regex2.h -include/postgresql/server/regex/utils.h -include/postgresql/server/rewrite/prs2lock.h -include/postgresql/server/rewrite/rewriteDefine.h -include/postgresql/server/rewrite/rewriteHandler.h -include/postgresql/server/rewrite/rewriteManip.h -include/postgresql/server/rewrite/rewriteRemove.h -include/postgresql/server/rewrite/rewriteSupport.h -include/postgresql/server/storage/backendid.h -include/postgresql/server/storage/block.h -include/postgresql/server/storage/buf.h -include/postgresql/server/storage/buf_internals.h -include/postgresql/server/storage/buffile.h -include/postgresql/server/storage/bufmgr.h -include/postgresql/server/storage/bufpage.h -include/postgresql/server/storage/fd.h -include/postgresql/server/storage/freespace.h -include/postgresql/server/storage/ipc.h -include/postgresql/server/storage/item.h -include/postgresql/server/storage/itemid.h -include/postgresql/server/storage/itempos.h -include/postgresql/server/storage/itemptr.h -include/postgresql/server/storage/large_object.h -include/postgresql/server/storage/lmgr.h -include/postgresql/server/storage/lock.h -include/postgresql/server/storage/lwlock.h -include/postgresql/server/storage/off.h -include/postgresql/server/storage/page.h -include/postgresql/server/storage/pg_sema.h -include/postgresql/server/storage/pg_shmem.h -include/postgresql/server/storage/pmsignal.h -include/postgresql/server/storage/pos.h -include/postgresql/server/storage/proc.h -include/postgresql/server/storage/relfilenode.h -include/postgresql/server/storage/s_lock.h -include/postgresql/server/storage/shmem.h -include/postgresql/server/storage/sinval.h -include/postgresql/server/storage/sinvaladt.h -include/postgresql/server/storage/smgr.h -include/postgresql/server/storage/spin.h -include/postgresql/server/tcop/dest.h -include/postgresql/server/tcop/fastpath.h -include/postgresql/server/tcop/pquery.h -include/postgresql/server/tcop/tcopdebug.h -include/postgresql/server/tcop/tcopprot.h -include/postgresql/server/tcop/utility.h -include/postgresql/server/utils/acl.h -include/postgresql/server/utils/array.h -include/postgresql/server/utils/ascii.h -include/postgresql/server/utils/bit.h -include/postgresql/server/utils/builtins.h -include/postgresql/server/utils/cash.h -include/postgresql/server/utils/catcache.h -include/postgresql/server/utils/date.h -include/postgresql/server/utils/datetime.h -include/postgresql/server/utils/datum.h -include/postgresql/server/utils/dynahash.h -include/postgresql/server/utils/dynamic_loader.h -include/postgresql/server/utils/elog.h -include/postgresql/server/utils/fcache.h -include/postgresql/server/utils/fmgroids.h -include/postgresql/server/utils/fmgrtab.h -include/postgresql/server/utils/formatting.h -include/postgresql/server/utils/geo_decls.h -include/postgresql/server/utils/guc.h -include/postgresql/server/utils/hsearch.h -include/postgresql/server/utils/inet.h -include/postgresql/server/utils/int8.h -include/postgresql/server/utils/inval.h -include/postgresql/server/utils/logtape.h -include/postgresql/server/utils/lsyscache.h -include/postgresql/server/utils/memutils.h -include/postgresql/server/utils/nabstime.h -include/postgresql/server/utils/numeric.h -include/postgresql/server/utils/palloc.h -include/postgresql/server/utils/pg_crc.h -include/postgresql/server/utils/pg_locale.h -include/postgresql/server/utils/pg_lzcompress.h -include/postgresql/server/utils/portal.h -include/postgresql/server/utils/ps_status.h -include/postgresql/server/utils/rel.h -include/postgresql/server/utils/relcache.h -include/postgresql/server/utils/selfuncs.h -include/postgresql/server/utils/sets.h -include/postgresql/server/utils/syscache.h -include/postgresql/server/utils/timestamp.h -include/postgresql/server/utils/tqual.h -include/postgresql/server/utils/tuplesort.h -include/postgresql/server/utils/tuplestore.h -include/postgresql/server/utils/varbit.h -include/postgresql/server/pg_config.h -include/postgresql/server/pg_config_os.h -include/postgresql/server/c.h -include/postgresql/server/dynloader.h -include/postgresql/server/fmgr.h -include/postgresql/server/funcapi.h -include/postgresql/server/miscadmin.h -include/postgresql/server/pgstat.h -include/postgresql/server/postgres.h -include/postgresql/server/postgres_ext.h -include/postgresql/server/postgres_fe.h -include/postgresql/server/rusagestub.h -include/postgresql/server/strdup.h -@dirrm include/postgresql/server/access -@dirrm include/postgresql/server/bootstrap -@dirrm include/postgresql/server/catalog -@dirrm include/postgresql/server/commands -@dirrm include/postgresql/server/executor -@dirrm include/postgresql/server/lib -@dirrm include/postgresql/server/libpq -@dirrm include/postgresql/server/mb -@dirrm include/postgresql/server/nodes -@dirrm include/postgresql/server/optimizer -@dirrm include/postgresql/server/parser -@dirrm include/postgresql/server/port -@dirrm include/postgresql/server/regex -@dirrm include/postgresql/server/rewrite -@dirrm include/postgresql/server/storage -@dirrm include/postgresql/server/tcop -@dirrm include/postgresql/server/utils -@dirrm include/postgresql/server -include/ecpgerrno.h -include/ecpglib.h -include/ecpgtype.h -include/libpq-fe.h -include/pg_config.h -include/pg_config_os.h -include/postgres_ext.h -include/sql3types.h -include/sqlca.h -lib/libecpg.a -lib/libecpg.so -lib/libecpg.so.3 -lib/libpq.a -lib/libpq.so -lib/libpq.so.3 -%%DOCSDIR%%/README-client -@dirrmtry %%DOCSDIR%% -@dirrmtry share/postgresql -%%GETTEXT%%share/locale/cs/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/cs/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/cs/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/es/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/fr/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/fr/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/hu/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/psql.mo -%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/libpq.mo -%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/pg_dump.mo -%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/psql.mo -@dirrm include/postgresql diff --git a/databases/postgresql73-server/pkg-plist-contrib b/databases/postgresql73-server/pkg-plist-contrib deleted file mode 100644 index 97b4e58705e5..000000000000 --- a/databases/postgresql73-server/pkg-plist-contrib +++ /dev/null @@ -1,140 +0,0 @@ -bin/ApplySnapshot -bin/CleanLog -bin/GetSyncID -bin/InitRservTest -bin/MasterAddTable -bin/MasterInit -bin/MasterSync -bin/PrepareSnapshot -bin/Replicate -bin/RservTest -bin/SlaveAddTable -bin/SlaveInit -bin/dbf2pg -bin/findoidjoins -bin/fti.pl -bin/ipc_check -bin/make_oidjoins_check -bin/oid2name -bin/pg_dumplo -bin/pg_logger -bin/pgbench -bin/reindexdb -bin/vacuumlo -lib/postgresql/_int.so -lib/postgresql/array_iterator.so -lib/postgresql/autoinc.so -lib/postgresql/btree_gist.so -lib/postgresql/chkpass.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dbsize.so -lib/postgresql/earthdistance.so -lib/postgresql/fti.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/insert_username.so -lib/postgresql/int_aggregate.so -lib/postgresql/isbn_issn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/misc_utils.so -lib/postgresql/moddatetime.so -lib/postgresql/noup.so -lib/postgresql/pending.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgstattuple.so -lib/postgresql/refint.so -lib/postgresql/rserv.so -lib/postgresql/rtree_gist.so -lib/postgresql/seg.so -lib/postgresql/string_io.so -lib/postgresql/tablefunc.so -lib/postgresql/timetravel.so -lib/postgresql/tsearch.so -lib/postgresql/user_locks.so -%%DOCSDIR%%/README-contrib -%%DOCSDIR%%/contrib/README -%%DOCSDIR%%/contrib/README.apachelog -%%DOCSDIR%%/contrib/README.array_iterator -%%DOCSDIR%%/contrib/README.btree_gist -%%DOCSDIR%%/contrib/README.chkpass -%%DOCSDIR%%/contrib/README.cube -%%DOCSDIR%%/contrib/README.dbf2pg -%%DOCSDIR%%/contrib/README.dblink -%%DOCSDIR%%/contrib/README.dbmirror -%%DOCSDIR%%/contrib/README.dbsize -%%DOCSDIR%%/contrib/README.earthdistance -%%DOCSDIR%%/contrib/README.findoidjoins -%%DOCSDIR%%/contrib/README.fti -%%DOCSDIR%%/contrib/README.fuzzystrmatch -%%DOCSDIR%%/contrib/README.int_aggregate -%%DOCSDIR%%/contrib/README.intarray -%%DOCSDIR%%/contrib/README.ipc_check -%%DOCSDIR%%/contrib/README.isbn_issn -%%DOCSDIR%%/contrib/README.lo -%%DOCSDIR%%/contrib/README.ltree -%%DOCSDIR%%/contrib/README.misc_utils -%%DOCSDIR%%/contrib/README.noup -%%DOCSDIR%%/contrib/README.oid2name -%%DOCSDIR%%/contrib/README.pg_dumplo -%%DOCSDIR%%/contrib/README.pg_logger -%%DOCSDIR%%/contrib/README.pgbench -%%DOCSDIR%%/contrib/README.pgbench_jis -%%DOCSDIR%%/contrib/README.pgcrypto -%%DOCSDIR%%/contrib/README.pgstattuple -%%DOCSDIR%%/contrib/README.pgstattuple.euc_jp -%%DOCSDIR%%/contrib/README.reindexdb -%%DOCSDIR%%/contrib/README.rserv -%%DOCSDIR%%/contrib/README.rtree_gist -%%DOCSDIR%%/contrib/README.seg -%%DOCSDIR%%/contrib/README.soundex -%%DOCSDIR%%/contrib/README.spi -%%DOCSDIR%%/contrib/README.string_io -%%DOCSDIR%%/contrib/README.tablefunc -%%DOCSDIR%%/contrib/README.tsearch -%%DOCSDIR%%/contrib/README.user_locks -%%DOCSDIR%%/contrib/README.vacuumlo -%%DOCSDIR%%/contrib/autoinc.example -%%DOCSDIR%%/contrib/insert_username.example -%%DOCSDIR%%/contrib/moddatetime.example -%%DOCSDIR%%/contrib/refint.example -%%DOCSDIR%%/contrib/timetravel.example -share/postgresql/contrib/RServ.pm -share/postgresql/contrib/_int.sql -share/postgresql/contrib/array_iterator.sql -share/postgresql/contrib/autoinc.sql -share/postgresql/contrib/btree_gist.sql -share/postgresql/contrib/chkpass.sql -share/postgresql/contrib/cube.sql -share/postgresql/contrib/dblink.sql -share/postgresql/contrib/dbsize.sql -share/postgresql/contrib/earthdistance.sql -share/postgresql/contrib/fti.sql -share/postgresql/contrib/fuzzystrmatch.sql -share/postgresql/contrib/insert_username.sql -share/postgresql/contrib/int_aggregate.sql -share/postgresql/contrib/isbn_issn.sql -share/postgresql/contrib/lo.sql -share/postgresql/contrib/lo_drop.sql -share/postgresql/contrib/lo_test.sql -share/postgresql/contrib/ltree.sql -share/postgresql/contrib/master.sql -share/postgresql/contrib/misc_utils.sql -share/postgresql/contrib/moddatetime.sql -share/postgresql/contrib/noup.sql -share/postgresql/contrib/pgcrypto.sql -share/postgresql/contrib/pgstattuple.sql -share/postgresql/contrib/refint.sql -share/postgresql/contrib/rtree_gist.sql -share/postgresql/contrib/seg.sql -share/postgresql/contrib/slave.sql -share/postgresql/contrib/string_io.sql -share/postgresql/contrib/tablefunc.sql -share/postgresql/contrib/timetravel.sql -share/postgresql/contrib/tsearch.sql -share/postgresql/contrib/user_locks.sql -@dirrmtry share/postgresql/contrib -@dirrmtry share/postgresql -@dirrmtry %%DOCSDIR%%/contrib -@dirrmtry %%DOCSDIR%% -@dirrmtry lib/postgresql diff --git a/databases/postgresql73-server/pkg-plist-plperl b/databases/postgresql73-server/pkg-plist-plperl deleted file mode 100644 index c84ea2e6d16c..000000000000 --- a/databases/postgresql73-server/pkg-plist-plperl +++ /dev/null @@ -1,4 +0,0 @@ -%%DOCSDIR%%/README-plperl -lib/postgresql/plperl.so -@dirrmtry lib/postgresql -@dirrmtry %%DOCSDIR%% diff --git a/databases/postgresql73-server/pkg-plist-plpython b/databases/postgresql73-server/pkg-plist-plpython deleted file mode 100644 index d3c29953b6b5..000000000000 --- a/databases/postgresql73-server/pkg-plist-plpython +++ /dev/null @@ -1,4 +0,0 @@ -%%DOCSDIR%%/README-plpython -lib/postgresql/plpython.so -@dirrmtry lib/postgresql -@dirrmtry %%DOCSDIR%% diff --git a/databases/postgresql73-server/pkg-plist-pltcl b/databases/postgresql73-server/pkg-plist-pltcl deleted file mode 100644 index 47036c2a4e2a..000000000000 --- a/databases/postgresql73-server/pkg-plist-pltcl +++ /dev/null @@ -1,9 +0,0 @@ -%%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so -@dirrmtry lib/postgresql -bin/pltcl_loadmod -bin/pltcl_delmod -bin/pltcl_listmod -share/postgresql/unknown.pltcl -@dirrmtry share/postgresql -@dirrmtry %%DOCSDIR%% diff --git a/databases/postgresql73-server/pkg-plist-server b/databases/postgresql73-server/pkg-plist-server deleted file mode 100644 index 0b0bd241ac2d..000000000000 --- a/databases/postgresql73-server/pkg-plist-server +++ /dev/null @@ -1,85 +0,0 @@ -bin/initdb -bin/initlocation -bin/ipcclean -bin/pg_controldata -bin/pg_ctl -bin/pg_id -bin/pg_resetxlog -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -lib/postgresql/ascii_and_mic.so -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/utf8_and_ascii.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_tcvn.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win1250.so -lib/postgresql/utf8_and_win1256.so -lib/postgresql/utf8_and_win874.so -lib/postgresql/plpgsql.so -%%DOCSDIR%%/README-server -@dirrmtry %%DOCSDIR%% -share/postgresql/postgres.bki -share/postgresql/postgres.description -share/postgresql/pg_hba.conf.sample -share/postgresql/pg_ident.conf.sample -share/postgresql/postgresql.conf.sample -share/postgresql/conversion_create.sql -%%GETTEXT%%share/locale/cs/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/de/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/es/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/es/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/fr/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/hr/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/hu/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/hu/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/hu/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/ru/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/sv/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/tr/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_controldata.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo -%%GETTEXT%%share/locale/zh_CN/LC_MESSAGES/postgres.mo -%%GETTEXT%%share/locale/zh_TW/LC_MESSAGES/postgres.mo -@unexec if cmp -s ~pgsql/.profile %D/share/postgresql/dot.profile.dist; then rm -f ~pgsql/.profile; fi -@unexec if cmp -s ~pgsql/.cshrc %D/share/postgresql/dot.cshrc.dist; then rm -f ~pgsql/.cshrc; fi -@unexec [ -f ~pgsql/dot.profile.dist ] && rm ~pgsql/dot.profile.dist -@unexec [ -f ~pgsql/dot.cshrc.dist ] && rm ~pgsql/dot.cshrc.dist -share/postgresql/dot.profile.dist -share/postgresql/dot.cshrc.dist -@exec [ -f %D/share/postgresql/dot.profile.dist ] && cp %D/share/postgresql/dot.profile.dist ~pgsql/. -@exec [ -f %D/share/postgresql/dot.cshrc.dist ] && cp %D/share/postgresql/dot.cshrc.dist ~pgsql/. -@exec [ -f ~pgsql/.profile ] || (cp %D/share/postgresql/dot.profile.dist ~pgsql/.profile && chown pgsql:pgsql ~pgsql/.profile) -@exec [ -f ~pgsql/.cshrc ] || (cp %D/share/postgresql/dot.cshrc.dist ~pgsql/.cshrc && chown pgsql:pgsql ~pgsql/.cshrc) -@unexec echo "Warning: If you will *NOT* use this package anymore, please remove the pgsql user manually." -@dirrmtry share/postgresql -@dirrmtry etc/periodic/daily -@dirrmtry etc/periodic -@dirrmtry lib/postgresql -@dirrmtry pgsql |