# HG changeset patch # User Pascal Bellard # Date 1248851382 -7200 # Node ID 68eb9b7c9c5a37d1a066f83e27fdd507bd67f502 # Parent 5762c3727ccc894959c209ccaf1627289923d1f0 Add pptpclient diff -r 5762c3727ccc -r 68eb9b7c9c5a pptpclient-extra/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pptpclient-extra/receipt Wed Jul 29 09:09:42 2009 +0200 @@ -0,0 +1,20 @@ +# SliTaz package receipt. + +PACKAGE="pptpclient-extra" +VERSION="1.7.2" +CATEGORY="system-tools" +SHORT_DESC="PPTP client configuration helper." +MAINTAINER="pascal.bellard@slitaz.org" +WANTED="pptpclient" +SOURCE="pptp" +WEB_SITE="http://pptpclient.sourceforge.net/" +DEPENDS="pptpclient perl" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg + mkdir -p $fs/usr/sbin + cp -a $_pkg/usr/sbin/pptpsetup $fs/usr/sbin +} + diff -r 5762c3727ccc -r 68eb9b7c9c5a pptpclient-man/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pptpclient-man/receipt Wed Jul 29 09:09:42 2009 +0200 @@ -0,0 +1,19 @@ +# SliTaz package receipt. + +PACKAGE="pptpclient-man" +VERSION="1.7.2" +CATEGORY="system-tools" +SHORT_DESC="PPTP client man pages." +MAINTAINER="pascal.bellard@slitaz.org" +WANTED="pptpclient" +SOURCE="pptp" +WEB_SITE="http://pptpclient.sourceforge.net/" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + _pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg + mkdir -p $fs/usr/ + cp -a $_pkg/usr/share $fs/usr/ +} + diff -r 5762c3727ccc -r 68eb9b7c9c5a pptpclient/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pptpclient/receipt Wed Jul 29 09:09:42 2009 +0200 @@ -0,0 +1,29 @@ +# SliTaz package receipt. + +PACKAGE="pptpclient" +VERSION="1.7.2" +CATEGORY="system-tools" +SHORT_DESC="Microsoft Point-to-Point Tunneling Protocol client." +MAINTAINER="pascal.bellard@slitaz.org" +SOURCE="pptp" +TARBALL="$SOURCE-$VERSION.tar.gz" +WEB_SITE="http://pptpclient.sourceforge.net/" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +DEPENDS="ppp" +BUILD_DEPENDS="ppp" + +# Rules to configure and make the package. +compile_rules() +{ + cd $src + make && + make DESTDIR=$PWD/_pkg install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/sbin + cp -a $_pkg/usr/sbin/pptp $fs/usr/sbin +} +