wok-next annotate swat/receipt @ rev 11858
up nss 3.13.3
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Mon Feb 27 08:34:30 2012 -0800 (2012-02-27) |
parents | 76ed92159a61 |
children | 88cfcda0c8aa |
rev | line source |
---|---|
pascal@1250 | 1 # SliTaz package receipt. |
pascal@1250 | 2 |
pascal@1250 | 3 PACKAGE="swat" |
slaxemulator@9158 | 4 VERSION="3.5.8" |
pascal@1250 | 5 CATEGORY="development" |
pascal@1250 | 6 SHORT_DESC="Samba Web Administration Tool." |
pascal@1250 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@1250 | 8 WEB_SITE="http://samba.org/" |
pascal@1250 | 9 DEPENDS="samba" |
pascal@1250 | 10 WANTED="samba" |
pascal@1250 | 11 |
pascal@1250 | 12 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@1250 | 13 genpkg_rules() |
pascal@1250 | 14 { |
pascal@11544 | 15 mkdir -p $fs/usr/share/samba $fs/usr/share/applications |
pascal@1250 | 16 cp -a $_pkg/usr/share/samba/swat $fs/usr/share/samba |
slaxemulator@8928 | 17 cp $stuff/swat.desktop $fs/usr/share/applications |
pascal@1250 | 18 } |
pascal@1250 | 19 |
pascal@1250 | 20 post_install() |
pascal@1250 | 21 { |
pascal@1250 | 22 if [ -f $1/etc/lighttpd/lighttpd.conf ]; then |
pascal@1250 | 23 if ! grep -q /usr/share/samba/swat/ $1/etc/lighttpd/lighttpd.conf; then |
pascal@1250 | 24 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/swat/" => "/usr/share/samba/swat/",|g' -i $1/etc/lighttpd/lighttpd.conf |
pascal@1250 | 25 if [ -z "$1" ]; then |
pascal@1250 | 26 # Start Web server. |
pascal@1250 | 27 /etc/init.d/lighttpd stop |
pascal@1250 | 28 /etc/init.d/lighttpd start |
pascal@1250 | 29 fi |
pascal@1250 | 30 fi |
pascal@1250 | 31 fi |
pascal@1250 | 32 } |