2010-05-11 21:18:43 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## Slackware build script for PostgreSQL
|
2010-05-13 06:41:27 +08:00
|
|
|
## $Revision: 5548380e2466 $
|
|
|
|
## $Date: 2009/09/09 17:37:50 $
|
|
|
|
##
|
|
|
|
## Copyright 2007-2009 Adis Nezirovic <adis _at_ linux.org.ba>
|
2010-05-11 21:18:43 +08:00
|
|
|
## Licensed under GNU GPL v2
|
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
# Modified by the SlackBuilds.org Project
|
|
|
|
|
2010-05-11 21:18:43 +08:00
|
|
|
PRGNAM=postgresql
|
2010-05-13 06:41:27 +08:00
|
|
|
VERSION=8.4.2
|
2010-05-11 21:18:43 +08:00
|
|
|
ARCH=${ARCH:-i486}
|
2010-05-12 23:45:51 +08:00
|
|
|
BUILD=${BUILD:-1}
|
2010-05-12 01:46:35 +08:00
|
|
|
TAG=${TAG:-_SBo}
|
|
|
|
|
2010-05-12 23:45:51 +08:00
|
|
|
PG_UID=${PG_UID:-209}
|
|
|
|
PG_GID=${PG_GID:-209}
|
|
|
|
|
2010-05-12 01:46:35 +08:00
|
|
|
CWD=$(pwd)
|
2010-05-11 21:18:43 +08:00
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
# Bail out if user or group isn't valid on your system
|
|
|
|
# For slackbuilds.org, assigned postgres uid/gid are 209/209
|
2010-05-12 23:45:51 +08:00
|
|
|
# See http://slackbuilds.org/uid_gid.txt
|
2010-05-11 21:18:43 +08:00
|
|
|
# Other popular choice is 26/26
|
|
|
|
if ! grep ^postgres: /etc/group 2>&1 > /dev/null; then
|
2010-05-12 23:45:51 +08:00
|
|
|
echo " You must have a postgres group to run this script."
|
|
|
|
echo " # groupadd -g $PG_GID postgres"
|
2010-05-11 21:18:43 +08:00
|
|
|
exit 1
|
|
|
|
elif ! grep ^postgres: /etc/passwd 2>&1 > /dev/null; then
|
2010-05-12 23:45:51 +08:00
|
|
|
echo " You must have a postgres user to run this script."
|
|
|
|
echo " # useradd -u $PG_UID -g $PG_GID -d /var/lib/pgsql postgres"
|
2010-05-11 21:18:43 +08:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
2010-05-12 23:45:51 +08:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 21:18:43 +08:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
2010-05-12 23:45:51 +08:00
|
|
|
LIBDIRSUFFIX=""
|
2010-05-11 21:18:43 +08:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
2010-05-12 04:27:00 +08:00
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
2010-05-12 23:45:51 +08:00
|
|
|
LIBDIRSUFFIX="64"
|
2010-05-11 21:18:43 +08:00
|
|
|
fi
|
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
set -e # Exit on any and all errors
|
|
|
|
|
2010-05-11 21:18:43 +08:00
|
|
|
rm -rf $TMP/$PRGNAM-$VERSION $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
2010-05-12 04:27:00 +08:00
|
|
|
tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2
|
|
|
|
cd $PRGNAM-$VERSION
|
|
|
|
chown -R root:root .
|
|
|
|
chmod -R a-s,u+w,go+r-w .
|
2010-05-11 21:18:43 +08:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
2010-05-12 04:27:00 +08:00
|
|
|
--prefix=/usr \
|
2010-05-12 23:45:51 +08:00
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
2010-05-13 06:41:27 +08:00
|
|
|
--mandir=/usr/man \
|
|
|
|
--docdir=/usr/doc/$PRGNAM-$VERSION \
|
2010-05-12 04:27:00 +08:00
|
|
|
--with-openssl \
|
|
|
|
--with-tcl \
|
|
|
|
--with-perl \
|
|
|
|
--with-python \
|
|
|
|
--with-ldap \
|
|
|
|
--with-libxml \
|
2010-05-13 06:41:27 +08:00
|
|
|
--with-libxslt \
|
2010-05-12 04:27:00 +08:00
|
|
|
--enable-thread-safety \
|
|
|
|
--build=$ARCH-slackware-linux
|
|
|
|
|
|
|
|
make
|
2010-05-13 06:41:27 +08:00
|
|
|
make install-strip DESTDIR=$PKG
|
2010-05-11 21:18:43 +08:00
|
|
|
|
2010-05-12 01:46:35 +08:00
|
|
|
# adminpack extension for pgAdmin
|
2010-05-12 04:27:00 +08:00
|
|
|
cd contrib/adminpack
|
|
|
|
make
|
|
|
|
make install-strip DESTDIR=$PKG
|
|
|
|
cd $TMP/$PRGNAM-$VERSION
|
2010-05-11 21:18:43 +08:00
|
|
|
|
2010-05-12 01:46:35 +08:00
|
|
|
# Since version 8.3 tsearch2 is directly supported by PostgreSQL
|
|
|
|
# This contrib module is now a compatibility layer.
|
2010-05-13 06:41:27 +08:00
|
|
|
# You can enable it by with:
|
|
|
|
# TSEARCH2_COMPAT=yes ./postgresql.SlackBuild
|
|
|
|
if ! [ "${TSEARCH2_COMPAT:-no}" == "no" ]; then
|
2010-05-12 04:27:00 +08:00
|
|
|
cd contrib/tsearch2
|
|
|
|
make
|
|
|
|
make install-strip DESTDIR=$PKG
|
|
|
|
cd $TMP/$PRGNAM-$VERSION
|
2010-05-12 01:46:35 +08:00
|
|
|
fi
|
2010-05-11 21:18:43 +08:00
|
|
|
|
2010-05-12 23:45:51 +08:00
|
|
|
# Some business oriented applications use this extension
|
2010-05-12 04:27:00 +08:00
|
|
|
cd contrib/pgcrypto
|
|
|
|
make
|
|
|
|
make install-strip DESTDIR=$PKG
|
2010-05-11 21:18:43 +08:00
|
|
|
cd $TMP/$PRGNAM-$VERSION
|
|
|
|
|
2010-05-12 23:45:51 +08:00
|
|
|
( cd $PKG/usr/man || exit 1
|
|
|
|
find . -type f -exec gzip -9 {} \;
|
|
|
|
for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done
|
|
|
|
)
|
2010-05-11 21:18:43 +08:00
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
cp -a COPYRIGHT HISTORY README doc/* $PKG/usr/doc/$PRGNAM-$VERSION/
|
|
|
|
rm -rf $PKG/usr/doc/$PRGNAM-$VERSION/{man.tar.gz,man1,manl,man7,postgres.tar.gz}
|
2010-05-12 01:46:35 +08:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
2010-05-12 04:27:00 +08:00
|
|
|
cat $CWD/README.SBo > $PKG/usr/doc/$PRGNAM-$VERSION/README.SBo
|
2010-05-11 21:18:43 +08:00
|
|
|
|
|
|
|
# base database directory
|
|
|
|
# assumes you are using /var/lib/pgsql as a homedir for postgres user
|
|
|
|
mkdir -p $PKG/var/lib/pgsql/data
|
|
|
|
chown -R postgres:postgres $PKG/var/lib/pgsql
|
|
|
|
chmod 700 $PKG/var/lib/pgsql
|
|
|
|
# permissions for DATADIR should be u=rwx (0700)
|
|
|
|
chmod 700 $PKG/var/lib/pgsql/data
|
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
# Install init script
|
2010-05-11 21:18:43 +08:00
|
|
|
mkdir -p $PKG/etc/rc.d
|
|
|
|
cat $CWD/rc.postgresql.new > $PKG/etc/rc.d/rc.postgresql.new
|
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
# Install logrotate script
|
2010-05-11 21:18:43 +08:00
|
|
|
mkdir -p $PKG/etc/logrotate.d
|
|
|
|
cat $CWD/postgresql.logrotate > $PKG/etc/logrotate.d/postgresql.new
|
|
|
|
|
2010-05-12 04:27:00 +08:00
|
|
|
mkdir -p $PKG/var/log/setup
|
2010-05-12 23:45:51 +08:00
|
|
|
sed -e "s%@UID@%$PG_UID%" -e "s%@GID@%$PG_GID%" $CWD/setup.$PRGNAM \
|
|
|
|
> $PKG/var/log/setup/setup.$PRGNAM
|
2010-05-12 04:27:00 +08:00
|
|
|
chmod 755 $PKG/var/log/setup/setup.$PRGNAM
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
|
|
|
|
2010-05-11 21:18:43 +08:00
|
|
|
cd $PKG
|
2010-05-13 06:41:27 +08:00
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|