wok annotate ppp/receipt @ rev 2339

gpxe-pxe: url redondancy setup
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 02 08:57:35 2009 +0000 (2009-03-02)
parents 942d5b5c8ec1
children b315a2103f94
rev   line source
pankso@6 1 # SliTaz package receipt.
pankso@6 2
pankso@6 3 PACKAGE="ppp"
pankso@6 4 VERSION="2.4.4"
pankso@203 5 CATEGORY="network"
pankso@6 6 SHORT_DESC="Implements the Point-to-Point Protocol (PPP)."
pankso@6 7 MAINTAINER="pankso@slitaz.org"
pankso@6 8 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@6 9 WEB_SITE="http://ppp.samba.org/"
pankso@6 10 WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL"
pascal@1634 11 CONFIG_FILES="/etc/ppp"
pankso@6 12
pankso@6 13 # Rules to configure and make the package.
pankso@6 14 compile_rules()
pankso@6 15 {
pankso@6 16 cd $src
pankso@6 17 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@1634 18 $CONFIGURE_ARGS &&
pascal@1634 19 make &&
pankso@6 20 make DESTDIR=$PWD/_pkg/usr install
pankso@6 21 }
pankso@6 22
pankso@6 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@6 24 genpkg_rules()
pankso@6 25 {
pankso@6 26 mkdir -p $fs/usr
pankso@6 27 cp -a $_pkg/usr/sbin $fs/usr
pankso@6 28 cp -a $_pkg/usr/lib $fs/usr
pankso@6 29 strip -s $fs/usr/sbin/*
pankso@6 30 strip -s $fs/usr/lib/pppd/$VERSION/*
pankso@6 31 # Config files.
pankso@6 32 mkdir -p $fs/etc/ppp/scripts
pankso@6 33 cp stuff/README.scripts $fs/etc/ppp
pankso@6 34 cp -a $src/etc.ppp/* $fs/etc/ppp
pankso@6 35 # PPP scripts.
pankso@6 36 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
pankso@6 37 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
pascal@940 38 sed -i 's,ppp/ppp-on-dialer,ppp/script/ppp-on-dialer,' $fs/etc/ppp/scripts/ppp-on-dialer
pankso@6 39 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
pankso@6 40 cp -a $src/scripts/callback $fs/etc/ppp/scripts
pankso@6 41 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
pankso@6 42 }