wok view ppp/receipt @ rev 9470

Remove some uneeded strips (thoses ones are handled by Tazwok)
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Apr 04 01:29:52 2011 +0200 (2011-04-04)
parents 7e4cec027e34
children e5ae411e1d8c
line source
1 # SliTaz package receipt.
3 PACKAGE="ppp"
4 VERSION="2.4.5"
5 CATEGORY="network"
6 SHORT_DESC="Implements the Point-to-Point Protocol (PPP)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://ppp.samba.org/"
10 WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL"
11 CONFIG_FILES="/etc/ppp"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure --prefix=/usr --mandir=/usr/share/man \
18 $CONFIGURE_ARGS &&
19 make &&
20 make DESTDIR=$PWD/_pkg/usr install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/sbin $fs/usr
28 cp -a $_pkg/usr/lib $fs/usr
29 strip -s $fs/usr/lib/pppd/$VERSION/*
30 # Config files.
31 mkdir -p $fs/etc/ppp/scripts
32 cp stuff/README.scripts $fs/etc/ppp
33 cp -a $src/etc.ppp/* $fs/etc/ppp
34 # PPP scripts.
35 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
36 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
38 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
39 cp -a $src/scripts/callback $fs/etc/ppp/scripts
40 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
42 cp -a $src/scripts/ip-up.local.add $fs/etc/ppp/ip-up
43 cp -a $src/scripts/ip-down.local.add $fs/etc/ppp/ip-down
44 chmod +x $fs/etc/ppp/ip*
45 # insert #!/bin/sh on top line in ip* scripts
46 sed -i '1i\#!/bin/sh' $fs/etc/ppp/ip*
47 # add empty peers dir
48 mkdir -p $fs/etc/ppp/peers
49 sed -i 's:ppp/ppp-on-dialer:ppp/script/ppp-on-dialer:' $fs/etc/ppp/scripts/ppp-on
51 }