wok annotate ppp/receipt @ rev 16194

libxcb: back to 1.9.1 for ARM (1.10 is needed for wayland)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 30 22:07:59 2014 +0200 (2014-03-30)
parents 86575a4745f4
children 22d242cf69af
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"
pascal@14698 8 LICENSE="BSD GPL"
pankso@6 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@6 10 WEB_SITE="http://ppp.samba.org/"
pankso@6 11 WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL"
pascal@1634 12 CONFIG_FILES="/etc/ppp"
pankso@16194 13 HOST_ARCH="i486 arm"
pankso@6 14
pankso@6 15 # Rules to configure and make the package.
pankso@6 16 compile_rules()
pankso@6 17 {
pascal@11799 18 if ! grep -qs pppol2tpv3_addr include/linux/if_pppol2tp.h ; then
pascal@11799 19 sed -i /#endif/d include/linux/if_pppol2tp.h
pascal@11799 20 cat >> include/linux/if_pppol2tp.h <<EOT
pascal@11797 21 /* The L2TPv3 protocol changes tunnel and session ids from 16 to 32
pascal@11797 22 * bits. So we need a different sockaddr structure.
pascal@11797 23 */
pascal@11797 24 struct pppol2tpv3_addr {
pascal@11797 25 pid_t pid; /* pid that owns the fd. 0 => current */
pascal@11797 26 int fd; /* FD of UDP or IP socket to use */
pascal@11797 27 struct sockaddr_in addr; /* IP address and port to send to */
pascal@11797 28 __u32 s_tunnel, s_session; /* For matching incoming packets */
pascal@11797 29 __u32 d_tunnel, d_session; /* For sending outgoing packets */
pascal@11797 30 };
pascal@11798 31 #endif
pascal@11797 32 EOT
pascal@11799 33 fi
pankso@16194 34 ./configure --prefix=/usr \
pascal@1634 35 $CONFIGURE_ARGS &&
pascal@1634 36 make &&
pascal@11797 37 make DESTDIR=$DESTDIR/usr install
pankso@6 38 }
pankso@6 39
pankso@6 40 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@6 41 genpkg_rules()
pankso@6 42 {
pankso@6 43 mkdir -p $fs/usr
pascal@15603 44 cp -a $install/usr/sbin $fs/usr
pankso@16194 45 [ -d "$install/usr/lib" ] && cp -a $install/usr/lib $fs/usr
pascal@15968 46 cp -a $stuff/pppnc-server $fs/usr/sbin
pascal@15968 47 ln $fs/usr/sbin/pppnc-server $fs/usr/sbin/pppnc-client
pankso@6 48 # Config files.
pascal@15885 49 mkdir -p $fs/etc/ppp/scripts $fs/etc/ppp/ip-up.d $fs/etc/ppp/ip-down.d
slaxemulator@9475 50 cp $stuff/README.scripts $fs/etc/ppp
pankso@6 51 cp -a $src/etc.ppp/* $fs/etc/ppp
domcox@12173 52
pankso@6 53 # PPP scripts.
pankso@6 54 cp -a $src/scripts/ppp-on $fs/etc/ppp/scripts
pankso@6 55 cp -a $src/scripts/ppp-on-dialer $fs/etc/ppp/scripts
pankso@16194 56 sed -i 's:ppp/ppp-on-dialer:ppp/scripts/ppp-on-dialer:' \
pankso@16194 57 $fs/etc/ppp/scripts/ppp-on
jozee@5104 58
pankso@6 59 cp -a $src/scripts/ppp-off $fs/etc/ppp/scripts
pankso@6 60 cp -a $src/scripts/callback $fs/etc/ppp/scripts
pankso@6 61 cp -a $src/scripts/redialer $fs/etc/ppp/scripts
trixar_za@12286 62 cat >> $fs/etc/ppp/ip-up <<EOT
pascal@15886 63 #!/bin/sh
pascal@15886 64
pascal@15885 65 if [ -x /etc/ppp/ip-up.d/\$6 ]; then
pascal@15885 66 . /etc/ppp/ip-up.d/\$6 "\$@"
pascal@15885 67 elif [ -n "\$USEPEERDNS" -a -f /etc/ppp/resolv.conf ]; then
trixar_za@12286 68 rm -f /etc/ppp/resolv.prev
trixar_za@12286 69 if [ -f /etc/resolv.conf ]; then
trixar_za@12286 70 cp /etc/resolv.conf /etc/ppp/resolv.prev
trixar_za@12286 71 grep domain /etc/ppp/resolv.prev > /etc/resolv.conf
trixar_za@12286 72 grep search /etc/ppp/resolv.prev >> /etc/resolv.conf
trixar_za@12286 73 cat /etc/ppp/resolv.conf >> /etc/resolv.conf
trixar_za@12286 74 chmod 644 /etc/resolv.conf
trixar_za@12286 75 else
trixar_za@12286 76 cp /etc/ppp/resolv.conf /etc
trixar_za@12286 77 chmod 644 /etc/resolv.conf
trixar_za@12286 78 fi
trixar_za@12286 79 fi
trixar_za@12286 80 EOT
trixar_za@12286 81 cat >> $fs/etc/ppp/ip-down <<EOT
pascal@15886 82 #!/bin/sh
pascal@15886 83
pascal@15885 84 if [ -x /etc/ppp/ip-down.d/\$6 ]; then
pascal@15885 85 . /etc/ppp/ip-down.d/\$6 "\$@"
pascal@15885 86 elif [ -n "\$USEPEERDNS" -a -f /etc/ppp/resolv.conf ]; then
trixar_za@12286 87 if [ -f /etc/ppp/resolv.prev ]; then
trixar_za@12286 88 cp -f /etc/ppp/resolv.prev /etc/resolv.conf
trixar_za@12286 89 chmod 644 /etc/resolv.conf
trixar_za@12286 90 else
trixar_za@12286 91 rm -f /etc/resolv.conf
trixar_za@12286 92 fi
trixar_za@12286 93 fi
trixar_za@12286 94 EOT
trixar_za@12286 95 # cp -a $src/scripts/ip-up.local.add $fs/etc/ppp/ip-up
trixar_za@12286 96 # cp -a $src/scripts/ip-down.local.add $fs/etc/ppp/ip-down
pascal@15885 97 chmod 711 $fs/etc/ppp/ip-up $fs/etc/ppp/ip-down
domcox@12173 98
jozee@5092 99 # insert #!/bin/sh on top line in ip* scripts
pankso@16194 100 sed -i '1i\#!/bin/sh' $fs/etc/ppp/ip* 2>/dev/null
jozee@5104 101 # add empty peers dir
jozee@5104 102 mkdir -p $fs/etc/ppp/peers
domcox@12174 103 # hide login/pass from regular users
domcox@12174 104 chmod go-rwx $fs/etc/ppp/*secrets
domcox@12174 105 chmod go-rwx $fs/etc/ppp/options
domcox@12174 106 chmod 711 $fs/etc/ppp/scripts/*
pascal@15886 107 }