aboutsummaryrefslogtreecommitdiffstats
path: root/testing/phppgadmin
diff options
context:
space:
mode:
Diffstat (limited to 'testing/phppgadmin')
-rw-r--r--testing/phppgadmin/APKBUILD68
-rw-r--r--testing/phppgadmin/phppgadmin.apache2.conf7
-rw-r--r--testing/phppgadmin/phppgadmin.post-install16
3 files changed, 0 insertions, 91 deletions
diff --git a/testing/phppgadmin/APKBUILD b/testing/phppgadmin/APKBUILD
deleted file mode 100644
index f6df49ad37..0000000000
--- a/testing/phppgadmin/APKBUILD
+++ /dev/null
@@ -1,68 +0,0 @@
-# Contributor: Matt Smith <mcs@darkregion.net>
-# Maintainer: Matt Smith <mcs@darkregion.net>
-pkgname=phppgadmin
-_pkgname=phpPgAdmin
-pkgver=5.0.2
-pkgrel=0
-pkgdesc="A Web-based PHP tool for administering PostgreSQL"
-url="http://phppgadmin.sourceforge.net/"
-arch="all"
-license="GPL"
-depends="php php-pgsql php-zlib php-ctype postgresql"
-depends_dev=
-makedepends="$depends_dev"
-install="$pkgname.post-install"
-subpackages="$pkgname-doc"
-source="http://downloads.sourceforge.net/phppgadmin/$_pkgname-$pkgver.tar.gz
- phppgadmin.apache2.conf
- "
-
-_builddir="$srcdir"/$_pkgname-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- return 0
-}
-
-package() {
- cd "$_builddir"
- mkdir -p "$pkgdir"/usr/share/webapps/$pkgname "$pkgdir"/etc/$pkgname \
- || return 1
-
- # copy phppgadmin
- cp -ra "$_builddir"/* "$pkgdir"/usr/share/webapps/$pkgname/ \
- || return 1
-
- # install the config
- install -m440 \
- "$pkgdir"/usr/share/webapps/$pkgname/conf/config.inc.php-dist \
- "$pkgdir"/etc/$pkgname/config.inc.php || return 1
- rm -rf "$pkgdir"/usr/share/webapps/$pkgname/conf/ || return 1
- ln -fs /etc/phppgadmin/ "$pkgdir"/usr/share/webapps/$pkgname/conf \
- || return 1
-
- # install the apache2 config
- install -Dm644 "$srcdir"/$pkgname.apache2.conf \
- "$pkgdir"/etc/apache2/conf.d/$pkgname.conf || return 1
-}
-
-doc() {
- mkdir -p "$subpkgdir"/usr/share/doc/$pkgname || return 1
- _docs="CREDITS DEVELOPERS FAQ HISTORY INSTALL LICENSE TODO \
- TRANSLATORS help"
- for _doc in $_docs; do
- mv "$pkgdir"/usr/share/webapps/$pkgname/$_doc \
- "$subpkgdir"/usr/share/doc/$pkgname/ || return 1
- done
-}
-
-md5sums="dfdbb5860847123413596292931a44f9 phpPgAdmin-5.0.2.tar.gz
-670eec89bbe794a50d36c80f02608708 phppgadmin.apache2.conf"
diff --git a/testing/phppgadmin/phppgadmin.apache2.conf b/testing/phppgadmin/phppgadmin.apache2.conf
deleted file mode 100644
index b69e01b22d..0000000000
--- a/testing/phppgadmin/phppgadmin.apache2.conf
+++ /dev/null
@@ -1,7 +0,0 @@
-Alias /phppgadmin "/usr/share/webapps/phppgadmin"
-<Directory "/usr/share/webapps/phppgadmin">
- AllowOverride All
- Options FollowSymlinks
- Order allow,deny
- Allow from all
-</Directory>
diff --git a/testing/phppgadmin/phppgadmin.post-install b/testing/phppgadmin/phppgadmin.post-install
deleted file mode 100644
index f9650a192a..0000000000
--- a/testing/phppgadmin/phppgadmin.post-install
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-echo "*" >&2
-echo "* phppgadmin has been installed to:" >&2
-echo "* /usr/share/webapps/phppgadmin" >&2
-echo "* phppgadmin config file has been installed to:" >&2
-echo "* /etc/phppgadmin/config.inc.php" >&2
-echo "* If you use apache2:" >&2
-echo "* 1) Change the ownership of the config directory:" >&2
-echo "* chown -R apache:apache /etc/phppgadmin" >&2
-echo "* 2) See if you need to modify the apache2 config:" >&2
-echo "* /etc/apache2/conf.d/phppgadmin.conf" >&2
-echo "* 3) Restart apache2 when done." >&2
-echo "*" >&2
-
-exit 0