wok annotate ppp/receipt @ rev 12679

centerim: fix compile_rules
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 01 15:12:54 2012 +0200 (2012-05-01)
parents 8c84f0c8afcb
children b768ede0c5cb
rev   line source
pankso@6 1 # SliTaz package receipt.
pankso@6 2
pankso@6 3 PACKAGE="ppp"
jozee@5100 4 VERSION="2.4.5"
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
pascal@11799 17 if ! grep -qs pppol2tpv3_addr include/linux/if_pppol2tp.h ; then
pascal@11799 18 sed -i /#endif/d include/linux/if_pppol2tp.h
pascal@11799 19 cat >> include/linux/if_pppol2tp.h <<EOT
pascal@11797 20 /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
pascal@11797 21 * bits. So we need a different sockaddr structure.
pascal@11797 22 */
pascal@11797 23 struct pppol2tpv3_addr {
pascal@11797 24 pid_t pid; /* pid that owns the fd. 0 => current */
pascal@11797 25 int fd; /* FD of UDP or IP socket to use */
pascal@11797 26 struct sockaddr_in addr; /* IP address and port to send to */
pascal@11797 27 __u32 s_tunnel, s_session; /* For matching incoming packets */
pascal@11797 28 __u32 d_tunnel, d_session; /* For sending outgoing packets */
pascal@11797 29 };
pascal@11798 30 #endif
pascal@11797 31 EOT
pascal@11799 32 fi
pankso@6 33 ./configure --prefix=/usr --mandir=/usr/share/man \
pascal@1634 34 $CONFIGURE_ARGS &&
pascal@1634 35 make &&
pascal@11797 36 make DESTDIR=$DESTDIR/usr install
pankso@6 37 }
pankso@6 38
pankso@6 39 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@6 40 genpkg_rules()
pankso@6 41 {
pankso@6 42 mkdir -p $fs/usr
pankso@6 43 cp -a $_pkg/usr/sbin $fs/usr
pankso@6 44 cp -a $_pkg/usr/lib $fs/usr
pankso@6 45 # Config files.
pankso@6 46 mkdir -p $fs/etc/ppp/scripts
slaxemulator@9475 47 cp $stuff/README.scripts $fs/etc/ppp
pankso@6 48 cp -a $src/etc.ppp/* $fs/etc/ppp
domcox@12173 49
pankso@6 50 # PPP scripts.
pankso@6 51 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
pankso@6 52 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
domcox@12173 53 sed -i 's:ppp/ppp-on-dialer:ppp/scripts/ppp-on-dialer:' $fs/etc/ppp/scripts/ppp-on
jozee@5104 54
pankso@6 55 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
pankso@6 56 cp -a $src/scripts/callback $fs/etc/ppp/scripts
pankso@6 57 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
trixar_za@12286 58 cat >> $fs/etc/ppp/ip-up <<EOT
trixar_za@12286 59 if [ -n "$USEPEERDNS" -a -f /etc/ppp/resolv.conf ]; then
trixar_za@12286 60 rm -f /etc/ppp/resolv.prev
trixar_za@12286 61 if [ -f /etc/resolv.conf ]; then
trixar_za@12286 62 cp /etc/resolv.conf /etc/ppp/resolv.prev
trixar_za@12286 63 grep domain /etc/ppp/resolv.prev > /etc/resolv.conf
trixar_za@12286 64 grep search /etc/ppp/resolv.prev >> /etc/resolv.conf
trixar_za@12286 65 cat /etc/ppp/resolv.conf >> /etc/resolv.conf
trixar_za@12286 66 chmod 644 /etc/resolv.conf
trixar_za@12286 67 else
trixar_za@12286 68 cp /etc/ppp/resolv.conf /etc
trixar_za@12286 69 chmod 644 /etc/resolv.conf
trixar_za@12286 70 fi
trixar_za@12286 71 fi
trixar_za@12286 72 EOT
trixar_za@12286 73 cat >> $fs/etc/ppp/ip-down <<EOT
trixar_za@12286 74 if [ -n "$USEPEERDNS" -a -f /etc/ppp/resolv.conf ]; then
trixar_za@12286 75 if [ -f /etc/ppp/resolv.prev ]; then
trixar_za@12286 76 cp -f /etc/ppp/resolv.prev /etc/resolv.conf
trixar_za@12286 77 chmod 644 /etc/resolv.conf
trixar_za@12286 78 else
trixar_za@12286 79 rm -f /etc/resolv.conf
trixar_za@12286 80 fi
trixar_za@12286 81 fi
trixar_za@12286 82 EOT
trixar_za@12286 83 # cp -a $src/scripts/ip-up.local.add $fs/etc/ppp/ip-up
trixar_za@12286 84 # cp -a $src/scripts/ip-down.local.add $fs/etc/ppp/ip-down
domcox@12174 85 chmod 711 $fs/etc/ppp/ip*
domcox@12173 86
jozee@5092 87 # insert #!/bin/sh on top line in ip* scripts
jozee@5102 88 sed -i '1i\#!/bin/sh' $fs/etc/ppp/ip*
jozee@5104 89 # add empty peers dir
jozee@5104 90 mkdir -p $fs/etc/ppp/peers
domcox@12174 91 # hide login/pass from regular users
domcox@12174 92 chmod go-rwx $fs/etc/ppp/*secrets
domcox@12174 93 chmod go-rwx $fs/etc/ppp/options
domcox@12174 94 chmod 711 $fs/etc/ppp/scripts/*
trixar_za@12286 95 }