# HG changeset patch # User Pascal Bellard # Date 1650039333 0 # Node ID 970deba23db6fa6afd954c7ee8cea85d97351bf8 # Parent ea67ada22d065f08c774fcfa86cca003e59ddb1a f2c: add libf2c diff -r ea67ada22d06 -r 970deba23db6 f2c/receipt --- a/f2c/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/f2c/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -7,8 +7,10 @@ MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" TARBALL="$PACKAGE-$VERSION.tgz" -WEB_SITE="http://www.netlib.org/f2c/" -WGET_URL="${WEB_SITE}src.tgz" +WEB_SITE="https://github.com/barak/f2c" +WGET_URL="http://www.netlib.org/f2c/src.tgz" +LIBF2C="http://www.netlib.org/f2c/libf2c.zip" +EXTRA_SOURCE_FILES="${LIBF2C##*/}" TAGS="fortran" # What is the latest version available today? @@ -21,14 +23,25 @@ # Rules to configure and make the package. compile_rules() { + [ -s $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES ] || + wget -P $SOURCES_REPOSITORY $LIBF2C cp makefile.u makefile make + unzip $SOURCES_REPOSITORY/$EXTRA_SOURCE_FILES -d libf2c + cd libf2c + sed 's|^CFLAGS.*|& -fPIC -DNON_UNIX_STDIO|' < makefile.u > makefile + make all libf2c.so } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $install/usr/man $fs/usr/bin + mkdir -p $install/usr/man $fs/usr/bin $fs/usr/lib $fs/usr/include cp -a $src/f2c $fs/usr/bin + cp -a $src/libf2c/f2c.h $fs/usr/include + cp -a $src/libf2c/libf2c.a $fs/usr/lib + cp -a $src/libf2c/libf2c.so $fs/usr/lib/libf2c.so.1.0.0 + ln -s libf2c.so.1.0.0 $fs/usr/lib/libf2c.so.1 + ln -s libf2c.so.1.0.0 $fs/usr/lib/libf2c.so cp -a $src/f2c.1t $install/usr/man/f2c.1 } diff -r ea67ada22d06 -r 970deba23db6 lives/receipt --- a/lives/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/lives/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -6,7 +6,7 @@ SHORT_DESC="Simple to use, yet powerful video editor and VJ tool." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" -WEB_SITE="http://lives-video.com/" +WEB_SITE="https://github.com/salsaman/LiVES" SOURCE="LiVES" TARBALL="$SOURCE-$VERSION.tar.bz2" diff -r ea67ada22d06 -r 970deba23db6 snort-dev/receipt --- a/snort-dev/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/snort-dev/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -6,7 +6,7 @@ SHORT_DESC="Network intrusion prevention and detection system, development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://www.snort.org/" +WEB_SITE="https://github.com/snort3/snort3" DEPENDS="pkg-config snort" WANTED="snort" diff -r ea67ada22d06 -r 970deba23db6 snort-mysql/receipt --- a/snort-mysql/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/snort-mysql/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -7,7 +7,7 @@ MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="https://www.snort.org/" +WEB_SITE="https://github.com/snort3/snort3" WGET_URL="https://www.snort.org/downloads/1207" DEPENDS="pcre libdnet libdaq libmysqlclient" BUILD_DEPENDS="pcre-dev libpcap-dev libdaq-dev libdnet-dev wget zlib-dev \ diff -r ea67ada22d06 -r 970deba23db6 snort/receipt --- a/snort/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/snort/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -6,10 +6,10 @@ SHORT_DESC="Network intrusion prevention and detection system (IDS/IPS)." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -WEB_SITE="https://www.snort.org/" +WEB_SITE="https://github.com/snort3/snort3" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="${WEB_SITE}downloads/$PACKAGE/$TARBALL" +WGET_URL="https://www.snort.org/downloads/$PACKAGE/$TARBALL" DEPENDS="libdaq libdnet openssl pcre" BUILD_DEPENDS="flex libdaq-dev libdnet-dev libpcap-dev luajit-dev diff -r ea67ada22d06 -r 970deba23db6 urbackup-client/receipt --- a/urbackup-client/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/urbackup-client/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -7,7 +7,7 @@ SHORT_DESC="An easy to setup Open Source client-server backup system." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -WEB_SITE="https://www.urbackup.org/" +WEB_SITE="https://github.com/uroni/urbackup_backend" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://hndl.urbackup.org/Client/$VERSION/$TARBALL" @@ -18,7 +18,7 @@ # What is the latest version available today? current_version() { - wget -O - $WEB_SITE/download.html 2>/dev/null | \ + wget -O - https://www.urbackup.org/download.html 2>/dev/null | \ sed "/$PACKAGE-/!d;/href/!d;s|.*$PACKAGE-||;s|.tar.*||;q" } diff -r ea67ada22d06 -r 970deba23db6 urbackup-server/receipt --- a/urbackup-server/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/urbackup-server/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -7,7 +7,7 @@ SHORT_DESC="An easy to setup Open Source client-server backup system." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -WEB_SITE="https://www.urbackup.org/" +WEB_SITE="https://github.com/uroni/urbackup_backend" TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://hndl.urbackup.org/Server/$VERSION/$TARBALL" @@ -18,7 +18,7 @@ # What is the latest version available today? current_version() { - wget -O - $WEB_SITE/download.html 2>/dev/null | \ + wget -O - https://www.urbackup.org/download.html 2>/dev/null | \ sed "/$PACKAGE-/!d;/href/!d;s|.*$PACKAGE-||;s|.tar.*||;q" } diff -r ea67ada22d06 -r 970deba23db6 xfburn/receipt --- a/xfburn/receipt Thu Apr 14 09:10:40 2022 +0000 +++ b/xfburn/receipt Fri Apr 15 16:15:33 2022 +0000 @@ -7,7 +7,7 @@ MAINTAINER="devl547@gmail.com" LICENSE="GPL2" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WEB_SITE="https://goodies.xfce.org/projects/applications/xfburn" +WEB_SITE="https://gitlab.xfce.org/apps/xfburn" WGET_URL="http://archive.xfce.org/src/apps/xfburn/${VERSION%.*}/$TARBALL" DEPENDS="gtk+ libburn libexo libisofs libxfce4ui"