diff options
-rw-r--r-- | system/pgadmin3/README | 17 | ||||
-rw-r--r-- | system/pgadmin3/doinst.sh | 4 | ||||
-rw-r--r-- | system/pgadmin3/pgadmin3.SlackBuild | 101 | ||||
-rw-r--r-- | system/pgadmin3/pgadmin3.info | 10 | ||||
-rw-r--r-- | system/pgadmin3/slack-desc | 19 |
5 files changed, 0 insertions, 151 deletions
diff --git a/system/pgadmin3/README b/system/pgadmin3/README deleted file mode 100644 index 9d72a74a55c1..000000000000 --- a/system/pgadmin3/README +++ /dev/null @@ -1,17 +0,0 @@ -pgAdmin III is the most popular and feature rich Open Source -administration and development platform for PostgreSQL, the most -advanced Open Source database in the world. The application may be used -on Linux, FreeBSD Solaris, Mac OSX and Windows platforms to manage -PostgreSQL 7.3 and above running on any platform, as well as commercial -versions of PostgreSQL such as Mammoth PostgreSQL, EnterpriseDB Postgres -Plus Advanced Server, Greenplum Database and Bizgres. - -pgAdmin III is designed to answer the needs of all users, from writing -simple SQL queries to developing complex databases. The graphical -interface supports all PostgreSQL features and makes administration -easy. The application also includes a syntax highlighting SQL editor, a -server-side code editor, an SQL/batch/shell job scheduling agent, -support for the Slony-I replication engine and much more. Server -connection may be made using TCP/IP or Unix Domain Sockets (on *nix -platforms), and may be SSL encrypted for security. No additional drivers -are required to communicate with the database server. diff --git a/system/pgadmin3/doinst.sh b/system/pgadmin3/doinst.sh deleted file mode 100644 index 4e8ba7071dea..000000000000 --- a/system/pgadmin3/doinst.sh +++ /dev/null @@ -1,4 +0,0 @@ -if [ -x /usr/bin/update-desktop-database ]; then - /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 -fi - diff --git a/system/pgadmin3/pgadmin3.SlackBuild b/system/pgadmin3/pgadmin3.SlackBuild deleted file mode 100644 index 5f2f19a019b4..000000000000 --- a/system/pgadmin3/pgadmin3.SlackBuild +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -# Slackware build script for pgAdmin -# Written by Iskar Enev (<iskar.enev[@]gmail.com>) -# Modified by slakmagik <slakmagik@gmail.com> -# Modified by Mario Preksavec <mario@slackware.hr> - -cd $(dirname $0) ; CWD=$(pwd) - -PRGNAM=pgadmin3 -VERSION=${VERSION:-1.22.1} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} -PKGTYPE=${PKGTYPE:-tgz} - -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi - -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. -if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then - echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" - exit 0 -fi - -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz -cd $PRGNAM-$VERSION -chown -R root:root . -find -L . \ - \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ - -o -perm 511 \) -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ - -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --build=$ARCH-slackware-linux - -make -make DESTDIR=$PKG install - -find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -# add the range of pgAdmin3 images - only one can be used in the desktop file -# but the default might not be the one people would want -mkdir -p $PKG/usr/share/pixmaps -cp -a pgadmin/include/images/pgAdmin3* $PKG/usr/share/pixmaps - -mkdir -p $PKG/usr/share/applications -sed '/^Icon=/s/pgadmin3/pixmaps/' \ - pkg/pgadmin3.desktop > $PKG/usr/share/applications/pgadmin3.desktop - -# as with so many packages, --docdir is present but ignored -mkdir -p $PKG/usr/doc -ln -s ../share/pgadmin3/docs $PKG/usr/doc/$PRGNAM-$VERSION -cp -a BUGS CHANGELOG DEVELOPERS INSTALL LICENSE README TODO $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/system/pgadmin3/pgadmin3.info b/system/pgadmin3/pgadmin3.info deleted file mode 100644 index a343ce71d753..000000000000 --- a/system/pgadmin3/pgadmin3.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="pgadmin3" -VERSION="1.22.1" -HOMEPAGE="https://www.pgadmin.org/" -DOWNLOAD="https://ftp.postgresql.org/pub/pgadmin/pgadmin3/v1.22.1/src/pgadmin3-1.22.1.tar.gz" -MD5SUM="fe56418e9efcd291f5c1f81708d005fe" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -REQUIRES="postgresql wxPython" -MAINTAINER="slakmagik" -EMAIL="slakmagik@gmail.com" diff --git a/system/pgadmin3/slack-desc b/system/pgadmin3/slack-desc deleted file mode 100644 index 050de331afd8..000000000000 --- a/system/pgadmin3/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. -# Line up the first '|' above the ':' following the base package name, and -# the '|' on the right side marks the last column you can put a character in. -# You must make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':' except on otherwise blank lines. - - |-----handy-ruler------------------------------------------------------| -pgadmin3: pgadmin3 (PostgreSQL design and management interface) -pgadmin3: -pgadmin3: pgAdmin III is the most popular and feature rich Open Source -pgadmin3: administration and development platform for PostgreSQL, the most -pgadmin3: advanced Open Source database in the world. -pgadmin3: -pgadmin3: -pgadmin3: -pgadmin3: -pgadmin3: -pgadmin3: |