# HG changeset patch # User Eric Joseph-Alexandre # Date 1295568150 -3600 # Node ID 743b39940f082f9e254aef57956c797f107520c1 # Parent 811617bdf56d34217ea0c0389d0d357dbb95ecb4 Add: ovz-web-panel diff -r 811617bdf56d -r 743b39940f08 ovz-web-panel/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ovz-web-panel/receipt Fri Jan 21 01:02:30 2011 +0100 @@ -0,0 +1,63 @@ +# SliTaz package receipt. + +PACKAGE="ovz-web-panel" +VERSION="1.7" +CATEGORY="networking" +SHORT_DESC="GUI web-based frontend for OpenVZ" +MAINTAINER="erjo@slitaz.org" +DEPENDS="ruby rubygems sqlite3-ruby" +TARBALL="${PACKAGE}-${VERSION}.tgz" +WEB_SITE="http://code.google.com/p/ovz-web-panel/" +WGET_URL="http://ovz-web-panel.googlecode.com/files/$TARBALL" + + +# Rules to configure and make the package. +compile_rules() +{ + cd $PACKAGE + # Apply patches + while read patch_file; do + if [ -f done.$patch_file ]; then + echo "Skipping $patch_file" + continue + fi + echo "Apply $patch_file" + patch -p1 < ../stuff/$patch_file || exit 1 + touch done.$patch_file + done <