wok annotate phpmyadmin/receipt @ rev 12254

Up: slitaz-configs (4.9.1) - Last minute bug fix
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 10 13:54:27 2012 +0200 (2012-04-10)
parents cb0d692a7f54
children a283e7450161
rev   line source
pascal@1144 1 # SliTaz package receipt.
pascal@1144 2
pascal@1144 3 PACKAGE="phpmyadmin"
erjo@11795 4 VERSION="3.4.10.1"
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@1144 8 PHPMYADM="phpMyAdmin-$VERSION-all-languages"
pascal@1144 9 TARBALL="$PHPMYADM.tar.bz2"
slaxemulator@11284 10 WEB_SITE="http://www.phpmyadmin.net/"
pascal@1144 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
erjo@4384 12 SUGGESTED="php-mcrypt"
erjo@11830 13 DEPENDS="php-mysqli"
pascal@1212 14 CONFIG_FILES="/etc/phpmyadmin/config.inc.php"
pascal@1144 15
pascal@1144 16 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1144 17 genpkg_rules()
pascal@1144 18 {
pascal@1244 19 mkdir -p $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin $fs/usr/share/applications
pascal@1144 20 cp -a $src/. $fs/usr/share/phpmyadmin
erjo@4384 21 ln -s /etc/phpmyadmin/config.inc.php $fs/usr/share/phpmyadmin/config.inc.php
pascal@1144 22 cp $src/config.sample.inc.php $fs/etc/phpmyadmin/config.inc.php
pascal@1244 23 rm -f $fs/usr/share/phpmyadmin/phpMyAdmin-$VERSION-all-languages
slaxemulator@10131 24 cp $stuff/phpmyadmin.desktop $fs/usr/share/applications
pascal@1144 25 chown -R www.www $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin
pascal@1144 26 chmod 700 $fs/etc/phpmyadmin
erjo@4384 27 chmod 644 $fs/etc/phpmyadmin/config.inc.php
erjo@4384 28
erjo@4384 29 sed -i s'/\?>//' $fs/etc/phpmyadmin/config.inc.php
erjo@4384 30
erjo@4384 31 cat <<"EOT">> $fs/etc/phpmyadmin/config.inc.php
erjo@4384 32
erjo@4384 33 $cfg['McryptDisableWarning'] = true;
erjo@4384 34 // For public use you may comment the following lines
erjo@4384 35 // to enforce the security.
erjo@4384 36 $cfg['Servers'][$i]['AllowNoPassword'] = true;
erjo@4384 37 $cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
erjo@4384 38 $cfg['Servers'][$i]['AllowRoot'] = true;
erjo@4384 39 ?>
erjo@4384 40 EOT
pascal@1144 41 }
pascal@1144 42
pascal@1144 43 post_install()
pascal@1144 44 {
pascal@1314 45 # Configure lighttpd server
pascal@1144 46 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
pascal@1144 47 if ! grep -q /usr/share/phpmyadmin/ $1/etc/lighttpd/lighttpd.conf; then
pascal@1144 48 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 49 if [ -z "$1" ]; then
pascal@1144 50 # Start Web server.
pascal@1144 51 /etc/init.d/lighttpd stop
pascal@1144 52 /etc/init.d/lighttpd start
pascal@1144 53 fi
pascal@1144 54 fi
pascal@1144 55 fi
pascal@1314 56 # Configure apache server
pascal@1314 57 if [ -f $1/etc/apache/httpd.conf ]; then
pascal@1314 58 if [ ! -f $1/etc/apache/conf.d/phpmyadmin ]; then
pascal@1314 59 cat > $1/etc/apache/conf.d/phpmyadmin <<EOT
pascal@1314 60 <IfModule mod_alias.c>
pascal@1314 61 Alias /phpmyadmin /usr/share/phpmyadmin
pascal@1314 62 </IfModule>
pascal@1314 63 <DirectoryMatch /usr/share/phpmyadmin/>
pascal@1314 64 DirectoryIndex index.php
pascal@1314 65 Options +FollowSymLinks
pascal@1314 66 AllowOverride None
pascal@1314 67 Order allow,deny
pascal@1314 68 Allow from all
pascal@1314 69 </DirectoryMatch>
pascal@1314 70 EOT
pascal@1314 71 if [ -z "$1" ]; then
pascal@1314 72 # Start Web server.
pascal@1314 73 /etc/init.d/apache stop
pascal@1314 74 /etc/init.d/apache start
pascal@1314 75 fi
pascal@1314 76 fi
pascal@1314 77 fi
pascal@1144 78 }