diff options
author | 2003-05-15 21:45:53 +0000 | |
---|---|---|
committer | 2003-05-15 21:45:53 +0000 | |
commit | b7a582de9bbbdaa3925b5160eb418aad82c8ed55 (patch) | |
tree | 0d3f02607db1879064a056147ee378f410b641bb /dev-db/postgresql/files | |
parent | cleanup (diff) | |
download | historical-b7a582de9bbbdaa3925b5160eb418aad82c8ed55.tar.gz historical-b7a582de9bbbdaa3925b5160eb418aad82c8ed55.tar.bz2 historical-b7a582de9bbbdaa3925b5160eb418aad82c8ed55.zip |
cleanup
Diffstat (limited to 'dev-db/postgresql/files')
26 files changed, 0 insertions, 499 deletions
diff --git a/dev-db/postgresql/files/7.1.3/postgresql b/dev-db/postgresql/files/7.1.3/postgresql deleted file mode 100644 index a384c47a5354..000000000000 --- a/dev-db/postgresql/files/7.1.3/postgresql +++ /dev/null @@ -1,35 +0,0 @@ -#!/sbin/runscript - -PREFIX="/usr" -PGDATA="/var/lib/postgresql/data" -PGUSER="postgres" -PATH="/bin:/usr/bin" -DAEMON="$PREFIX/bin/pg_ctl" - -opts="start stop restart status" - -depend() { - need net -} - -start() { - ebegin "Starting PostgreSQL" - su - $PGUSER -c "$DAEMON start -D '$PGDATA' -s -o -i" | logger 1>&2 & - eend $? -} - -stop() { - ebegin "Stopping PostgreSQL" - su - $PGUSER -c "$DAEMON stop -D '$PGDATA' -s -m fast" - eend $? -} - -restart() { - ebegin "Restarting PostgreSQL" - su - $PGUSER -c "$DAEMON restart -D '$PGDATA' -s -m fast" & - eend $? -} - -status() { - su - $PGUSER -c "$DAEMON status -D '$PGDATA'" -} diff --git a/dev-db/postgresql/files/7.2.1/postgresql b/dev-db/postgresql/files/7.2.1/postgresql deleted file mode 100644 index d2c0d82e1e09..000000000000 --- a/dev-db/postgresql/files/7.2.1/postgresql +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/dev-db/mysql/files/mysql.rc6,v 1.1 2002/01/06 00:53:24 woodchip Exp - -depend() { - need net -} - -start() { - ebegin "Starting postgres" - start-stop-daemon --start --quiet --background --chuid postgres --exec \ - /usr/bin/postmaster -- -D/var/lib/postgresql/data -N 1024 -B 2048 - eend $? -} - -stop () { - ebegin "Stopping postgres" - start-stop-daemon --stop --quiet --pidfile=/var/lib/postgresql/data/postmaster.pid - eend $? -} diff --git a/dev-db/postgresql/files/7.2.2/postgresql b/dev-db/postgresql/files/7.2.2/postgresql deleted file mode 100644 index d2c0d82e1e09..000000000000 --- a/dev-db/postgresql/files/7.2.2/postgresql +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/dev-db/mysql/files/mysql.rc6,v 1.1 2002/01/06 00:53:24 woodchip Exp - -depend() { - need net -} - -start() { - ebegin "Starting postgres" - start-stop-daemon --start --quiet --background --chuid postgres --exec \ - /usr/bin/postmaster -- -D/var/lib/postgresql/data -N 1024 -B 2048 - eend $? -} - -stop () { - ebegin "Stopping postgres" - start-stop-daemon --stop --quiet --pidfile=/var/lib/postgresql/data/postmaster.pid - eend $? -} diff --git a/dev-db/postgresql/files/7.2.3/postgresql b/dev-db/postgresql/files/7.2.3/postgresql deleted file mode 100644 index de14f1c33b15..000000000000 --- a/dev-db/postgresql/files/7.2.3/postgresql +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/dev-db/postgresql/files/postgresql.rc6,v 1.1 2002/01/06 00:53:24 woodchip Exp - -depend() { - need net -} - -start() { - ebegin "Starting postgres" - su - $PGUSER -c "/usr/bin/pg_ctl start -D '$PGDATA' -s -l '$PGLOG' -o '$PGOPTS'" - eend $? -} - -stop () { - ebegin "Stopping postgres" - su - $PGUSER -c "/usr/bin/pg_ctl stop -D '$PGDATA' -s -m fast" - eend $? -} - -svc_restart () { - ebegin "Restarting postgres" - su - $PGUSER -c "/usr/bin/pg_ctl restart -D '$PGDATA' -s -m fast -l '$PGLOG' -o '$PGOPTS'" - eend $? -} - diff --git a/dev-db/postgresql/files/7.2/postgresql b/dev-db/postgresql/files/7.2/postgresql deleted file mode 100644 index d2c0d82e1e09..000000000000 --- a/dev-db/postgresql/files/7.2/postgresql +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/dev-db/mysql/files/mysql.rc6,v 1.1 2002/01/06 00:53:24 woodchip Exp - -depend() { - need net -} - -start() { - ebegin "Starting postgres" - start-stop-daemon --start --quiet --background --chuid postgres --exec \ - /usr/bin/postmaster -- -D/var/lib/postgresql/data -N 1024 -B 2048 - eend $? -} - -stop () { - ebegin "Stopping postgres" - start-stop-daemon --stop --quiet --pidfile=/var/lib/postgresql/data/postmaster.pid - eend $? -} diff --git a/dev-db/postgresql/files/7.3.1/postgresql b/dev-db/postgresql/files/7.3.1/postgresql deleted file mode 100644 index de14f1c33b15..000000000000 --- a/dev-db/postgresql/files/7.3.1/postgresql +++ /dev/null @@ -1,27 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# /space/gentoo/cvsroot/gentoo-x86/dev-db/postgresql/files/postgresql.rc6,v 1.1 2002/01/06 00:53:24 woodchip Exp - -depend() { - need net -} - -start() { - ebegin "Starting postgres" - su - $PGUSER -c "/usr/bin/pg_ctl start -D '$PGDATA' -s -l '$PGLOG' -o '$PGOPTS'" - eend $? -} - -stop () { - ebegin "Stopping postgres" - su - $PGUSER -c "/usr/bin/pg_ctl stop -D '$PGDATA' -s -m fast" - eend $? -} - -svc_restart () { - ebegin "Restarting postgres" - su - $PGUSER -c "/usr/bin/pg_ctl restart -D '$PGDATA' -s -m fast -l '$PGLOG' -o '$PGOPTS'" - eend $? -} - diff --git a/dev-db/postgresql/files/digest-postgresql-7.2-r2 b/dev-db/postgresql/files/digest-postgresql-7.2-r2 deleted file mode 100644 index c0daa65f8ba7..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 4174777cd91f3cc96f91efb2e4e1bc7c postgresql-7.2.tar.gz 9180168 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2-r3 b/dev-db/postgresql/files/digest-postgresql-7.2-r3 deleted file mode 100644 index c0daa65f8ba7..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2-r3 +++ /dev/null @@ -1 +0,0 @@ -MD5 4174777cd91f3cc96f91efb2e4e1bc7c postgresql-7.2.tar.gz 9180168 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.1 b/dev-db/postgresql/files/digest-postgresql-7.2.1 deleted file mode 100644 index 456643406fd4..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 d075e9c49135899645dff57bc58d6233 postgresql-7.2.1.tar.gz 9237680 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.1-r1 b/dev-db/postgresql/files/digest-postgresql-7.2.1-r1 deleted file mode 100644 index 456643406fd4..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.1-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 d075e9c49135899645dff57bc58d6233 postgresql-7.2.1.tar.gz 9237680 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.1-r2 b/dev-db/postgresql/files/digest-postgresql-7.2.1-r2 deleted file mode 100644 index 456643406fd4..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.1-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 d075e9c49135899645dff57bc58d6233 postgresql-7.2.1.tar.gz 9237680 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.2 b/dev-db/postgresql/files/digest-postgresql-7.2.2 deleted file mode 100644 index 625009b2bc41..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 853bf330837b50a6c6e3edf540ad1792 postgresql-7.2.2.tar.gz 9239158 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.3 b/dev-db/postgresql/files/digest-postgresql-7.2.3 deleted file mode 100644 index aad92780bc2a..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 cf665c93a08a60e4a99db3a6dfe7ba10 postgresql-7.2.3.tar.gz 9244039 diff --git a/dev-db/postgresql/files/digest-postgresql-7.2.3-r1 b/dev-db/postgresql/files/digest-postgresql-7.2.3-r1 deleted file mode 100644 index aad92780bc2a..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.2.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 cf665c93a08a60e4a99db3a6dfe7ba10 postgresql-7.2.3.tar.gz 9244039 diff --git a/dev-db/postgresql/files/digest-postgresql-7.3.1 b/dev-db/postgresql/files/digest-postgresql-7.3.1 deleted file mode 100644 index 9c133a42d2ab..000000000000 --- a/dev-db/postgresql/files/digest-postgresql-7.3.1 +++ /dev/null @@ -1 +0,0 @@ -MD5 924b21c3114f595834e2456277f1bffb postgresql-7.3.1.tar.gz 11171551 diff --git a/dev-db/postgresql/files/postgresql-7.1-perl5-GNUmakefile-gentoo.diff b/dev-db/postgresql/files/postgresql-7.1-perl5-GNUmakefile-gentoo.diff deleted file mode 100644 index d1483d2f3620..000000000000 --- a/dev-db/postgresql/files/postgresql-7.1-perl5-GNUmakefile-gentoo.diff +++ /dev/null @@ -1,29 +0,0 @@ ---- postgresql-7.1/src/interfaces/perl5/GNUmakefile.orig Tue Apr 17 21:28:21 2001 -+++ postgresql-7.1/src/interfaces/perl5/GNUmakefile Tue Apr 17 21:28:27 2001 -@@ -36,20 +36,12 @@ - - install: Makefile - $(MAKE) -f Makefile clean -- POSTGRES_LIB="$(libdir)" \ -- POSTGRES_INCLUDE="$(includedir)" \ -- $(PERL) $(srcdir)/Makefile.PL -- $(MAKE) -f Makefile all -- -@if [ -w "`$(MAKE) --quiet -f Makefile echo-installdir`" ]; then \ -- $(MAKE) -f Makefile install; \ -- $(MAKE) clean; \ -- else \ -- echo "*****" ;\ -- echo "* Skipping the installation of the Perl module for lack of permissions."; \ -- echo "* To install it, change to the directory "`pwd`","; \ -- echo "* become the appropriate user, and do \`$(MAKE) install'."; \ -- echo "*****"; \ -- fi -+ POSTGRES_LIB="$(DESTDIR)$(libdir)" \ -+ POSTGRES_INCLUDE="$(DESTDIR)$(includedir)" \ -+ $(PERL) $(srcdir)/Makefile.PL -+ $(MAKE) -f Makefile all; \ -+ $(MAKE) PREFIX=$(DESTDIR)$(prefix) INSTALLMAN3DIR=$(DESTDIR)$(mandir)/man3 -f Makefile install; \ -+ $(MAKE) clean; - - - uninstall: diff --git a/dev-db/postgresql/files/postgresql-7.1.3-dyn-libperl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.1.3-dyn-libperl-gentoo.diff deleted file mode 100644 index 782800f2c866..000000000000 --- a/dev-db/postgresql/files/postgresql-7.1.3-dyn-libperl-gentoo.diff +++ /dev/null @@ -1,36 +0,0 @@ ---- postgresql-7.1.3/src/pl/plperl/Makefile.PL_orig 2002-01-31 02:34:59.000000000 +0100 -+++ postgresql-7.1.3/src/pl/plperl/Makefile.PL 2002-01-31 02:35:11.000000000 +0100 -@@ -4,33 +4,6 @@ - use Config; - - # --# Can't build a shared plperl unless libperl is shared too. --# (Actually, it would be enough if code in libperl.a is compiled --# to be position-independent, but that is hard to check for and --# seems pretty unlikely anyway.) --# --if ($Config{'useshrplib'} ne 'true') { -- open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; -- print OUT <<'EndOfMakefile'; --# Dummy Makefile for use when we can't build plperl -- --all install: -- @echo "*****"; \ -- echo "* Cannot build PL/Perl because libperl is not a shared library." ; \ -- echo "* Skipped."; \ -- echo "*****" -- -- --clean realclean: -- rm -f Makefile -- --EndOfMakefile -- close(OUT); -- exit(0); --} -- -- --# - # get the location of the Opcode module - # - my $opcode = ''; diff --git a/dev-db/postgresql/files/postgresql-7.1.3-perl5-GNUmakefile-gentoo.diff b/dev-db/postgresql/files/postgresql-7.1.3-perl5-GNUmakefile-gentoo.diff deleted file mode 100644 index d1483d2f3620..000000000000 --- a/dev-db/postgresql/files/postgresql-7.1.3-perl5-GNUmakefile-gentoo.diff +++ /dev/null @@ -1,29 +0,0 @@ ---- postgresql-7.1/src/interfaces/perl5/GNUmakefile.orig Tue Apr 17 21:28:21 2001 -+++ postgresql-7.1/src/interfaces/perl5/GNUmakefile Tue Apr 17 21:28:27 2001 -@@ -36,20 +36,12 @@ - - install: Makefile - $(MAKE) -f Makefile clean -- POSTGRES_LIB="$(libdir)" \ -- POSTGRES_INCLUDE="$(includedir)" \ -- $(PERL) $(srcdir)/Makefile.PL -- $(MAKE) -f Makefile all -- -@if [ -w "`$(MAKE) --quiet -f Makefile echo-installdir`" ]; then \ -- $(MAKE) -f Makefile install; \ -- $(MAKE) clean; \ -- else \ -- echo "*****" ;\ -- echo "* Skipping the installation of the Perl module for lack of permissions."; \ -- echo "* To install it, change to the directory "`pwd`","; \ -- echo "* become the appropriate user, and do \`$(MAKE) install'."; \ -- echo "*****"; \ -- fi -+ POSTGRES_LIB="$(DESTDIR)$(libdir)" \ -+ POSTGRES_INCLUDE="$(DESTDIR)$(includedir)" \ -+ $(PERL) $(srcdir)/Makefile.PL -+ $(MAKE) -f Makefile all; \ -+ $(MAKE) PREFIX=$(DESTDIR)$(prefix) INSTALLMAN3DIR=$(DESTDIR)$(mandir)/man3 -f Makefile install; \ -+ $(MAKE) clean; - - - uninstall: diff --git a/dev-db/postgresql/files/postgresql-7.1.3-python21-configure-gentoo.diff b/dev-db/postgresql/files/postgresql-7.1.3-python21-configure-gentoo.diff deleted file mode 100644 index f3376a4a1938..000000000000 --- a/dev-db/postgresql/files/postgresql-7.1.3-python21-configure-gentoo.diff +++ /dev/null @@ -1,20 +0,0 @@ ---- postgresql-7.1.3/configure_orig 2002-01-31 13:51:50.000000000 +0100 -+++ postgresql-7.1.3/configure 2002-01-31 13:52:01.000000000 +0100 -@@ -1834,7 +1834,7 @@ - yes) - echo "$ac_t""yes" 1>&6 - # Extract the first word of "python", so it can be a program name with args. --set dummy python; ac_word=$2 -+set dummy python2.1; ac_word=$2 - echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 - echo "configure:1840: checking for $ac_word" >&5 - if eval "test \"`echo '$''{'ac_cv_prog_PYTHON'+set}'`\" = set"; then -@@ -1848,7 +1848,7 @@ - for ac_dir in $ac_dummy; do - test -z "$ac_dir" && ac_dir=. - if test -f $ac_dir/$ac_word; then -- ac_cv_prog_PYTHON="python" -+ ac_cv_prog_PYTHON="python2.1" - break - fi - done diff --git a/dev-db/postgresql/files/postgresql-7.1.3-python21-makefiles-gentoo.diff b/dev-db/postgresql/files/postgresql-7.1.3-python21-makefiles-gentoo.diff deleted file mode 100644 index 86bc53454003..000000000000 --- a/dev-db/postgresql/files/postgresql-7.1.3-python21-makefiles-gentoo.diff +++ /dev/null @@ -1,44 +0,0 @@ ---- postgresql-7.1.3/src/interfaces/python/Makefile.pre.in_orig 2002-01-31 14:19:30.000000000 +0100 -+++ postgresql-7.1.3/src/interfaces/python/Makefile.pre.in 2002-01-31 14:19:55.000000000 +0100 -@@ -89,10 +89,10 @@ - # === Variables that you may want to customize (rarely) === - - # (Static) build target --TARGET= python -+TARGET= python2.1 - - # Installed python binary (used only by boot target) --PYTHON= python -+PYTHON= python2.1 - - # Add more -I and -D options here - CFLAGS= $(OPT) -I$(INCLUDEPY) -I$(EXECINCLUDEPY) $(DEFS) ---- postgresql-7.1.3/src/interfaces/python/mkdefines_orig 2000-10-02 05:27:27.000000000 +0200 -+++ postgresql-7.1.3/src/interfaces/python/mkdefines 2002-01-31 14:20:15.000000000 +0100 -@@ -1,4 +1,4 @@ --#! /usr/bin/env python -+#! /usr/bin/env python2.1 - - import string - ---- postgresql-7.1.3/src/interfaces/python/PyGreSQL.spec_orig 2002-01-31 14:20:36.000000000 +0100 -+++ postgresql-7.1.3/src/interfaces/python/PyGreSQL.spec 2002-01-31 14:21:26.000000000 +0100 -@@ -37,8 +37,8 @@ - mkdir -p $RPM_BUILD_ROOT/usr/lib/python%{pythonversion}/lib-dynload - cc -fpic -shared -o $RPM_BUILD_ROOT/usr/lib/python%{pythonversion}/lib-dynload/_pg.so -I/usr/include/pgsql/ -I/usr/include/python1.5 pgmodule.c -lpq - ## import fails, since _pg is not yet installed --python -c 'import pg' || true --python -c 'import pgdb' || true -+python2.1 -c 'import pg' || true -+python2.1 -c 'import pgdb' || true - - %install - cp *.py *.pyc $RPM_BUILD_ROOT/usr/lib/python%{pythonversion}/ ---- postgresql-7.1.3/src/interfaces/python/setup.py_orig 2002-01-31 14:20:41.000000000 +0100 -+++ postgresql-7.1.3/src/interfaces/python/setup.py 2002-01-31 14:21:01.000000000 +0100 -@@ -1,4 +1,4 @@ --#!/usr/bin/env python -+#!/usr/bin/env python2.1 - - # Setup script for the PyGreSQL version 3 - # created 2000/04 Mark Alexander <mwa@gate.net> diff --git a/dev-db/postgresql/files/postgresql-7.2-dyn-libperl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2-dyn-libperl-gentoo.diff deleted file mode 100644 index 6b6b57a45051..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2-dyn-libperl-gentoo.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- postgresql-7.2/src/pl/plperl/Makefile.PL_orig 2002-02-15 16:59:00.000000000 +0100 -+++ postgresql-7.2/src/pl/plperl/Makefile.PL 2002-02-15 16:59:23.000000000 +0100 -@@ -3,36 +3,6 @@ - use DynaLoader; - use Config; - --# On some platforms you can't build plperl unless libperl is a shared --# library. (Actually, it would be enough if code in libperl.a is --# compiled to be position-independent, but that is hard to check for --# and seems pretty unlikely anyway.) On some platforms it doesn't --# matter and they can pass in the --force flag to build anyway. --# (Having a shared libperl is still a lot better for efficiency, --# though.) -- --if ($Config{'useshrplib'} ne 'true' && $ARGV[0] ne '--force') { -- open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; -- print OUT <<'EndOfMakefile'; --# Dummy Makefile for use when we can't build plperl -- --all: -- @echo ""; \ -- echo "*** Cannot build PL/Perl because libperl is not a shared library." ; \ -- echo "*** You might have to rebuild your Perl installation. Refer to"; \ -- echo "*** the documentation for details."; \ -- echo "" -- --install: -- --clean realclean: -- rm -f Makefile -- --EndOfMakefile -- close(OUT); -- exit(0); --} -- - my $ldopts=ldopts(); - $ldopts=~s/$Config{ccdlflags}//; - diff --git a/dev-db/postgresql/files/postgresql-7.2.1-dyn-libperl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2.1-dyn-libperl-gentoo.diff deleted file mode 100644 index 6b6b57a45051..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2.1-dyn-libperl-gentoo.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- postgresql-7.2/src/pl/plperl/Makefile.PL_orig 2002-02-15 16:59:00.000000000 +0100 -+++ postgresql-7.2/src/pl/plperl/Makefile.PL 2002-02-15 16:59:23.000000000 +0100 -@@ -3,36 +3,6 @@ - use DynaLoader; - use Config; - --# On some platforms you can't build plperl unless libperl is a shared --# library. (Actually, it would be enough if code in libperl.a is --# compiled to be position-independent, but that is hard to check for --# and seems pretty unlikely anyway.) On some platforms it doesn't --# matter and they can pass in the --force flag to build anyway. --# (Having a shared libperl is still a lot better for efficiency, --# though.) -- --if ($Config{'useshrplib'} ne 'true' && $ARGV[0] ne '--force') { -- open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; -- print OUT <<'EndOfMakefile'; --# Dummy Makefile for use when we can't build plperl -- --all: -- @echo ""; \ -- echo "*** Cannot build PL/Perl because libperl is not a shared library." ; \ -- echo "*** You might have to rebuild your Perl installation. Refer to"; \ -- echo "*** the documentation for details."; \ -- echo "" -- --install: -- --clean realclean: -- rm -f Makefile -- --EndOfMakefile -- close(OUT); -- exit(0); --} -- - my $ldopts=ldopts(); - $ldopts=~s/$Config{ccdlflags}//; - diff --git a/dev-db/postgresql/files/postgresql-7.2.2-dyn-libperl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2.2-dyn-libperl-gentoo.diff deleted file mode 100644 index 6b6b57a45051..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2.2-dyn-libperl-gentoo.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- postgresql-7.2/src/pl/plperl/Makefile.PL_orig 2002-02-15 16:59:00.000000000 +0100 -+++ postgresql-7.2/src/pl/plperl/Makefile.PL 2002-02-15 16:59:23.000000000 +0100 -@@ -3,36 +3,6 @@ - use DynaLoader; - use Config; - --# On some platforms you can't build plperl unless libperl is a shared --# library. (Actually, it would be enough if code in libperl.a is --# compiled to be position-independent, but that is hard to check for --# and seems pretty unlikely anyway.) On some platforms it doesn't --# matter and they can pass in the --force flag to build anyway. --# (Having a shared libperl is still a lot better for efficiency, --# though.) -- --if ($Config{'useshrplib'} ne 'true' && $ARGV[0] ne '--force') { -- open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; -- print OUT <<'EndOfMakefile'; --# Dummy Makefile for use when we can't build plperl -- --all: -- @echo ""; \ -- echo "*** Cannot build PL/Perl because libperl is not a shared library." ; \ -- echo "*** You might have to rebuild your Perl installation. Refer to"; \ -- echo "*** the documentation for details."; \ -- echo "" -- --install: -- --clean realclean: -- rm -f Makefile -- --EndOfMakefile -- close(OUT); -- exit(0); --} -- - my $ldopts=ldopts(); - $ldopts=~s/$Config{ccdlflags}//; - diff --git a/dev-db/postgresql/files/postgresql-7.2.2-perl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2.2-perl-gentoo.diff deleted file mode 100644 index 3c36f296aab8..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2.2-perl-gentoo.diff +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr postgresql-7.2.2-orig/work/postgresql-7.2.2/src/interfaces/perl5/GNUmakefile postgresql-7.2.2/work/postgresql-7.2.2/src/interfaces/perl5/GNUmakefile ---- src/interfaces/perl5/GNUmakefile Sun Aug 26 18:28:04 2001 -+++ src/interfaces/perl5/GNUmakefile Tue Sep 24 17:10:32 2002 -@@ -38,7 +38,7 @@ - LIBS="-L$$abs_libpq_builddir -lpq" \ - INSTALLSITEARCH='$$(DESTDIR)$(perl_installsitearch)' \ - INSTALLSITELIB='$$(DESTDIR)$(perl_installsitelib)' \ -- INSTALLMAN3DIR='$$(DESTDIR)$(perl_installman3dir)' \ -+ INSTALLSITEMAN3DIR='$$(DESTDIR)$(perl_installman3dir)' \ - MAKEFILE="$$abs_builddir/Makefile" - - .PHONY: libpq-all diff --git a/dev-db/postgresql/files/postgresql-7.2.3-dyn-libperl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2.3-dyn-libperl-gentoo.diff deleted file mode 100644 index 6b6b57a45051..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2.3-dyn-libperl-gentoo.diff +++ /dev/null @@ -1,39 +0,0 @@ ---- postgresql-7.2/src/pl/plperl/Makefile.PL_orig 2002-02-15 16:59:00.000000000 +0100 -+++ postgresql-7.2/src/pl/plperl/Makefile.PL 2002-02-15 16:59:23.000000000 +0100 -@@ -3,36 +3,6 @@ - use DynaLoader; - use Config; - --# On some platforms you can't build plperl unless libperl is a shared --# library. (Actually, it would be enough if code in libperl.a is --# compiled to be position-independent, but that is hard to check for --# and seems pretty unlikely anyway.) On some platforms it doesn't --# matter and they can pass in the --force flag to build anyway. --# (Having a shared libperl is still a lot better for efficiency, --# though.) -- --if ($Config{'useshrplib'} ne 'true' && $ARGV[0] ne '--force') { -- open(OUT, ">Makefile") or die "Can't write Makefile: $!\n"; -- print OUT <<'EndOfMakefile'; --# Dummy Makefile for use when we can't build plperl -- --all: -- @echo ""; \ -- echo "*** Cannot build PL/Perl because libperl is not a shared library." ; \ -- echo "*** You might have to rebuild your Perl installation. Refer to"; \ -- echo "*** the documentation for details."; \ -- echo "" -- --install: -- --clean realclean: -- rm -f Makefile -- --EndOfMakefile -- close(OUT); -- exit(0); --} -- - my $ldopts=ldopts(); - $ldopts=~s/$Config{ccdlflags}//; - diff --git a/dev-db/postgresql/files/postgresql-7.2.3-perl-gentoo.diff b/dev-db/postgresql/files/postgresql-7.2.3-perl-gentoo.diff deleted file mode 100644 index 3c36f296aab8..000000000000 --- a/dev-db/postgresql/files/postgresql-7.2.3-perl-gentoo.diff +++ /dev/null @@ -1,12 +0,0 @@ -diff -uNr postgresql-7.2.2-orig/work/postgresql-7.2.2/src/interfaces/perl5/GNUmakefile postgresql-7.2.2/work/postgresql-7.2.2/src/interfaces/perl5/GNUmakefile ---- src/interfaces/perl5/GNUmakefile Sun Aug 26 18:28:04 2001 -+++ src/interfaces/perl5/GNUmakefile Tue Sep 24 17:10:32 2002 -@@ -38,7 +38,7 @@ - LIBS="-L$$abs_libpq_builddir -lpq" \ - INSTALLSITEARCH='$$(DESTDIR)$(perl_installsitearch)' \ - INSTALLSITELIB='$$(DESTDIR)$(perl_installsitelib)' \ -- INSTALLMAN3DIR='$$(DESTDIR)$(perl_installman3dir)' \ -+ INSTALLSITEMAN3DIR='$$(DESTDIR)$(perl_installman3dir)' \ - MAKEFILE="$$abs_builddir/Makefile" - - .PHONY: libpq-all |