From 172dca5aa6e6d27ec7900644b2d492b3cdd4bccd Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sun, 15 May 2005 20:39:09 +0000 Subject: Add vsftpd package git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@913 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/Config.in | 1 + package/Makefile | 1 + package/vsftpd/Config.in | 8 ++++++ package/vsftpd/Makefile | 42 +++++++++++++++++++++++++++++ package/vsftpd/files/vsftpd.conf | 17 ++++++++++++ package/vsftpd/files/vsftpd.init | 15 +++++++++++ package/vsftpd/ipkg/vsftpd.conffiles | 1 + package/vsftpd/ipkg/vsftpd.control | 8 ++++++ package/vsftpd/patches/chroot.patch | 12 +++++++++ package/vsftpd/patches/destdir.patch | 48 ++++++++++++++++++++++++++++++++++ package/vsftpd/patches/find-libs.patch | 14 ++++++++++ 11 files changed, 167 insertions(+) create mode 100644 package/vsftpd/Config.in create mode 100644 package/vsftpd/Makefile create mode 100644 package/vsftpd/files/vsftpd.conf create mode 100644 package/vsftpd/files/vsftpd.init create mode 100644 package/vsftpd/ipkg/vsftpd.conffiles create mode 100644 package/vsftpd/ipkg/vsftpd.control create mode 100644 package/vsftpd/patches/chroot.patch create mode 100644 package/vsftpd/patches/destdir.patch create mode 100644 package/vsftpd/patches/find-libs.patch diff --git a/package/Config.in b/package/Config.in index 55a536d5f2..5ffa293b88 100644 --- a/package/Config.in +++ b/package/Config.in @@ -67,6 +67,7 @@ source "package/siproxd/Config.in" source "package/sipsak/Config.in" source "package/htpdate/Config.in" source "package/howl/Config.in" +source "package/vsftpd/Config.in" source "package/xinetd/Config.in" comment "Libraries" diff --git a/package/Makefile b/package/Makefile index b6f5f809f4..8e8677e1c1 100644 --- a/package/Makefile +++ b/package/Makefile @@ -89,6 +89,7 @@ package-$(BR2_PACKAGE_SIPSAK) += sipsak package-$(BR2_PACKAGE_HTPDATE) += htpdate package-$(BR2_PACKAGE_HOWL) += howl package-$(BR2_PACKAGE_OSIRISD) += osiris +package-$(BR2_PACKAGE_VSFTPD) += vsftpd package-$(BR2_PACKAGE_XINETD) += xinetd DEV_LIBS:=tcp_wrappers glib ncurses openssl pcre popt zlib libnet libpcap mysql postgresql iptables matrixssl lzo gmp fuse portmap libelf uclibc++ speex libpng libgd diff --git a/package/vsftpd/Config.in b/package/vsftpd/Config.in new file mode 100644 index 0000000000..5f708f046e --- /dev/null +++ b/package/vsftpd/Config.in @@ -0,0 +1,8 @@ +config BR2_PACKAGE_VSFTPD + tristate "vsftpd - a fast and secure FTP server" + default m if CONFIG_DEVEL + help + A fast and secure FTP server + + http://vsftpd.beasts.org/ + diff --git a/package/vsftpd/Makefile b/package/vsftpd/Makefile new file mode 100644 index 0000000000..a8b32f1e8a --- /dev/null +++ b/package/vsftpd/Makefile @@ -0,0 +1,42 @@ +# $Id$ + +include $(TOPDIR)/rules.mk + +PKG_NAME:=vsftpd +PKG_VERSION:=1.2.2 +PKG_RELEASE:=1 +PKG_MD5SUM:=5a38e1c69062e7688fbbdae6d1196de2 + +PKG_SOURCE_URL:=ftp://vsftpd.beasts.org/users/cevans/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_CAT:=zcat + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) +PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install + +include $(TOPDIR)/package/rules.mk + +$(eval $(call PKG_template,VSFTPD,vsftpd,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) + +$(PKG_BUILD_DIR)/.configured: + touch $(PKG_BUILD_DIR)/.configured + +$(PKG_BUILD_DIR)/.built: + $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS)" + mkdir -p $(PKG_INSTALL_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + install + touch $(PKG_BUILD_DIR)/.built + +$(IPKG_VSFTPD): + install -d -m0755 $(IDIR_VSFTPD)/etc + install -m0644 ./files/vsftpd.conf $(IDIR_VSFTPD)/etc/vsftpd.conf + install -d -m0755 $(IDIR_VSFTPD)/etc/init.d + install -m0755 ./files/vsftpd.init $(IDIR_VSFTPD)/etc/init.d/vsftpd + install -d -m0755 $(IDIR_VSFTPD)/usr/sbin + cp -fpR $(PKG_INSTALL_DIR)/usr/sbin/vsftpd $(IDIR_VSFTPD)/usr/sbin/ + $(RSTRIP) $(IDIR_VSFTPD) + $(IPKG_BUILD) $(IDIR_VSFTPD) $(PACKAGE_DIR) diff --git a/package/vsftpd/files/vsftpd.conf b/package/vsftpd/files/vsftpd.conf new file mode 100644 index 0000000000..f3ba34f507 --- /dev/null +++ b/package/vsftpd/files/vsftpd.conf @@ -0,0 +1,17 @@ +background=YES +listen=YES +anonymous_enable=NO +local_enable=YES +write_enable=YES +local_umask=022 +check_shell=NO +#dirmessage_enable=YES +#ftpd_banner=Welcome to blah FTP service. +session_support=NO +#syslog_enable=YES +#userlist_enable=YES +#userlist_deny=NO +#userlist_file=/etc/vsftpd.users +#xferlog_enable=YES +#xferlog_file=/var/log/vsftpd.log +#xferlog_std_format=YES diff --git a/package/vsftpd/files/vsftpd.init b/package/vsftpd/files/vsftpd.init new file mode 100644 index 0000000000..4d4f4f240d --- /dev/null +++ b/package/vsftpd/files/vsftpd.init @@ -0,0 +1,15 @@ +#!/bin/sh + +RUN_D=/var/run/vsftpd + +case $1 in + start) + [ -d $RUN_D ] || mkdir -p $RUN_D + vsftpd + ;; + *) + echo "usage: $0 (start)" + exit 1 +esac + +exit $? diff --git a/package/vsftpd/ipkg/vsftpd.conffiles b/package/vsftpd/ipkg/vsftpd.conffiles new file mode 100644 index 0000000000..45632cf311 --- /dev/null +++ b/package/vsftpd/ipkg/vsftpd.conffiles @@ -0,0 +1 @@ +/etc/vsftpd.conf diff --git a/package/vsftpd/ipkg/vsftpd.control b/package/vsftpd/ipkg/vsftpd.control new file mode 100644 index 0000000000..2c301f592c --- /dev/null +++ b/package/vsftpd/ipkg/vsftpd.control @@ -0,0 +1,8 @@ +Package: vsftpd +Priority: optional +Section: net +Version: [TBDL] +Architecture: [TBDL] +Maintainer: Nico +Source: http://nthill.free.fr/openwrt/sources/vsftpd/ +Description: a fast and secure FTP server diff --git a/package/vsftpd/patches/chroot.patch b/package/vsftpd/patches/chroot.patch new file mode 100644 index 0000000000..4c25736242 --- /dev/null +++ b/package/vsftpd/patches/chroot.patch @@ -0,0 +1,12 @@ +diff -ruN vsftpd-1.2.2-orig/tunables.c vsftpd-1.2.2-3/tunables.c +--- vsftpd-1.2.2-orig/tunables.c 2004-04-20 02:25:05.000000000 +0200 ++++ vsftpd-1.2.2-3/tunables.c 2005-03-09 21:12:35.000000000 +0100 +@@ -78,7 +78,7 @@ + unsigned int tunable_max_per_ip = 0; + unsigned int tunable_trans_chunk_size = 0; + +-const char* tunable_secure_chroot_dir = "/usr/share/empty"; ++const char* tunable_secure_chroot_dir = "/var/run/vsftpd"; + const char* tunable_ftp_username = "ftp"; + const char* tunable_chown_username = "root"; + const char* tunable_xferlog_file = "/var/log/xferlog"; diff --git a/package/vsftpd/patches/destdir.patch b/package/vsftpd/patches/destdir.patch new file mode 100644 index 0000000000..c4fb40f4e0 --- /dev/null +++ b/package/vsftpd/patches/destdir.patch @@ -0,0 +1,48 @@ +diff -ruN vsftpd-1.2.2-orig/Makefile vsftpd-1.2.2-3/Makefile +--- vsftpd-1.2.2-orig/Makefile 2003-09-15 13:41:58.000000000 +0200 ++++ vsftpd-1.2.2-3/Makefile 2005-03-09 22:23:12.000000000 +0100 +@@ -16,6 +16,8 @@ + tcpwrap.o ipv6parse.o access.o \ + sysutil.o sysdeputil.o + ++DESTDIR = ++ + .c.o: + $(CC) -c $*.c $(CFLAGS) $(IFLAGS) + +@@ -23,21 +25,20 @@ + $(CC) -o vsftpd $(OBJS) $(LINK) $(LIBS) + + install: +- if [ -x /usr/local/sbin ]; then \ +- $(INSTALL) -m 755 vsftpd /usr/local/sbin/vsftpd; \ +- else \ +- $(INSTALL) -m 755 vsftpd /usr/sbin/vsftpd; fi +- if [ -x /usr/local/man ]; then \ +- $(INSTALL) -m 644 vsftpd.8 /usr/local/man/man8/vsftpd.8; \ +- $(INSTALL) -m 644 vsftpd.conf.5 /usr/local/man/man5/vsftpd.conf.5; \ +- elif [ -x /usr/share/man ]; then \ +- $(INSTALL) -m 644 vsftpd.8 /usr/share/man/man8/vsftpd.8; \ +- $(INSTALL) -m 644 vsftpd.conf.5 /usr/share/man/man5/vsftpd.conf.5; \ +- else \ +- $(INSTALL) -m 644 vsftpd.8 /usr/man/man8/vsftpd.8; \ +- $(INSTALL) -m 644 vsftpd.conf.5 /usr/man/man5/vsftpd.conf.5; fi +- if [ -x /etc/xinetd.d ]; then \ +- $(INSTALL) -m 644 xinetd.d/vsftpd /etc/xinetd.d/vsftpd; fi ++ mkdir -p $(DESTDIR)/usr/sbin ++ $(INSTALL) -m 755 vsftpd $(DESTDIR)/usr/sbin/ ++ mkdir -p $(DESTDIR)/usr/share/man/man8 ++ $(INSTALL) -m 644 vsftpd.8 $(DESTDIR)/usr/share/man/man8/ ++ mkdir -p $(DESTDIR)/usr/share/man/man5 ++ $(INSTALL) -m 644 vsftpd.conf.5 $(DESTDIR)/usr/share/man/man5/ ++ mkdir -p $(DESTDIR)/etc/xinetd.d ++ $(INSTALL) -m 644 xinetd.d/vsftpd $(DESTDIR)/etc/xinetd.d/ ++ ++uninstall: ++ rm -f $(DESTDIR)/usr/sbin/vsftpd ++ rm -f $(DESTDIR)/usr/share/man/man8/vsftpd.8 ++ rm -f $(DESTDIR)/usr/share/man/man5/vsftpd.conf.5 ++ rm -f $(DESTDIR)/etc/xinetd.d/vsftpd + + clean: + rm -f *.o *.swp vsftpd diff --git a/package/vsftpd/patches/find-libs.patch b/package/vsftpd/patches/find-libs.patch new file mode 100644 index 0000000000..ae8e9f7dbf --- /dev/null +++ b/package/vsftpd/patches/find-libs.patch @@ -0,0 +1,14 @@ +diff -ruN vsftpd-1.2.2-orig/Makefile vsftpd-1.2.2-3/Makefile +--- vsftpd-1.2.2-orig/Makefile 2003-09-15 13:41:58.000000000 +0200 ++++ vsftpd-1.2.2-3/Makefile 2005-03-09 22:23:12.000000000 +0100 +@@ -5,8 +5,8 @@ + #CFLAGS = -g + CFLAGS = -O2 -Wall -W -Wshadow #-pedantic -Werror -Wconversion + +-LIBS = `./vsf_findlibs.sh` +-LINK = -Wl,-s ++LIBS = -lcrypt -lnsl ++LINK = + + OBJS = main.o utility.o prelogin.o ftpcmdio.o postlogin.o privsock.o \ + tunables.o ftpdataio.o secbuf.o ls.o \ -- cgit v1.2.3