wok annotate phpmyadmin/receipt @ rev 22861

updated gnu-efi (3.0.6 -> 3.0.11)
author Hans-G?nter Theisgen
date Thu Feb 20 17:09:58 2020 +0100 (2020-02-20)
parents a78610b2eb47
children 17d35d580cb0
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"
pascal@20669 11 WEB_SITE="https://www.phpmyadmin.net/"
pascal@1144 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pascal@1212 13 CONFIG_FILES="/etc/phpmyadmin/config.inc.php"
pascal@16264 14 HOST_ARCH="any"
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@15385 47 secret=$(dd if=/dev/urandom count=1 2> /dev/null | md5sum | sed 's/ .*//')
pascal@15385 48 sed -i "s/^\(.*blowfish_secret'] = '\)'/\1$secret'/" \
pascal@18730 49 "$1/etc/phpmyadmin/config.inc.php"
pascal@1314 50 # Configure lighttpd server
pascal@18730 51 if [ -f "$1/etc/lighttpd/lighttpd.conf" ]; then
pascal@18730 52 if ! grep -q /usr/share/phpmyadmin/ "$1/etc/lighttpd/lighttpd.conf"; then
pascal@18730 53 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 54 if [ -z "$1" ]; then
pascal@1144 55 # Start Web server.
pascal@1144 56 /etc/init.d/lighttpd stop
pascal@1144 57 /etc/init.d/lighttpd start
pascal@1144 58 fi
pascal@1144 59 fi
pascal@1144 60 fi
pascal@1314 61 # Configure apache server
pascal@18730 62 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 63 if [ ! -f "$1/etc/apache/conf.d/phpmyadmin" ]; then
pascal@18730 64 cat > "$1/etc/apache/conf.d/phpmyadmin" <<EOT
pascal@1314 65 <IfModule mod_alias.c>
pascal@1314 66 Alias /phpmyadmin /usr/share/phpmyadmin
pascal@1314 67 </IfModule>
erjo@13177 68 <Directory /usr/share/phpmyadmin/>
pascal@1314 69 DirectoryIndex index.php
pascal@1314 70 Options +FollowSymLinks
pascal@1314 71 AllowOverride None
pascal@1314 72 Order allow,deny
pascal@1314 73 Allow from all
erjo@13177 74 </Directory>
pascal@1314 75 EOT
pascal@1314 76 if [ -z "$1" ]; then
pascal@1314 77 # Start Web server.
pascal@1314 78 /etc/init.d/apache stop
pascal@1314 79 /etc/init.d/apache start
pascal@1314 80 fi
pascal@1314 81 fi
pascal@1314 82 fi
pascal@1144 83 }