wok annotate phpmyadmin/receipt @ rev 18730

Quote root dir in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 20 15:13:45 2015 +0100 (2015-12-20)
parents d51b2411e55e
children a78610b2eb47
rev   line source
pascal@1144 1 # SliTaz package receipt.
pascal@1144 2
pascal@1144 3 PACKAGE="phpmyadmin"
erjo@13177 4 VERSION="3.5.2"
pascal@1144 5 CATEGORY="misc"
pascal@1144 6 SHORT_DESC="Administration of MySQL over the Web."
pascal@1145 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15198 8 LICENSE="GPL2"
pascal@1144 9 PHPMYADM="phpMyAdmin-$VERSION-all-languages"
pascal@1144 10 TARBALL="$PHPMYADM.tar.bz2"
slaxemulator@11284 11 WEB_SITE="http://www.phpmyadmin.net/"
pascal@1144 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@4384 13 SUGGESTED="php-mcrypt"
pascal@1212 14 CONFIG_FILES="/etc/phpmyadmin/config.inc.php"
pascal@16264 15 HOST_ARCH="any"
pascal@1144 16
pascal@15198 17 DEPENDS="php-mysqli"
erjo@13177 18
pascal@1144 19 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1144 20 genpkg_rules()
pascal@1144 21 {
pascal@1244 22 mkdir -p $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin $fs/usr/share/applications
pascal@1144 23 cp -a $src/. $fs/usr/share/phpmyadmin
erjo@4384 24 ln -s /etc/phpmyadmin/config.inc.php $fs/usr/share/phpmyadmin/config.inc.php
pascal@1144 25 cp $src/config.sample.inc.php $fs/etc/phpmyadmin/config.inc.php
pascal@1244 26 rm -f $fs/usr/share/phpmyadmin/phpMyAdmin-$VERSION-all-languages
slaxemulator@10131 27 cp $stuff/phpmyadmin.desktop $fs/usr/share/applications
pascal@1144 28 chown -R www.www $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin
pascal@1144 29 chmod 700 $fs/etc/phpmyadmin
erjo@4384 30 chmod 644 $fs/etc/phpmyadmin/config.inc.php
erjo@4384 31
erjo@4384 32 sed -i s'/\?>//' $fs/etc/phpmyadmin/config.inc.php
erjo@4384 33
erjo@4384 34 cat <<"EOT">> $fs/etc/phpmyadmin/config.inc.php
erjo@4384 35
erjo@4384 36 $cfg['McryptDisableWarning'] = true;
erjo@4384 37 // For public use you may comment the following lines
erjo@4384 38 // to enforce the security.
erjo@4384 39 $cfg['Servers'][$i]['AllowNoPassword'] = true;
erjo@4384 40 $cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
erjo@4384 41 $cfg['Servers'][$i]['AllowRoot'] = true;
erjo@4384 42 ?>
erjo@4384 43 EOT
pascal@1144 44 }
pascal@1144 45
pascal@1144 46 post_install()
pascal@1144 47 {
pascal@15385 48 secret=$(dd if=/dev/urandom count=1 2> /dev/null | md5sum | sed 's/ .*//')
pascal@15385 49 sed -i "s/^\(.*blowfish_secret'] = '\)'/\1$secret'/" \
pascal@18730 50 "$1/etc/phpmyadmin/config.inc.php"
pascal@1314 51 # Configure lighttpd server
pascal@18730 52 if [ -f "$1/etc/lighttpd/lighttpd.conf" ]; then
pascal@18730 53 if ! grep -q /usr/share/phpmyadmin/ "$1/etc/lighttpd/lighttpd.conf"; then
pascal@18730 54 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/phpmyadmin/" => "/usr/share/phpmyadmin/",|g' -i "$1/etc/lighttpd/lighttpd.conf"
pascal@1144 55 if [ -z "$1" ]; then
pascal@1144 56 # Start Web server.
pascal@1144 57 /etc/init.d/lighttpd stop
pascal@1144 58 /etc/init.d/lighttpd start
pascal@1144 59 fi
pascal@1144 60 fi
pascal@1144 61 fi
pascal@1314 62 # Configure apache server
pascal@18730 63 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 64 if [ ! -f "$1/etc/apache/conf.d/phpmyadmin" ]; then
pascal@18730 65 cat > "$1/etc/apache/conf.d/phpmyadmin" <<EOT
pascal@1314 66 <IfModule mod_alias.c>
pascal@1314 67 Alias /phpmyadmin /usr/share/phpmyadmin
pascal@1314 68 </IfModule>
erjo@13177 69 <Directory /usr/share/phpmyadmin/>
pascal@1314 70 DirectoryIndex index.php
pascal@1314 71 Options +FollowSymLinks
pascal@1314 72 AllowOverride None
pascal@1314 73 Order allow,deny
pascal@1314 74 Allow from all
erjo@13177 75 </Directory>
pascal@1314 76 EOT
pascal@1314 77 if [ -z "$1" ]; then
pascal@1314 78 # Start Web server.
pascal@1314 79 /etc/init.d/apache stop
pascal@1314 80 /etc/init.d/apache start
pascal@1314 81 fi
pascal@1314 82 fi
pascal@1314 83 fi
pascal@1144 84 }