wok rev 20835

updated dhcp6, dhcp6-client, and dhcp6-relay (4.2.2 -> 4.4.1)
author Hans-G?nter Theisgen
date Wed Feb 20 13:39:22 2019 +0100 (2019-02-20)
parents 96cf6f4e78d1
children eb396f946524
files dhcp6-client/receipt dhcp6-relay/receipt dhcp6/receipt
line diff
     1.1 --- a/dhcp6-client/receipt	Tue Feb 19 13:18:24 2019 -0500
     1.2 +++ b/dhcp6-client/receipt	Wed Feb 20 13:39:22 2019 +0100
     1.3 @@ -1,12 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="dhcp6-client"
     1.7 -VERSION="4.2.2"
     1.8 +VERSION="4.4.1"
     1.9  CATEGORY="network"
    1.10  SHORT_DESC="Dynamic Host Configuration Protocol ISC client with ipv6 support."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  LICENSE="ISC"
    1.13  WEB_SITE="http://www.isc.org/products/DHCP/"
    1.14 +
    1.15  WANTED="dhcp6"
    1.16  DEPENDS="libcrypto"
    1.17  CONFIG_FILES="/etc/dhclient.conf"
    1.18 @@ -16,9 +17,8 @@
    1.19  genpkg_rules()
    1.20  {
    1.21  	mkdir -p $fs/usr/sbin $fs/usr/bin $fs/etc
    1.22 -	cp $install/etc/dhclient.conf $fs/etc
    1.23 +	cp $install/etc/dhclient.conf.example $fs/etc/dhcpd.conf
    1.24  	cp $src/client/scripts/linux $fs/etc/dhclient-script
    1.25  	cp $install/usr/sbin/dhclient $fs/usr/sbin
    1.26  	cp $install/usr/bin/omshell $fs/usr/bin
    1.27  }
    1.28 -
     2.1 --- a/dhcp6-relay/receipt	Tue Feb 19 13:18:24 2019 -0500
     2.2 +++ b/dhcp6-relay/receipt	Wed Feb 20 13:39:22 2019 +0100
     2.3 @@ -1,15 +1,15 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="dhcp6-relay"
     2.7 -VERSION="4.2.2"
     2.8 +VERSION="4.4.1"
     2.9  CATEGORY="network"
    2.10  SHORT_DESC="Dynamic Host Configuration Protocol relay with ipv6 support."
    2.11  MAINTAINER="pascal.bellard@slitaz.org"
    2.12  LICENSE="ISC"
    2.13  WEB_SITE="http://www.isc.org/products/DHCP/"
    2.14 +
    2.15  WANTED="dhcp6"
    2.16  PROVIDE="dhcp-relay"
    2.17 -
    2.18  DEPENDS="libcrypto"
    2.19  
    2.20  # Rules to gen a SliTaz package suitable for Tazpkg.
     3.1 --- a/dhcp6/receipt	Tue Feb 19 13:18:24 2019 -0500
     3.2 +++ b/dhcp6/receipt	Wed Feb 20 13:39:22 2019 +0100
     3.3 @@ -1,18 +1,19 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="dhcp6"
     3.7 -VERSION="4.2.2"
     3.8 +VERSION="4.4.1"
     3.9  CATEGORY="network"
    3.10  SHORT_DESC="Dynamic Host Configuration Protocol server with ipv6 support."
    3.11  MAINTAINER="pascal.bellard@slitaz.org"
    3.12  LICENSE="ISC"
    3.13 +WEB_SITE="http://www.isc.org/products/DHCP/"
    3.14 +
    3.15  SOURCE="dhcp"
    3.16  TARBALL="$SOURCE-$VERSION.tar.gz"
    3.17 -WEB_SITE="http://www.isc.org/products/DHCP/"
    3.18  WGET_URL="http://ftp.isc.org/isc/$SOURCE/$TARBALL"
    3.19 +
    3.20  CONFIG_FILES="/etc/dhcpd.conf"
    3.21  PROVIDE="dhcp"
    3.22 -
    3.23  DEPENDS="libcrypto"
    3.24  BUILD_DEPENDS="perl file"
    3.25  
    3.26 @@ -25,16 +26,21 @@
    3.27  	sed -i "s/SEMI/MYEOL = '\\\\n',\n\tQUESTION = '?',\n\t&/" \
    3.28  		includes/dhctoken.h
    3.29  	sed -i 's/== NOERROR/== (isc_result_t) NOERROR/' server/ddns.c
    3.30 -	./configure --prefix=/usr --infodir=/usr/share/info \
    3.31 -	--sysconfdir=/etc --mandir=/usr/share/man $CONFIGURE_ARGS && \
    3.32 -	make && make DESTDIR=$DESTDIR install
    3.33 +	./configure \
    3.34 +		--prefix=/usr \
    3.35 +		--infodir=/usr/share/info \
    3.36 +		--sysconfdir=/etc \
    3.37 +		--mandir=/usr/share/man \
    3.38 +		$CONFIGURE_ARGS &&
    3.39 +	make -j 1 &&
    3.40 +	make DESTDIR=$DESTDIR install
    3.41  }
    3.42  
    3.43  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.44  genpkg_rules()
    3.45  {
    3.46  	mkdir -p $fs/usr/sbin $fs/etc/init.d
    3.47 -	cp $install/etc/dhcpd.conf $fs/etc
    3.48 +	cp $install/etc/dhcpd.conf.example $fs/etc/dhcpd.conf
    3.49  	cp $install/usr/sbin/dhcpd $fs/usr/sbin
    3.50  	cp $WOK/dhcp/stuff/dhcpd $fs/etc/init.d
    3.51  }