wok annotate phppgadmin/receipt @ rev 22876

web-applications: localize wikipedia
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Feb 21 18:28:59 2020 +0100 (2020-02-21)
parents 77efaea34489
children fea693604883
rev   line source
pascal@1149 1 # SliTaz package receipt.
pascal@1149 2
pascal@1149 3 PACKAGE="phppgadmin"
pascal@16788 4 VERSION="5.1"
pascal@1149 5 CATEGORY="misc"
pascal@1149 6 SHORT_DESC="Administration of postgresql over the Web."
pascal@1149 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15198 8 LICENSE="GPL2"
pascal@1149 9 SOURCE="phpPgAdmin"
pascal@1149 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@1149 11 WEB_SITE="http://$PACKAGE.sourceforge.net/"
pascal@1149 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@15198 13 CONFIG_FILES="/etc/phppgadmin/config.inc.php"
pascal@16264 14 HOST_ARCH="any"
pascal@15198 15
pascal@1149 16 DEPENDS="php-pgsql"
pascal@1149 17
pascal@1149 18 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1149 19 genpkg_rules()
pascal@1149 20 {
pascal@1244 21 mkdir -p $fs/usr/share/phppgadmin $fs/etc $fs/usr/share/applications
pascal@1149 22 cp -a $src/. $fs/usr/share/phppgadmin
pascal@1149 23 mv $fs/usr/share/phppgadmin/conf $fs/etc/phppgadmin
pascal@1149 24 ln -s /etc/phppgadmin $fs/usr/share/phppgadmin/conf
slaxemulator@7008 25 mv -f $fs/etc/phppgadmin/config.inc.php-dist $fs/etc/phppgadmin/config.inc.php
pascal@1152 26 sed -i -e "s/conf\['extra_login_security'\] = true/conf['extra_login_security'] = false/" $fs/etc/phppgadmin/config.inc.php
pascal@1244 27 cp stuff/phppgadmin.desktop $fs/usr/share/applications
pascal@1149 28 chown -R www.www $fs/usr/share/phppgadmin $fs/etc/phppgadmin
pascal@1149 29 chmod 700 $fs/etc/phppgadmin
pascal@1149 30 chmod 600 $fs/etc/phppgadmin/*
pascal@1149 31 }
pascal@1149 32
pascal@1149 33 post_install()
pascal@1149 34 {
pascal@1314 35 # Configure lighttpd server
pascal@18730 36 if [ -f "$1/etc/lighttpd/lighttpd.conf" ]; then
pascal@18730 37 if ! grep -q /usr/share/phppgadmin/ "$1/etc/lighttpd/lighttpd.conf"; then
pascal@18730 38 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/phppgadmin/" => "/usr/share/phppgadmin/",|g' -i "$1/etc/lighttpd/lighttpd.conf"
pascal@1149 39 if [ -z "$1" ]; then
pascal@1149 40 # Start Web server.
pascal@1149 41 /etc/init.d/lighttpd stop
pascal@1149 42 /etc/init.d/lighttpd start
pascal@1149 43 fi
pascal@1149 44 fi
pascal@1149 45 fi
pascal@1314 46 # Configure apache server
pascal@18730 47 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 48 if [ ! -f "$1/etc/apache/conf.d/phppgadmin" ]; then
pascal@18730 49 cat > "$1/etc/apache/conf.d/phppgadmin" <<EOT
pascal@1314 50 <IfModule mod_alias.c>
pascal@1314 51 Alias /phppgadmin /usr/share/phppgadmin
pascal@1314 52 </IfModule>
pascal@1314 53 <DirectoryMatch /usr/share/phppgadmin/>
pascal@1314 54 DirectoryIndex index.php
pascal@1314 55 Options +FollowSymLinks
pascal@1314 56 AllowOverride None
pascal@1314 57 Order allow,deny
pascal@1314 58 Allow from all
pascal@1314 59 </DirectoryMatch>
pascal@1314 60 EOT
pascal@1314 61 if [ -z "$1" ]; then
pascal@1314 62 # Start Web server.
pascal@1314 63 /etc/init.d/apache stop
pascal@1314 64 /etc/init.d/apache start
pascal@1314 65 fi
pascal@1314 66 fi
pascal@1314 67 fi
pascal@1311 68 cat << EOT
pascal@1311 69 ------
pascal@1311 70 User 'postgres' can login on localhost without passwd after:
pascal@1311 71 # /etc/init.d/postgresql start
pascal@1311 72 ------
pascal@1311 73 EOT
pascal@1149 74 }