# HG changeset patch # User Hans-G?nter Theisgen # Date 1683922710 -3600 # Node ID 3a856211222e19f9a0323cf696f98daa42c300b0 # Parent f2b7e5dd6de3a7d544ef01f5f0be80c8d0655ba9 updated amule (2.3.2 -> 2.3.3) diff -r f2b7e5dd6de3 -r 3a856211222e amule-lang/receipt --- a/amule-lang/receipt Fri May 12 17:54:34 2023 +0100 +++ b/amule-lang/receipt Fri May 12 21:18:30 2023 +0100 @@ -1,11 +1,11 @@ # SliTaz package receipt. PACKAGE="amule-lang" -VERSION="2.3.2" +VERSION="2.3.3" CATEGORY="localization" TAGS="p2p peer-to-peer fileshare - localised messages." SHORT_DESC="An eMule-like client for the eD2k and Kademlia networks." -MAINTAINER="pankso@slitaz.org" +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL2" WEB_SITE="http://www.amule.org/" diff -r f2b7e5dd6de3 -r 3a856211222e amule/receipt --- a/amule/receipt Fri May 12 17:54:34 2023 +0100 +++ b/amule/receipt Fri May 12 21:18:30 2023 +0100 @@ -1,9 +1,9 @@ # SliTaz package receipt. PACKAGE="amule" -VERSION="2.3.2" +VERSION="2.3.3" CATEGORY="network" -TAGS="p2p peer-to-peer fileshare" +TAGS="fileshare p2p peer-to-peer" SHORT_DESC="An eMule-like client for the eD2k and Kademlia networks." MAINTAINER="pankso@slitaz.org" LICENSE="GPL2" @@ -28,8 +28,9 @@ # Rules to configure and make the package. compile_rules() { - patch -p1 < $stuff/libupnp1.8.patch || exit 1 - patch --strip=0 --input=$stuff/patches/MuleDebug.cpp-2.3.2 && + # 2.3.2 +# patch -p1 < $stuff/libupnp1.8.patch || exit 1 +# patch --strip=0 --input=$stuff/patches/MuleDebug.cpp-2.3.2 && # What works for imule (see https://aur.archlinux.org/packages/imule) # might work for amule also: @@ -37,17 +38,22 @@ src/ClientCreditsList.cpp # Fixed libupnp API breakage. - sed -e 's|UpnpInit(ipAddress|UpnpInit2(0|' -e 's|UpnpInit)|UpnpInit2)|' \ - -e 's|ipAddress = NULL|ipAddress|' -e 's|port = 0|port|' \ - -i src/UPnPBase.cpp + sed -i -e 's|UpnpInit(ipAddress|UpnpInit2(0|' \ + -e 's|UpnpInit)|UpnpInit2)|' \ + -e 's|ipAddress = NULL|ipAddress|' \ + -e 's|port = 0|port|' \ + src/UPnPBase.cpp ./configure \ --prefix=/usr \ + --disable-debug \ $CONFIGURE_ARGS && make $MAKEFLAGS && make install DESTDIR=$DESTDIR && + ./configure \ --prefix=/usr \ + --disable-debug \ --disable-monolithic \ --enable-amule-daemon \ --enable-amulecmd \ @@ -62,12 +68,12 @@ { mkdir -p $fs/usr/share - rm -rf $install/usr/share/man/?? - rm -rf $install/usr/share/man/*_* +# rm -rf $install/usr/share/man/?? +# rm -rf $install/usr/share/man/*_* cp -a $install/usr/bin $fs/usr cp -a $install/usr/share/amule $fs/usr/share + # Remove unused files in this base package. -# not existing -# rm $fs/usr/share/amule/skins/kde4.zip -# rm $fs/usr/share/amule/skins/gnome.zip + rm $fs/usr/share/amule/skins/kde4.zip + rm $fs/usr/share/amule/skins/gnome.zip }