wok view postgresql/receipt @ rev 8991

dahdi-linux: kernel 2.6.37 fix
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Mar 03 11:26:54 2011 +0100 (2011-03-03)
parents 6d8cff5d29ea
children 02bbaa9d12ba
line source
1 # SliTaz package receipt.
3 PACKAGE="postgresql"
4 VERSION="9.0.3"
5 CATEGORY="misc"
6 SHORT_DESC="SQL database system."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.postgresql.org/"
10 WGET_URL="http://wwwmaster.postgresql.org/redir/110/f/source/v$VERSION/$TARBALL"
11 DEPENDS="postgresql-client slitaz-base-files"
12 BUILD_DEPENDS="zlib-dev readline-dev ncurses-dev bison flex perl libxslt"
13 CONFIG_FILES="/var/lib/pgsql/*.conf"
14 DATABASE_FILES="/var/lib/pgsql"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 [ -d ../postgrpsql-$VERSION ] && cp -a ../postgrpsql-$VERSION/* .
21 cp ../stuff/*.files-list .
22 ./configure --prefix=/usr --infodir=/usr/share/info \
23 --sysconfdir=/etc --includedir=/usr/include/postgresql --with-gnu-ld \
24 --with-includes=/usr/include/readline --enable-integer-datetimes \
25 --enable-thread-safety --with-system-tzdata=/usr/share/zoneinfo \
26 --libdir=/usr/lib/postgresql --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$PWD/_pkg install
30 make -C doc/src/sgml DESTDIR=$PWD/_pkg install-html
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share $fs/usr/lib $fs/var/lib/pgsql \
37 $fs/var/log/postgresql $fs/etc/pgsql.d
38 cp -a $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/lib/postgresql $fs/usr/lib
40 strip -s $fs/usr/lib/postgresql/*.so*
41 rm -f $fs/usr/lib/postgresql/*a
42 cp -a $_pkg/usr/share/postgresql $fs/usr/share
43 cp -a stuff/etc $fs
44 ln -s /var/lib/pgsql/postgresql.conf $fs/etc
45 chmod 700 $fs/var/lib/pgsql
46 cat $WOK/$PACKAGE/stuff/*.files-list | while read file; do
47 [ -f $fs$file ] && rm -f $fs$file
48 done
50 }
52 # Pre and post install commands for Tazpkg.
53 post_install()
54 {
55 # adduser postgres if needed
56 if ! grep -q postgres: $1/etc/passwd; then
57 echo -n "Adding user postgres..."
58 chroot $1/ adduser postgres -D -H -u 88 -h /var/lib/pgsql
59 #[ -d $1/var/lib/pgsql ] && rm -f $1/var/lib/pgsql/.* $1/var/lib/pgsql/*
60 status
61 fi
62 # addgroup postgres if needed
63 if ! grep -q postgres: $1/etc/group; then
64 echo -n "Adding group postgres..."
65 chroot $1/ sh -c 'addgroup -g 88 postgres'
66 status
67 fi
68 [ ! -d $1/var/lib/pgsql ] && mkdir -p $1/var/lib/pgsql
69 chroot $1/ chown -R postgres.postgres /var/lib/pgsql /var/log/postgresql
70 cat <<EOF
71 ----
72 postgres has superuser access.
73 Configure /var/lib/pgsql/*.conf files.
74 To start $PACKAGE server you can run :
76 /etc/init.d/$PACKAGE start
78 Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf
79 ----
80 EOF
81 }
83 post_remove()
84 {
85 # when both user and group have the same id# and name
86 # both group and user will get removed with either delusr/delgroup
87 chroot $1/ deluser postgres
88 }