# HG changeset patch # User Pascal Bellard # Date 1430596126 -7200 # Node ID c6508bb9fd8ac0de908425e3b307ade934e7d749 # Parent 86becc422032569577ba094a4c93dd61b4292470 Up ppp (2.4.7) diff -r 86becc422032 -r c6508bb9fd8a ppp-dev/receipt --- a/ppp-dev/receipt Sat May 02 18:09:05 2015 +0200 +++ b/ppp-dev/receipt Sat May 02 21:48:46 2015 +0200 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ppp-dev" -VERSION="2.4.5" +VERSION="2.4.7" CATEGORY="development" SHORT_DESC="Point-to-Point Protocol (PPP) development files." MAINTAINER="pankso@slitaz.org" diff -r 86becc422032 -r c6508bb9fd8a ppp/receipt --- a/ppp/receipt Sat May 02 18:09:05 2015 +0200 +++ b/ppp/receipt Sat May 02 21:48:46 2015 +0200 @@ -1,40 +1,25 @@ # SliTaz package receipt. PACKAGE="ppp" -VERSION="2.4.5" +VERSION="2.4.7" CATEGORY="network" SHORT_DESC="Implements the Point-to-Point Protocol (PPP)." MAINTAINER="pankso@slitaz.org" LICENSE="BSD GPL" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://ppp.samba.org/" -WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL" +WGET_URL="https://github.com/paulusmack/ppp/archive/$TARBALL" CONFIG_FILES="/etc/ppp" HOST_ARCH="i486 arm" +DEPENDS="wget" SUGGESTED="tazpanel" # Rules to configure and make the package. compile_rules() { - if ! grep -qs pppol2tpv3_addr include/linux/if_pppol2tp.h ; then - sed -i /#endif/d include/linux/if_pppol2tp.h - cat >> include/linux/if_pppol2tp.h < current */ - int fd; /* FD of UDP or IP socket to use */ - struct sockaddr_in addr; /* IP address and port to send to */ - __u32 s_tunnel, s_session; /* For matching incoming packets */ - __u32 d_tunnel, d_session; /* For sending outgoing packets */ -}; -#endif -EOT - fi ./configure --prefix=/usr \ - $CONFIGURE_ARGS && + $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR/usr install }