wok annotate phpmyadmin/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents 1a44c7c68079
children 1019443a6c35
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@1144 15
pascal@15198 16 DEPENDS="php-mysqli"
erjo@13177 17
pascal@1144 18 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1144 19 genpkg_rules()
pascal@1144 20 {
pascal@1244 21 mkdir -p $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin $fs/usr/share/applications
pascal@1144 22 cp -a $src/. $fs/usr/share/phpmyadmin
erjo@4384 23 ln -s /etc/phpmyadmin/config.inc.php $fs/usr/share/phpmyadmin/config.inc.php
pascal@1144 24 cp $src/config.sample.inc.php $fs/etc/phpmyadmin/config.inc.php
pascal@1244 25 rm -f $fs/usr/share/phpmyadmin/phpMyAdmin-$VERSION-all-languages
slaxemulator@10131 26 cp $stuff/phpmyadmin.desktop $fs/usr/share/applications
pascal@1144 27 chown -R www.www $fs/usr/share/phpmyadmin $fs/etc/phpmyadmin
pascal@1144 28 chmod 700 $fs/etc/phpmyadmin
erjo@4384 29 chmod 644 $fs/etc/phpmyadmin/config.inc.php
erjo@4384 30
erjo@4384 31 sed -i s'/\?>//' $fs/etc/phpmyadmin/config.inc.php
erjo@4384 32
erjo@4384 33 cat <<"EOT">> $fs/etc/phpmyadmin/config.inc.php
erjo@4384 34
erjo@4384 35 $cfg['McryptDisableWarning'] = true;
erjo@4384 36 // For public use you may comment the following lines
erjo@4384 37 // to enforce the security.
erjo@4384 38 $cfg['Servers'][$i]['AllowNoPassword'] = true;
erjo@4384 39 $cfg['Servers'][$i]['AllowNoPasswordRoot'] = true;
erjo@4384 40 $cfg['Servers'][$i]['AllowRoot'] = true;
erjo@4384 41 ?>
erjo@4384 42 EOT
pascal@1144 43 }
pascal@1144 44
pascal@1144 45 post_install()
pascal@1144 46 {
pascal@1314 47 # Configure lighttpd server
pascal@1144 48 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then
pascal@1144 49 if ! grep -q /usr/share/phpmyadmin/ $1/etc/lighttpd/lighttpd.conf; then
pascal@1144 50 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 51 if [ -z "$1" ]; then
pascal@1144 52 # Start Web server.
pascal@1144 53 /etc/init.d/lighttpd stop
pascal@1144 54 /etc/init.d/lighttpd start
pascal@1144 55 fi
pascal@1144 56 fi
pascal@1144 57 fi
pascal@1314 58 # Configure apache server
pascal@1314 59 if [ -f $1/etc/apache/httpd.conf ]; then
pascal@1314 60 if [ ! -f $1/etc/apache/conf.d/phpmyadmin ]; then
pascal@1314 61 cat > $1/etc/apache/conf.d/phpmyadmin <<EOT
pascal@1314 62 <IfModule mod_alias.c>
pascal@1314 63 Alias /phpmyadmin /usr/share/phpmyadmin
pascal@1314 64 </IfModule>
erjo@13177 65 <Directory /usr/share/phpmyadmin/>
pascal@1314 66 DirectoryIndex index.php
pascal@1314 67 Options +FollowSymLinks
pascal@1314 68 AllowOverride None
pascal@1314 69 Order allow,deny
pascal@1314 70 Allow from all
erjo@13177 71 </Directory>
pascal@1314 72 EOT
pascal@1314 73 if [ -z "$1" ]; then
pascal@1314 74 # Start Web server.
pascal@1314 75 /etc/init.d/apache stop
pascal@1314 76 /etc/init.d/apache start
pascal@1314 77 fi
pascal@1314 78 fi
pascal@1314 79 fi
pascal@1144 80 }