# HG changeset patch # User Hans-G?nter Theisgen # Date 1656518184 -3600 # Node ID 94c4d1ac52fd9388197129ab8bc5974acb6d6c2d # Parent f48c0f9848e47c99cdcd85823f3603f87fa6e679 updated proftpd and proftpd-lang (1.3.6d -> 1.3.7d) diff -r f48c0f9848e4 -r 94c4d1ac52fd proftpd-dev/receipt --- a/proftpd-dev/receipt Wed Jun 29 16:30:00 2022 +0100 +++ b/proftpd-dev/receipt Wed Jun 29 16:56:24 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="proftpd-dev" -VERSION="1.3.6d" +VERSION="1.3.7d" CATEGORY="development" SHORT_DESC="Highly configurable FTP server, development files." MAINTAINER="pascal.bellard@slitaz.org" @@ -14,8 +14,6 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig } diff -r f48c0f9848e4 -r 94c4d1ac52fd proftpd-lang/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proftpd-lang/receipt Wed Jun 29 16:56:24 2022 +0100 @@ -0,0 +1,17 @@ +# SliTaz package receipt. + +PACKAGE="proftpd-lang" +VERSION="1.3.7d" +CATEGORY="localization" +SHORT_DESC="Highly configurable FTP server - localised messages." +MAINTAINER="maintainer@slitaz.org" +LICENSE="GPL2" +WEB_SITE="http://www.proftpd.org/" + +WANTED="proftpd" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cook_copy_folders locale +} diff -r f48c0f9848e4 -r 94c4d1ac52fd proftpd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proftpd/description.txt Wed Jun 29 16:56:24 2022 +0100 @@ -0,0 +1,19 @@ +ProFTPD is a highly configurable GPL-licensed FTP server + +ProFTPD grew out of the desire to have a secure and configurable +FTP server, and out of a significant admiration of the Apache +web server. + +When the Project began, the most commonly used server was wu-ftpd. +While wu-ftpd provides excellent performance and is generally a +good product, it lacks numerous features found in newer Win32 FTP +servers and has a poor security history. +Many people, including the developers who work on ProFTPD, had +spent a great deal of time fixing bugs and hacking features into +wu-ftpd. +Unfortunately, it quickly became clear that a complete redesign +was necessary in order to implement the configurability and +features desired. + +ProFTPD is not a hack based on any other server, it's an independent +source tree from the ground up. diff -r f48c0f9848e4 -r 94c4d1ac52fd proftpd/receipt --- a/proftpd/receipt Wed Jun 29 16:30:00 2022 +0100 +++ b/proftpd/receipt Wed Jun 29 16:56:24 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="proftpd" -VERSION="1.3.6d" +VERSION="1.3.7d" CATEGORY="network" SHORT_DESC="Highly configurable FTP server." MAINTAINER="pascal.bellard@slitaz.org" @@ -11,6 +11,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="ftp://ftp.proftpd.org/distrib/source/$TARBALL" +SUGGESTED="proftpd-lang" DEPENDS="" BUILD_DEPENDS="" @@ -29,9 +30,10 @@ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/share/man \ + --enable-nls \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg.