wok view phpldapadmin/receipt @ rev 1212

Add missing CONFIG_FILES=
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 09 17:50:04 2008 +0000 (2008-08-09)
parents c13c815a576c
children 6bfa3b761dd2
line source
1 # SliTaz package receipt.
3 PACKAGE="phpldapadmin"
4 VERSION="1.1.0.5"
5 CATEGORY="misc"
6 SHORT_DESC="Administration of LDAP over the Web."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://$PACKAGE.sourceforge.net/"
10 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
11 DEPENDS="php-ldap"
12 CONFIG_FILES="/etc/phpldapadmin/config.php"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 echo "$src compiled..."
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/share/phpldapadmin $fs/etc
24 cp -a $src/. $fs/usr/share/phpldapadmin
25 mv $fs/usr/share/phpldapadmin/config $fs/etc/phpldapadmin
26 ln -s /etc/phpldapadmin $fs/usr/share/phpldapadmin/config
27 mv $fs/etc/phpldapadmin/config.php.example $fs/etc/phpldapadmin/config.php
28 chown -R www.www $fs/usr/share/phpldapadmin $fs/etc/phpldapadmin
29 chmod 700 $fs/etc/phpldapadmin
30 chmod 600 $fs/etc/phpldapadmin/config.php
31 }
33 post_install()
34 {
35 ( cd $1/ ; cpio -o -H newc | gzip -9 ) > \
36 $1/$INSTALLED/$PACKAGE/volatile.cpio.gz <<EOT
37 etc/phpldapadmin/config.php
38 EOT
39 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
40 if ! grep -q /usr/share/phpldapadmin/ $1/etc/lighttpd/lighttpd.conf; then
41 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/phpldapadmin/" => "/usr/share/phpldapadmin/",|g' -i $1/etc/lighttpd/lighttpd.conf
42 if [ -z "$1" ]; then
43 # Start Web server.
44 /etc/init.d/lighttpd stop
45 /etc/init.d/lighttpd start
46 fi
47 fi
48 fi
49 }
51 repack_cleanup()
52 {
53 zcat $INSTALLED/$PACKAGE/volatile.cpio.gz | ( cd $1 ; cpio -id )
54 }