summaryrefslogtreecommitdiffstats
path: root/ftp
diff options
context:
space:
mode:
Diffstat (limited to 'ftp')
-rw-r--r--ftp/wzdftpd/Makefile136
-rw-r--r--ftp/wzdftpd/distinfo3
-rw-r--r--ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_avahi.h10
-rw-r--r--ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_zeroconf.c10
-rw-r--r--ftp/wzdftpd/files/wzdftpd.sh.in26
-rw-r--r--ftp/wzdftpd/pkg-descr22
-rw-r--r--ftp/wzdftpd/pkg-plist122
7 files changed, 329 insertions, 0 deletions
diff --git a/ftp/wzdftpd/Makefile b/ftp/wzdftpd/Makefile
new file mode 100644
index 000000000..77d7750c8
--- /dev/null
+++ b/ftp/wzdftpd/Makefile
@@ -0,0 +1,136 @@
+# New ports collection makefile for: wzdftpd
+# Date created: 2003-10-22
+# Whom: Roman Bogorodskiy
+#
+# $FreeBSD$
+#
+
+PORTNAME= wzdftpd
+PORTVERSION= 0.7.2
+PORTREVISION= 2
+CATEGORIES= ftp ipv6
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+
+MAINTAINER= novel@FreeBSD.org
+COMMENT= Modular FTP server configurable online using SITE commands
+
+USE_RC_SUBR= wzdftpd.sh
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+INSTALLS_SHLIB= yes
+USE_GNOME= pkgconfig
+CONFIGURE_ARGS+= --without-pam --disable-pgsql --disable-bonjour --mandir=${MANPREFIX}/man
+CONFIGURE_ENV= CPPFLAGS="${CPPLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \
+ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}"
+CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+PKGMESSAGE= ${WRKDIR}/pkg-message
+
+OPTIONS= UTF8 "Enable UTF8 support" off \
+ TCL "Enable TCL support" off \
+ SSL "Enable OpenSSL support" off \
+ GNUTLS "Enable gnutls support" on \
+ IPV6 "Enable IPv6 support" on \
+ PERL "Enable PERL support" off \
+ MYSQL "Enable MYSQL backend" off \
+ AVAHI "Enable Zeroconf support using Avahi" on \
+ HOWL "Enable Zeroconf support using Howl" off
+
+MAN1= siteconfig.1 \
+ siteuptime.1 \
+ sitewho.1 \
+ wzd-config.1
+MAN8= wzdftpd.8
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_UTF8)
+USE_ICONV= yes
+.else
+CONFIGURE_ARGS+= --disable-utf8
+.endif
+
+.if defined(WITH_TCL)
+LIB_DEPENDS+= tcl84:${PORTSDIR}/lang/tcl84
+CONFIGURE_ARGS+= --with-tcl='${PREFIX}/lib/tcl8.4'
+PLIST_SUB+= TCL=""
+.else
+CONFIGURE_ARGS+= --without-tcl
+PLIST_SUB+= TCL="@comment "
+.endif
+
+.if defined(WITH_SSL)
+#USE_OPENSSL= yes
+.include "${PORTSDIR}/Mk/bsd.openssl.mk"
+.else
+CONFIGURE_ARGS+= --disable-openssl
+.endif
+
+.if defined(WITH_GNUTLS)
+LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls
+.else
+CONFIGURE_ARGS+= --disable-gnutls
+.endif
+
+.if !defined(WITH_IPV6)
+CONFIGURE_ARGS+= --disable-ipv6
+.endif
+
+.if !defined(WITH_PERL)
+CONFIGURE_ARGS+= --disable-perl
+PLIST_SUB+= PERL="@comment "
+.else
+USE_PERL5= yes
+PLIST_SUB+= PERL=""
+.endif
+
+.if defined(WITH_MYSQL)
+USE_MYSQL= yes
+PLIST_SUB+= MYSQL=""
+.else
+CONFIGURE_ARGS+= --disable-mysql
+PLIST_SUB+= MYSQL="@comment "
+.endif
+
+.if defined(WITH_AVAHI) || defined(WITH_HOWL)
+PLIST_SUB+= ZEROCONF=""
+.else
+PLIST_SUB+= ZEROCONF="@comment "
+.endif
+
+.if defined(WITH_AVAHI) && !defined(WITH_HOWL)
+LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus \
+ avahi-core.4:${PORTSDIR}/net/avahi
+CONFIGURE_ARGS+= --with-zeroconf --enable-avahi
+.endif
+
+.if defined(WITH_HOWL) && !defined(WITH_AVAHI)
+CFLAGS+= -I${LOCALBASE}/include/howl
+LIB_DEPENDS+= howl.0:${PORTSDIR}/net/howl
+CONFIGURE_ARGS+= --with-zeroconf --enable-howl
+.endif
+
+PORTDOCS= AUTHORS Permissions.ReadMeFirst README TLS.ReadMeFirst ChangeLog
+
+RC_SCRIPTS_SUB= PREFIX=${PREFIX} \
+ RC_SUBR=${RC_SUBR}
+
+post-patch:
+ @${REINPLACE_CMD} -e "s|@HAVE_PERL_TRUE@|#|g" ${WRKSRC}/Makefile.in
+ @${REINPLACE_CMD} -e "s|-lpthread|${PTHREAD_LIBS}|" ${WRKSRC}/configure
+
+post-install:
+.if !defined(NOPORTDOCS)
+ @${MKDIR} ${DOCSDIR}
+.for i in ${PORTDOCS}
+ @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+.endfor
+.endif
+ @if test ! -f ${PREFIX}/etc/wzdftpd/wzd.cfg; then \
+ ${CP} ${PREFIX}/etc/wzdftpd/wzd.cfg.sample ${PREFIX}/etc/wzdftpd/wzd.cfg; \
+ fi
+ @if test ! -f ${PREFIX}/etc/wzdftpd/users; then \
+ ${CP} ${PREFIX}/etc/wzdftpd/users.sample ${PREFIX}/etc/wzdftpd/users; \
+ fi
+
+.include <bsd.port.post.mk>
diff --git a/ftp/wzdftpd/distinfo b/ftp/wzdftpd/distinfo
new file mode 100644
index 000000000..859f3d71b
--- /dev/null
+++ b/ftp/wzdftpd/distinfo
@@ -0,0 +1,3 @@
+MD5 (wzdftpd-0.7.2.tar.gz) = 92ed2975f5a2ddcbd1f34301d6d0d7be
+SHA256 (wzdftpd-0.7.2.tar.gz) = c2ecea11b9d864e320c6af82de1eeecd4ad1ad458e588e6a65886d715754a749
+SIZE (wzdftpd-0.7.2.tar.gz) = 895046
diff --git a/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_avahi.h b/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_avahi.h
new file mode 100644
index 000000000..5d53ed46a
--- /dev/null
+++ b/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_avahi.h
@@ -0,0 +1,10 @@
+--- modules/zeroconf/libwzd_avahi.h.orig Wed May 31 14:55:16 2006
++++ modules/zeroconf/libwzd_avahi.h Wed May 31 14:56:17 2006
+@@ -29,6 +29,7 @@
+ #include <stdlib.h>
+ #include <assert.h>
+ #include <string.h>
++#include <pthread.h>
+
+ #include <libwzd-core/wzd_structs.h>
+ #include <libwzd-core/wzd_log.h>
diff --git a/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_zeroconf.c b/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_zeroconf.c
new file mode 100644
index 000000000..b86388677
--- /dev/null
+++ b/ftp/wzdftpd/files/patch-modules-zeroconf-libwzd_zeroconf.c
@@ -0,0 +1,10 @@
+--- modules/zeroconf/libwzd_zeroconf.c.orig Wed Feb 22 21:44:51 2006
++++ modules/zeroconf/libwzd_zeroconf.c Wed Feb 22 21:45:26 2006
+@@ -27,6 +27,7 @@
+ #include <unistd.h>
+ #include <sys/types.h>
+ #include <string.h>
++#include <signal.h>
+
+ #include <arpa/inet.h> /* htonl() */
+ #include <sys/wait.h>
diff --git a/ftp/wzdftpd/files/wzdftpd.sh.in b/ftp/wzdftpd/files/wzdftpd.sh.in
new file mode 100644
index 000000000..940ec3bbe
--- /dev/null
+++ b/ftp/wzdftpd/files/wzdftpd.sh.in
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# Start or stop wzdftpd
+# $FreeBSD: ports/ftp/wzdftpd/files/wzdftpd.sh.in,v 1.1 2006/05/31 15:19:27 novel Exp $
+
+# PROVIDE: wzdftpd
+# REQUIRE: DAEMON
+# BEFORE: LOGIN
+# KEYWORD: shutdown
+#
+
+prefix=%%PREFIX%%
+
+wzdftpd_enable=${wzdftpd_enable:-"NO"} # Enable wzdftpd
+wzdftpd_program="${prefix}/sbin/wzdftpd" # Location of wzdftpd
+wzdftpd_flags=${wzdftpd_flags:-""} # Flags to wzdftpd
+
+. %%RC_SUBR%%
+
+name="wzdftpd"
+rcvar=`set_rcvar`
+command="${prefix}/sbin/${name}"
+required_files="${prefix}/etc/wzd.cfg"
+
+load_rc_config $name
+run_rc_command "$1"
diff --git a/ftp/wzdftpd/pkg-descr b/ftp/wzdftpd/pkg-descr
new file mode 100644
index 000000000..cbc7ed8fb
--- /dev/null
+++ b/ftp/wzdftpd/pkg-descr
@@ -0,0 +1,22 @@
+wzdftpd is a ftp server designed to be modular and entirely configurable online
+using SITE commands.
+
+wzdftpd offers the following features:
+- Simple configuration file, supporting inclusions
+- Online administration, using SITE commands
+- Backends to store users/groups in different structures
+- Modules: internal, using shared librairies, or external
+ (scripts/applications)
+- Users are virtual: you do not need to create users in system
+- SSL/TLS support
+- Server is designed to run as a non-privileged user to enforce security
+- Server can detect ip changes (dynamic ips) and set ip and passive ip
+ accordingly
+- Cross devices operations (copy/move) (though can be slow)
+- Logging support (compatible with the wu-ftpd standard)
+- Designed for high performances: coded with C, multithreaded
+
+WWW: http://www.wzdftpd.net/
+
+- Roman Bogorodskiy
+bogorodskiy@inbox.ru
diff --git a/ftp/wzdftpd/pkg-plist b/ftp/wzdftpd/pkg-plist
new file mode 100644
index 000000000..b334bdef2
--- /dev/null
+++ b/ftp/wzdftpd/pkg-plist
@@ -0,0 +1,122 @@
+@comment $FreeBSD: ports/ftp/wzdftpd/pkg-plist,v 1.18 2006/05/31 15:19:27 novel Exp $
+bin/siteconfig
+bin/siteuptime
+bin/sitewho
+bin/wzd-config
+etc/wzdftpd/wzd.pem
+etc/wzdftpd/file_ginfo.txt
+etc/wzdftpd/file_help.txt
+etc/wzdftpd/file_swho.txt
+etc/wzdftpd/file_user.txt
+etc/wzdftpd/file_group.txt
+etc/wzdftpd/file_rules.txt
+etc/wzdftpd/file_users.txt
+etc/wzdftpd/file_vfs.txt
+etc/wzdftpd/file_who.txt
+etc/wzdftpd/file_groups.txt
+include/wzdftpd/libwzd-auth/wzd_auth.h
+include/wzdftpd/libwzd-auth/wzd_base64.h
+include/wzdftpd/libwzd-auth/wzd_crypt.h
+include/wzdftpd/libwzd-auth/wzd_krb5.h
+include/wzdftpd/libwzd-auth/wzd_md5.h
+include/wzdftpd/libwzd-auth/wzd_md5crypt.h
+include/wzdftpd/libwzd-auth/wzd_pam.h
+include/wzdftpd/libwzd-auth/wzd_sha1.h
+include/wzdftpd/libwzd-auth/wzd_tls.h
+include/wzdftpd/libwzd-base/dlist.h
+include/wzdftpd/libwzd-base/hash.h
+include/wzdftpd/libwzd-base/list.h
+include/wzdftpd/libwzd-base/stack.h
+include/wzdftpd/libwzd-base/wzd_strlcat.h
+include/wzdftpd/libwzd-base/wzd_strtok_r.h
+include/wzdftpd/libwzd-core/arch/bsd.h
+include/wzdftpd/libwzd-core/arch/win32.h
+include/wzdftpd/libwzd-core/ls.h
+include/wzdftpd/libwzd-core/wzd_ClientThread.h
+include/wzdftpd/libwzd-core/wzd_action.h
+include/wzdftpd/libwzd-core/wzd_all.h
+include/wzdftpd/libwzd-core/wzd_backend.h
+include/wzdftpd/libwzd-core/wzd_cache.h
+include/wzdftpd/libwzd-core/wzd_commands.h
+include/wzdftpd/libwzd-core/wzd_configfile.h
+include/wzdftpd/libwzd-core/wzd_configloader.h
+include/wzdftpd/libwzd-core/wzd_crc32.h
+include/wzdftpd/libwzd-core/wzd_crontab.h
+include/wzdftpd/libwzd-core/wzd_data.h
+include/wzdftpd/libwzd-core/wzd_debug.h
+include/wzdftpd/libwzd-core/wzd_dir.h
+include/wzdftpd/libwzd-core/wzd_events.h
+include/wzdftpd/libwzd-core/wzd_file.h
+include/wzdftpd/libwzd-core/wzd_fs.h
+include/wzdftpd/libwzd-core/wzd_hardlimits.h
+include/wzdftpd/libwzd-core/wzd_ip.h
+include/wzdftpd/libwzd-core/wzd_libmain.h
+include/wzdftpd/libwzd-core/wzd_log.h
+include/wzdftpd/libwzd-core/wzd_messages.h
+include/wzdftpd/libwzd-core/wzd_misc.h
+include/wzdftpd/libwzd-core/wzd_mod.h
+include/wzdftpd/libwzd-core/wzd_mutex.h
+include/wzdftpd/libwzd-core/wzd_perm.h
+include/wzdftpd/libwzd-core/wzd_ratio.h
+include/wzdftpd/libwzd-core/wzd_section.h
+include/wzdftpd/libwzd-core/wzd_shm.h
+include/wzdftpd/libwzd-core/wzd_site.h
+include/wzdftpd/libwzd-core/wzd_site_group.h
+include/wzdftpd/libwzd-core/wzd_site_user.h
+include/wzdftpd/libwzd-core/wzd_socket.h
+include/wzdftpd/libwzd-core/wzd_string.h
+include/wzdftpd/libwzd-core/wzd_structs.h
+include/wzdftpd/libwzd-core/wzd_threads.h
+include/wzdftpd/libwzd-core/wzd_tls.h
+include/wzdftpd/libwzd-core/wzd_types.h
+include/wzdftpd/libwzd-core/wzd_utf8.h
+include/wzdftpd/libwzd-core/wzd_vars.h
+include/wzdftpd/libwzd-core/wzd_vfs.h
+include/wzdftpd/libwzd.h
+include/wzdftpd/libwzd_pv.h
+include/wzdftpd/libwzd_socket.h
+include/wzdftpd/libwzd_tls.h
+lib/libwzd_core.a
+lib/libwzd_core.la
+lib/libwzd_core.so
+lib/libwzd_core.so.700
+lib/libwzd.a
+lib/libwzd.la
+lib/libwzd.so
+lib/libwzd.so.700
+share/aclocal/wzd.m4
+sbin/wzdftpd
+%%DATADIR%%/backends/libwzdplaintext.a
+%%DATADIR%%/backends/libwzdplaintext.la
+%%DATADIR%%/backends/libwzdplaintext.so
+%%MYSQL%%%%DATADIR%%/backends/libwzdmysql.a
+%%MYSQL%%%%DATADIR%%/backends/libwzdmysql.la
+%%MYSQL%%%%DATADIR%%/backends/libwzdmysql.so
+%%DATADIR%%/modules/libwzd_debug.so
+%%DATADIR%%/modules/libwzd_debug.la
+%%DATADIR%%/modules/libwzd_debug.a
+%%DATADIR%%/modules/libwzd_sfv.a
+%%DATADIR%%/modules/libwzd_sfv.la
+%%DATADIR%%/modules/libwzd_sfv.so
+%%PERL%%%%DATADIR%%/modules/libwzd_perl.a
+%%PERL%%%%DATADIR%%/modules/libwzd_perl.la
+%%PERL%%%%DATADIR%%/modules/libwzd_perl.so
+%%TCL%%%%DATADIR%%/modules/libwzd_tcl.a
+%%TCL%%%%DATADIR%%/modules/libwzd_tcl.la
+%%TCL%%%%DATADIR%%/modules/libwzd_tcl.so
+%%ZEROCONF%%%%DATADIR%%/modules/libwzd_zeroconf.a
+%%ZEROCONF%%%%DATADIR%%/modules/libwzd_zeroconf.la
+%%ZEROCONF%%%%DATADIR%%/modules/libwzd_zeroconf.so
+@dirrm %%DATADIR%%/modules/
+@dirrm %%DATADIR%%/backends/
+@dirrm %%DATADIR%%/
+@dirrm include/wzdftpd/libwzd-auth
+@dirrm include/wzdftpd/libwzd-base
+@dirrm include/wzdftpd/libwzd-core/arch
+@dirrm include/wzdftpd/libwzd-core
+@dirrm include/wzdftpd
+@unexec if cmp -s %D/etc/wzdftpd/wzd.cfg %D/etc/wzdftpd/wzd.cfg.sample; then rm -f %D/etc/wzdftpd/wzd.cfg; fi
+@unexec if cmp -s %D/etc/wzdftpd/users %D/etc/wzdftpd/users.sample; then rm -f %D/etc/wzdftpd/users; fi
+etc/wzdftpd/wzd.cfg.sample
+etc/wzdftpd/users.sample
+@dirrmtry etc/wzdftpd