wok-current rev 25149
updated proftpd and proftpd-lang (1.3.6d -> 1.3.7d)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Jun 29 16:56:24 2022 +0100 (2022-06-29) |
parents | f48c0f9848e4 |
children | d642857253e7 |
files | proftpd-dev/receipt proftpd-lang/receipt proftpd/description.txt proftpd/receipt |
line diff
1.1 --- a/proftpd-dev/receipt Wed Jun 29 16:30:00 2022 +0100 1.2 +++ b/proftpd-dev/receipt Wed Jun 29 16:56:24 2022 +0100 1.3 @@ -1,7 +1,7 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="proftpd-dev" 1.7 -VERSION="1.3.6d" 1.8 +VERSION="1.3.7d" 1.9 CATEGORY="development" 1.10 SHORT_DESC="Highly configurable FTP server, development files." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 @@ -14,8 +14,6 @@ 1.13 # Rules to gen a SliTaz package suitable for Tazpkg. 1.14 genpkg_rules() 1.15 { 1.16 - mkdir -p $fs/usr/lib 1.17 - 1.18 - cp -a $install/usr/include $fs/usr 1.19 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.20 + cook_copy_folders include 1.21 + cook_copy_folders pkgconfig 1.22 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/proftpd-lang/receipt Wed Jun 29 16:56:24 2022 +0100 2.3 @@ -0,0 +1,17 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="proftpd-lang" 2.7 +VERSION="1.3.7d" 2.8 +CATEGORY="localization" 2.9 +SHORT_DESC="Highly configurable FTP server - localised messages." 2.10 +MAINTAINER="maintainer@slitaz.org" 2.11 +LICENSE="GPL2" 2.12 +WEB_SITE="http://www.proftpd.org/" 2.13 + 2.14 +WANTED="proftpd" 2.15 + 2.16 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.17 +genpkg_rules() 2.18 +{ 2.19 + cook_copy_folders locale 2.20 +}
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/proftpd/description.txt Wed Jun 29 16:56:24 2022 +0100 3.3 @@ -0,0 +1,19 @@ 3.4 +ProFTPD is a highly configurable GPL-licensed FTP server 3.5 + 3.6 +ProFTPD grew out of the desire to have a secure and configurable 3.7 +FTP server, and out of a significant admiration of the Apache 3.8 +web server. 3.9 + 3.10 +When the Project began, the most commonly used server was wu-ftpd. 3.11 +While wu-ftpd provides excellent performance and is generally a 3.12 +good product, it lacks numerous features found in newer Win32 FTP 3.13 +servers and has a poor security history. 3.14 +Many people, including the developers who work on ProFTPD, had 3.15 +spent a great deal of time fixing bugs and hacking features into 3.16 +wu-ftpd. 3.17 +Unfortunately, it quickly became clear that a complete redesign 3.18 +was necessary in order to implement the configurability and 3.19 +features desired. 3.20 + 3.21 +ProFTPD is not a hack based on any other server, it's an independent 3.22 +source tree from the ground up.
4.1 --- a/proftpd/receipt Wed Jun 29 16:30:00 2022 +0100 4.2 +++ b/proftpd/receipt Wed Jun 29 16:56:24 2022 +0100 4.3 @@ -1,7 +1,7 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="proftpd" 4.7 -VERSION="1.3.6d" 4.8 +VERSION="1.3.7d" 4.9 CATEGORY="network" 4.10 SHORT_DESC="Highly configurable FTP server." 4.11 MAINTAINER="pascal.bellard@slitaz.org" 4.12 @@ -11,6 +11,7 @@ 4.13 TARBALL="$PACKAGE-$VERSION.tar.gz" 4.14 WGET_URL="ftp://ftp.proftpd.org/distrib/source/$TARBALL" 4.15 4.16 +SUGGESTED="proftpd-lang" 4.17 DEPENDS="" 4.18 BUILD_DEPENDS="" 4.19 4.20 @@ -29,9 +30,10 @@ 4.21 --sysconfdir=/etc \ 4.22 --localstatedir=/var \ 4.23 --mandir=/usr/share/man \ 4.24 + --enable-nls \ 4.25 $CONFIGURE_ARGS && 4.26 make && 4.27 - make DESTDIR=$DESTDIR install 4.28 + make install DESTDIR=$DESTDIR 4.29 } 4.30 4.31 # Rules to gen a SliTaz package suitable for Tazpkg.