wok annotate postgresql/receipt @ rev 16284

ARM: make nfs-utils cross compile
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 20:48:48 2014 +0200 (2014-04-06)
parents e1defd13e80a
children 9e01bc6321ea
rev   line source
pascal@1149 1 # SliTaz package receipt.
pascal@1149 2
pascal@1149 3 PACKAGE="postgresql"
pascal@14029 4 VERSION="9.2.3"
pascal@1506 5 CATEGORY="misc"
pascal@1149 6 SHORT_DESC="SQL database system."
pascal@1149 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15375 8 LICENSE="BSD"
pascal@1149 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
slaxemulator@6570 10 WEB_SITE="http://www.postgresql.org/"
slaxemulator@11412 11 WGET_URL="ftp://ftp.postgresql.org/pub/source/v$VERSION/$TARBALL"
pascal@2347 12 CONFIG_FILES="/var/lib/pgsql/*.conf"
pascal@2347 13 DATABASE_FILES="/var/lib/pgsql"
pascal@1149 14
pascal@13320 15 DEPENDS="postgresql-client slitaz-base-files"
pascal@13320 16 BUILD_DEPENDS="zlib-dev readline-dev ncurses-dev bison flex perl libxslt \
pascal@13320 17 python-dev"
pascal@13320 18
pascal@1149 19 # Rules to configure and make the package.
pascal@1149 20 compile_rules()
pascal@1149 21 {
pascal@1149 22 cd $src
pascal@1149 23 [ -d ../postgrpsql-$VERSION ] && cp -a ../postgrpsql-$VERSION/* .
slaxemulator@9700 24 cp $stuff/*.files-list .
pascal@1149 25 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1149 26 --sysconfdir=/etc --includedir=/usr/include/postgresql --with-gnu-ld \
pascal@1149 27 --with-includes=/usr/include/readline --enable-integer-datetimes \
pascal@13320 28 --with-perl --with-python \
pascal@1149 29 --enable-thread-safety --with-system-tzdata=/usr/share/zoneinfo \
slaxemulator@6570 30 --libdir=/usr/lib/postgresql --mandir=/usr/share/man \
slaxemulator@6570 31 $CONFIGURE_ARGS &&
pascal@1497 32 make &&
slaxemulator@11412 33 make DESTDIR=$DESTDIR install
slaxemulator@11412 34 make -C doc/src/sgml DESTDIR=$DESTDIR install-html
pascal@1149 35 }
pascal@1149 36
pascal@1149 37 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1149 38 genpkg_rules()
pascal@1149 39 {
pascal@1149 40 mkdir -p $fs/usr/share $fs/usr/lib $fs/var/lib/pgsql \
pascal@1967 41 $fs/var/log/postgresql $fs/etc/pgsql.d
pascal@13320 42 cp -a $install/usr/bin $fs/usr
pascal@13320 43 cp -a $install/usr/lib/postgresql $fs/usr/lib
pascal@1149 44 rm -f $fs/usr/lib/postgresql/*a
pascal@13320 45 cp -a $install/usr/share/postgresql $fs/usr/share
slaxemulator@9701 46 cp -a $stuff/etc $fs
pascal@1149 47 ln -s /var/lib/pgsql/postgresql.conf $fs/etc
pascal@1149 48 chmod 700 $fs/var/lib/pgsql
slaxemulator@9701 49 cat $stuff/*.files-list | while read file; do
pascal@1149 50 [ -f $fs$file ] && rm -f $fs$file
pascal@1149 51 done
slaxemulator@8646 52
pascal@1149 53 }
pascal@1149 54
pascal@1149 55 # Pre and post install commands for Tazpkg.
pascal@1149 56 post_install()
pascal@1149 57 {
pascal@1149 58 # adduser postgres if needed
slaxemulator@8646 59 if ! grep -q postgres: $1/etc/passwd; then
pascal@1149 60 echo -n "Adding user postgres..."
slaxemulator@7962 61 chroot $1/ adduser postgres -D -H -u 88 -h /var/lib/pgsql
slaxemulator@8646 62 #[ -d $1/var/lib/pgsql ] && rm -f $1/var/lib/pgsql/.* $1/var/lib/pgsql/*
pascal@1149 63 status
pascal@1149 64 fi
pascal@1149 65 # addgroup postgres if needed
slaxemulator@8646 66 if ! grep -q postgres: $1/etc/group; then
pascal@1149 67 echo -n "Adding group postgres..."
slaxemulator@8646 68 chroot $1/ sh -c 'addgroup -g 88 postgres'
pascal@1149 69 status
pascal@1149 70 fi
slaxemulator@8646 71 [ ! -d $1/var/lib/pgsql ] && mkdir -p $1/var/lib/pgsql
pascal@1149 72 chroot $1/ chown -R postgres.postgres /var/lib/pgsql /var/log/postgresql
pascal@1149 73 cat <<EOF
pascal@1149 74 ----
pascal@1152 75 postgres has superuser access.
pascal@1152 76 Configure /var/lib/pgsql/*.conf files.
pascal@1149 77 To start $PACKAGE server you can run :
pascal@1149 78
pascal@1149 79 /etc/init.d/$PACKAGE start
pascal@1149 80
pascal@1149 81 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
pascal@1149 82 ----
pascal@1149 83 EOF
pascal@1149 84 }
pascal@1149 85
pascal@1149 86 post_remove()
pascal@1149 87 {
slaxemulator@8646 88 # when both user and group have the same id# and name
slaxemulator@8646 89 # both group and user will get removed with either delusr/delgroup
slaxemulator@8645 90 chroot $1/ deluser postgres
pascal@1149 91 }