wok view ppp/receipt @ rev 10580

openerp-client: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 26 09:04:02 2011 +0200 (2011-05-26)
parents 02bbaa9d12ba
children 03063b2a437d
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 # Config files.
30 mkdir -p $fs/etc/ppp/scripts
31 cp $stuff/README.scripts $fs/etc/ppp
32 cp -a $src/etc.ppp/* $fs/etc/ppp
33 # PPP scripts.
34 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
35 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
37 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
38 cp -a $src/scripts/callback $fs/etc/ppp/scripts
39 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
41 cp -a $src/scripts/ip-up.local.add $fs/etc/ppp/ip-up
42 cp -a $src/scripts/ip-down.local.add $fs/etc/ppp/ip-down
43 chmod +x $fs/etc/ppp/ip*
44 # insert #!/bin/sh on top line in ip* scripts
45 sed -i '1i\#!/bin/sh' $fs/etc/ppp/ip*
46 # add empty peers dir
47 mkdir -p $fs/etc/ppp/peers
48 sed -i 's:ppp/ppp-on-dialer:ppp/script/ppp-on-dialer:' $fs/etc/ppp/scripts/ppp-on
50 }