wok annotate ovz-web-panel/receipt @ rev 21949

updated sqlite, sqlite-dev and libsqlite (3.18.0 -> 3.30.0)
author Hans-G?nter Theisgen
date Wed Oct 09 14:34:26 2019 +0100 (2019-10-09)
parents eeba7ab1dffe
children b9659e3c2111
rev   line source
erjo@8059 1 # SliTaz package receipt.
erjo@8059 2
erjo@8059 3 PACKAGE="ovz-web-panel"
erjo@8059 4 VERSION="1.7"
slaxemulator@8856 5 CATEGORY="network"
erjo@8059 6 SHORT_DESC="GUI web-based frontend for OpenVZ"
erjo@8059 7 MAINTAINER="erjo@slitaz.org"
pascal@15610 8 LICENSE="GPL2"
erjo@8059 9 TARBALL="${PACKAGE}-${VERSION}.tgz"
pascal@20688 10 WEB_SITE="http://owp.softunity.com.ru/"
erjo@8059 11 WGET_URL="http://ovz-web-panel.googlecode.com/files/$TARBALL"
erjo@8059 12
pascal@15610 13 DEPENDS="ruby-enterprise sqlite3-ruby"
erjo@8059 14
erjo@8059 15 # Rules to configure and make the package.
erjo@8059 16 compile_rules()
erjo@8059 17 {
erjo@8059 18 # Apply patches
erjo@8059 19 while read patch_file; do
erjo@8059 20 if [ -f done.$patch_file ]; then
erjo@8059 21 echo "Skipping $patch_file"
erjo@8059 22 continue
erjo@8059 23 fi
erjo@8059 24 echo "Apply $patch_file"
slaxemulator@9700 25 patch -p1 < $stuff/$patch_file || return 1
erjo@8059 26 touch done.$patch_file
erjo@8059 27 done <<EOT
erjo@8059 28 owp-${VERSION}.u
erjo@8059 29 EOT
pascal@15603 30 mkdir $DESTDIR
pascal@15603 31 mv * $DESTDIR 2> /dev/null || true
erjo@8059 32 }
erjo@8059 33
erjo@8059 34 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8059 35 genpkg_rules()
erjo@8059 36 {
erjo@8059 37 mkdir -p $fs/usr/share \
al@18734 38 $fs/etc
al@18734 39
pascal@15603 40 cp -a $install $fs/usr/share/$PACKAGE
erjo@8059 41 cp -a $fs/usr/share/$PACKAGE/config/owp.conf.sample $fs/etc/owp.conf
pascal@15610 42 cp -a $fs/usr/share/$PACKAGE/utils/hw-daemon/hw-daemon.ini.sample $fs/usr/share/$PACKAGE/utils/hw-daemon/hw-daemon.ini
al@18734 43
erjo@8059 44 # Set secret key
erjo@8059 45 sed -i 's/secret/2918b7aafc1f5f753ee232a7e7f78175/' \
erjo@8059 46 $fs/usr/share/$PACKAGE/utils/hw-daemon/hw-daemon.ini
al@18734 47
erjo@8059 48 # Set program homedir
erjo@8059 49 sed -i 's!/opt!/usr/share!' $fs/etc/owp.conf
al@18734 50
erjo@8059 51 # Fix perms
erjo@8059 52 chmod 755 $fs/usr/share/$PACKAGE/script/owp
al@18734 53
erjo@9424 54 # Cleaning.
erjo@9424 55 rm -f $fs/usr/share/$PACKAGE/done.*.u
erjo@8059 56 }
erjo@8059 57
erjo@8059 58 post_install()
erjo@8059 59 {
erjo@8059 60 chroot "$1/" ln -s /usr/share/$PACKAGE/script/owp /etc/init.d/owp
erjo@8059 61 }
erjo@8059 62
erjo@8059 63 clean_wok()
erjo@8059 64 {
erjo@8059 65 [ -d $PACKAGE ] && rm -rf $PACKAGE
erjo@8059 66 }