2013-04-30 04:22:56 +02:00
|
|
|
# Created by: Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
|
2001-09-16 18:18:47 +02:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= twoftpd
|
2013-04-30 04:22:56 +02:00
|
|
|
PORTVERSION= 1.42
|
2014-10-05 20:01:19 +02:00
|
|
|
PORTREVISION= 1
|
2001-09-16 18:18:47 +02:00
|
|
|
CATEGORIES= ftp
|
2003-12-24 14:57:06 +01:00
|
|
|
MASTER_SITES= http://untroubled.org/${PORTNAME}/
|
2001-09-16 18:18:47 +02:00
|
|
|
|
2008-07-27 06:30:53 +02:00
|
|
|
MAINTAINER= ports@FreeBSD.org
|
2014-02-09 01:15:37 +01:00
|
|
|
COMMENT= Simple, secure, efficient FTP server
|
2001-09-16 18:18:47 +02:00
|
|
|
|
2014-02-09 01:15:37 +01:00
|
|
|
LICENSE= GPLv2
|
2003-12-24 14:57:06 +01:00
|
|
|
|
2014-02-09 01:15:37 +01:00
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/bg-installer:${PORTSDIR}/devel/bglibs
|
|
|
|
LIB_DEPENDS= libcvm-v2client.so:${PORTSDIR}/security/cvm
|
2013-04-30 04:22:56 +02:00
|
|
|
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
2012-04-11 05:34:16 +02:00
|
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
2013-04-30 04:22:56 +02:00
|
|
|
|
2005-08-29 14:20:05 +02:00
|
|
|
BGLIBS_LIB= ${LOCALBASE}/lib/bglibs
|
|
|
|
BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs
|
2003-04-13 12:31:09 +02:00
|
|
|
|
2013-04-30 04:22:56 +02:00
|
|
|
PORTDOCS= NEWS README TODO
|
|
|
|
PLIST_FILES= bin/twoftpd-anon bin/twoftpd-anon-conf \
|
|
|
|
bin/twoftpd-auth bin/twoftpd-bind-port \
|
|
|
|
bin/twoftpd-conf bin/twoftpd-drop \
|
2014-02-09 01:15:37 +01:00
|
|
|
bin/twoftpd-switch bin/twoftpd-xfer \
|
|
|
|
man/man1/twoftpd-auth.1.gz man/man1/twoftpd-switch.1.gz \
|
|
|
|
man/man1/twoftpd-xfer.1.gz
|
2005-02-22 10:25:05 +01:00
|
|
|
|
2013-04-30 04:22:56 +02:00
|
|
|
post-patch:
|
|
|
|
@${REINPLACE_CMD} -e 's,timezone,tm.tm_gmtoff,' ${WRKSRC}/statmod.c
|
2002-05-21 05:33:11 +02:00
|
|
|
|
2003-06-15 20:38:30 +02:00
|
|
|
do-configure:
|
2013-04-30 04:22:56 +02:00
|
|
|
@${ECHO_CMD} "${PREFIX}/bin" > ${WRKSRC}/conf-bin
|
|
|
|
@${ECHO_CMD} "${MANPREFIX}/man" > ${WRKSRC}/conf-man
|
|
|
|
@${ECHO_CMD} "${CC} ${CFLAGS} ${CPPFLAGS}" > ${WRKSRC}/conf-cc
|
|
|
|
@${ECHO_CMD} "${CC} ${STRIP} ${LDFLAGS}" > ${WRKSRC}/conf-ld
|
|
|
|
@${ECHO_CMD} "${BGLIBS_INCLUDE}" > ${WRKSRC}/conf-bgincs
|
|
|
|
@${ECHO_CMD} "${BGLIBS_LIB}" > ${WRKSRC}/conf-bglibs
|
|
|
|
|
2014-02-09 01:15:37 +01:00
|
|
|
do-install:
|
|
|
|
.for f in twoftpd-anon twoftpd-anon-conf twoftpd-auth twoftpd-bind-port \
|
|
|
|
twoftpd-conf twoftpd-drop twoftpd-switch twoftpd-xfer
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.endfor
|
|
|
|
.for f in twoftpd-auth.1 twoftpd-switch.1 twoftpd-xfer.1
|
|
|
|
${INSTALL_MAN} ${WRKSRC}/${f} ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
|
|
.endfor
|
|
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
2013-04-30 04:22:56 +02:00
|
|
|
.for i in NEWS README TODO
|
2014-02-09 01:15:37 +01:00
|
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
|
2013-04-30 04:22:56 +02:00
|
|
|
.endfor
|
2001-09-16 18:18:47 +02:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|