Loading package/proftpd/Config.in 0 → 100644 +6 −0 Original line number Diff line number Diff line config BR2_PACKAGE_PROFTPD bool "proftpd" default n help ProFTPD, a highly configurable FTP server. package/proftpd/init-proftpd 0 → 100755 +47 −0 Original line number Diff line number Diff line #!/bin/sh DAEMON=/usr/sbin/proftpd trap "" 1 trap "" 15 test -f $DAEMON || exit 0 [ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd [ ! -f /var/log/wtmp ] && touch /var/log/wtmp start() { echo -n "Starting ProFTPD: " $DAEMON if [ $? != 0 ]; then echo "FAILED" exit 1 else echo "done" fi } stop() { echo -n "Stopping ProFTPD: " killall proftpd echo "done" } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; *) echo "Usage: /etc/init.d/S50proftpd {start|stop|restart}" exit 1 ;; esac exit 0 package/proftpd/proftpd.mk 0 → 100644 +79 −0 Original line number Diff line number Diff line ############################################################# # # proftpd # ############################################################# PROFTPD_VER:=1.3.0a PROFTPD_SOURCE:=proftpd-$(PROFTPD_VER).tar.bz2 PROFTPD_SITE:=ftp://ftp.proftpd.org/distrib/source/ PROFTPD_DIR:=$(BUILD_DIR)/proftpd-$(PROFTPD_VER) PROFTPD_CAT:=bzcat PROFTPD_BINARY:=proftpd PROFTPD_TARGET_BINARY:=usr/sbin/proftpd $(DL_DIR)/$(PROFTPD_SOURCE): $(WGET) -P $(DL_DIR) $(PROFTPD_SITE)/$(PROFTPD_SOURCE) proftpd-source: $(DL_DIR)/$(PROFTPD_SOURCE) $(PROFTPD_DIR)/.unpacked: $(DL_DIR)/$(PROFTPD_SOURCE) $(PROFTPD_CAT) $(DL_DIR)/$(PROFTPD_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - touch $(PROFTPD_DIR)/.unpacked $(PROFTPD_DIR)/.configured: $(PROFTPD_DIR)/.unpacked (cd $(PROFTPD_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ ac_cv_func_setpgrp_void=yes \ ac_cv_func_setgrent_void=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var/run \ --disable-static \ --disable-curses \ --disable-ncurses \ --disable-facl \ --disable-dso \ --enable-shadow \ $(DISABLE_LARGEFILE) \ --with-gnu-ld \ ); touch $(PROFTPD_DIR)/.configured $(PROFTPD_DIR)/$(PROFTPD_BINARY): $(PROFTPD_DIR)/.configured $(MAKE) CC="$(HOSTCC)" CFLAGS="" LDFLAGS="" \ -C $(PROFTPD_DIR)/lib/libcap _makenames $(MAKE) -C $(PROFTPD_DIR) $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY): $(PROFTPD_DIR)/$(PROFTPD_BINARY) cp -a $(PROFTPD_DIR)/$(PROFTPD_BINARY) \ $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) @if [ ! -f $(TARGET_DIR)/etc/proftpd.conf ] ; then \ $(INSTALL) -m 0644 -D $(PROFTPD_DIR)/sample-configurations/basic.conf $(TARGET_DIR)/etc/proftpd.conf; \ fi; $(INSTALL) -m 0755 -D package/proftpd/init-proftpd $(TARGET_DIR)/etc/init.d/S50proftpd proftpd: uclibc $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) proftpd-clean: rm -f $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) rm -f $(TARGET_DIR)/etc/init.d/S50proftpd rm -f $(TARGET_DIR)/etc/proftpd.conf -$(MAKE) -C $(PROFTPD_DIR) clean proftpd-dirclean: rm -rf $(PROFTPD_DIR) ############################################################# # # Toplevel Makefile options # ############################################################# ifeq ($(strip $(BR2_PACKAGE_PROFTPD)),y) TARGETS+=proftpd endif Loading
package/proftpd/Config.in 0 → 100644 +6 −0 Original line number Diff line number Diff line config BR2_PACKAGE_PROFTPD bool "proftpd" default n help ProFTPD, a highly configurable FTP server.
package/proftpd/init-proftpd 0 → 100755 +47 −0 Original line number Diff line number Diff line #!/bin/sh DAEMON=/usr/sbin/proftpd trap "" 1 trap "" 15 test -f $DAEMON || exit 0 [ ! -d /var/run/proftpd ] && mkdir /var/run/proftpd [ ! -f /var/log/wtmp ] && touch /var/log/wtmp start() { echo -n "Starting ProFTPD: " $DAEMON if [ $? != 0 ]; then echo "FAILED" exit 1 else echo "done" fi } stop() { echo -n "Stopping ProFTPD: " killall proftpd echo "done" } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; *) echo "Usage: /etc/init.d/S50proftpd {start|stop|restart}" exit 1 ;; esac exit 0
package/proftpd/proftpd.mk 0 → 100644 +79 −0 Original line number Diff line number Diff line ############################################################# # # proftpd # ############################################################# PROFTPD_VER:=1.3.0a PROFTPD_SOURCE:=proftpd-$(PROFTPD_VER).tar.bz2 PROFTPD_SITE:=ftp://ftp.proftpd.org/distrib/source/ PROFTPD_DIR:=$(BUILD_DIR)/proftpd-$(PROFTPD_VER) PROFTPD_CAT:=bzcat PROFTPD_BINARY:=proftpd PROFTPD_TARGET_BINARY:=usr/sbin/proftpd $(DL_DIR)/$(PROFTPD_SOURCE): $(WGET) -P $(DL_DIR) $(PROFTPD_SITE)/$(PROFTPD_SOURCE) proftpd-source: $(DL_DIR)/$(PROFTPD_SOURCE) $(PROFTPD_DIR)/.unpacked: $(DL_DIR)/$(PROFTPD_SOURCE) $(PROFTPD_CAT) $(DL_DIR)/$(PROFTPD_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - touch $(PROFTPD_DIR)/.unpacked $(PROFTPD_DIR)/.configured: $(PROFTPD_DIR)/.unpacked (cd $(PROFTPD_DIR); rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(TARGET_CFLAGS)" \ LDFLAGS="$(TARGET_LDFLAGS)" \ ac_cv_func_setpgrp_void=yes \ ac_cv_func_setgrent_void=yes \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var/run \ --disable-static \ --disable-curses \ --disable-ncurses \ --disable-facl \ --disable-dso \ --enable-shadow \ $(DISABLE_LARGEFILE) \ --with-gnu-ld \ ); touch $(PROFTPD_DIR)/.configured $(PROFTPD_DIR)/$(PROFTPD_BINARY): $(PROFTPD_DIR)/.configured $(MAKE) CC="$(HOSTCC)" CFLAGS="" LDFLAGS="" \ -C $(PROFTPD_DIR)/lib/libcap _makenames $(MAKE) -C $(PROFTPD_DIR) $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY): $(PROFTPD_DIR)/$(PROFTPD_BINARY) cp -a $(PROFTPD_DIR)/$(PROFTPD_BINARY) \ $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) @if [ ! -f $(TARGET_DIR)/etc/proftpd.conf ] ; then \ $(INSTALL) -m 0644 -D $(PROFTPD_DIR)/sample-configurations/basic.conf $(TARGET_DIR)/etc/proftpd.conf; \ fi; $(INSTALL) -m 0755 -D package/proftpd/init-proftpd $(TARGET_DIR)/etc/init.d/S50proftpd proftpd: uclibc $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) proftpd-clean: rm -f $(TARGET_DIR)/$(PROFTPD_TARGET_BINARY) rm -f $(TARGET_DIR)/etc/init.d/S50proftpd rm -f $(TARGET_DIR)/etc/proftpd.conf -$(MAKE) -C $(PROFTPD_DIR) clean proftpd-dirclean: rm -rf $(PROFTPD_DIR) ############################################################# # # Toplevel Makefile options # ############################################################# ifeq ($(strip $(BR2_PACKAGE_PROFTPD)),y) TARGETS+=proftpd endif