wok-6.x rev 25395
updated vde2 and vde2-dev (2.3.1 -> 2.3.3)
author | Hans-G?nter Theisgen |
---|---|
date | Mon Aug 01 17:34:00 2022 +0100 (2022-08-01) |
parents | 63508cf5d3dd |
children | c38360befd02 |
files | vde2-dev/receipt vde2/receipt |
line diff
1.1 --- a/vde2-dev/receipt Mon Aug 01 17:03:35 2022 +0100 1.2 +++ b/vde2-dev/receipt Mon Aug 01 17:34:00 2022 +0100 1.3 @@ -1,22 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="vde2-dev" 1.7 -VERSION="2.3.1" 1.8 +VERSION="2.3.3" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Virtual Distributed Ethernet developement files" 1.11 +SHORT_DESC="Virtual Distributed Ethernet - developement files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 -WEB_SITE="http://vde.sourceforge.net/" 1.15 -WANTED="vde2" 1.16 +WEB_SITE="https://github.com/virtualsquare/vde-2" 1.17 1.18 DEPENDS="pkg-config" 1.19 +WANTED="vde2" 1.20 1.21 # Rules to gen a SliTaz package suitable for Tazpkg. 1.22 genpkg_rules() 1.23 { 1.24 mkdir -p $fs/usr/lib/vde2 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/vde2/*a $fs/usr/lib/vde2 1.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.28 - cp -a $install/usr/include $fs/usr 1.29 + 1.30 + cp -a $install/usr/lib/*a $fs/usr/lib 1.31 + cp -a $install/usr/lib/vde2/*a $fs/usr/lib/vde2 1.32 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.33 + cp -a $install/usr/include $fs/usr 1.34 }
2.1 --- a/vde2/receipt Mon Aug 01 17:03:35 2022 +0100 2.2 +++ b/vde2/receipt Mon Aug 01 17:34:00 2022 +0100 2.3 @@ -1,17 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="vde2" 2.7 -VERSION="2.3.1" 2.8 +VERSION="2.3.3" 2.9 CATEGORY="network" 2.10 SHORT_DESC="Virtual Distributed Ethernet." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.14 -WEB_SITE="http://vde.sourceforge.net/" 2.15 -WGET_URL="$SF_MIRROR/vde/$TARBALL" 2.16 +WEB_SITE="https://github.com/virtualsquare/vde-2/" 2.17 +REPOLOGY="vde" 2.18 + 2.19 +TARBALL="$PACKAGE-$VERSION.tar.gz" 2.20 +WGET_URL="https://github.com/virtualsquare/vde-2/archive/refs/tags/v$VERSION.tar.gz" 2.21 2.22 DEPENDS="libcrypto" 2.23 -BUILD_DEPENDS="libcrypto libcrypto-dev" 2.24 +BUILD_DEPENDS="automake libcrypto libcrypto-dev libtool" 2.25 2.26 # What is the latest version available today? 2.27 current_version() 2.28 @@ -24,22 +26,25 @@ 2.29 # Rules to configure and make the package. 2.30 compile_rules() 2.31 { 2.32 - ./configure --prefix=/usr \ 2.33 - --libexecdir=/usr/lib/$PACKAGE \ 2.34 - --sysconfdir=/etc \ 2.35 - --mandir=/usr/share/man \ 2.36 - $CONFIGURE_ARGS && 2.37 + autoreconf --install && 2.38 + ./configure \ 2.39 + --prefix=/usr \ 2.40 + --libexecdir=/usr/lib/$PACKAGE \ 2.41 + --sysconfdir=/etc \ 2.42 + --mandir=/usr/share/man \ 2.43 + $CONFIGURE_ARGS && 2.44 make && 2.45 - make DESTDIR=$DESTDIR install 2.46 + make install DESTDIR=$DESTDIR 2.47 } 2.48 2.49 # Rules to gen a SliTaz package suitable for Tazpkg. 2.50 genpkg_rules() 2.51 { 2.52 mkdir -p $fs/usr/lib/vde2 2.53 - cp -a $install/etc $fs 2.54 - cp -a $install/usr/bin $fs/usr 2.55 - cp -a $install/usr/sbin $fs/usr 2.56 - cp -a $install/usr/lib/*.so* $fs/usr/lib 2.57 - cp -a $install/usr/lib/vde2/*.so* $fs/usr/lib/vde2 2.58 + cp -a $install/etc $fs 2.59 + cp -a $install/usr/bin $fs/usr 2.60 + # 2.3.3 not created 2.61 +# cp -a $install/usr/sbin $fs/usr 2.62 + cp -a $install/usr/lib/*.so* $fs/usr/lib 2.63 + cp -a $install/usr/lib/vde2/*.so* $fs/usr/lib/vde2 2.64 }