88c67cd38c
- Patch libtool so it uses the same library version specification as on Darwin, Linux and other systems. Given the version current:revision:age a library will be given the extension .so.major.age.revision with major equal to current-age. Before libtool would use .so.current on FreeBSD. - Patch libtoolize to remove two cases of umask 0 that caused libltdl files to be copied world writable (--ltdl option) - Let USES=libtool patch this new version correctly - Adjust all ports with USES=libtool:build and bump PORTREVISION on their dependent ports if a library version changed PR: 194068 Exp-run by: antoine Approved by: portmgr (antoine)
58 lines
1.8 KiB
Makefile
58 lines
1.8 KiB
Makefile
# Created by: Gea-Suan Lin (gslin@ccca.nctu.edu.tw)
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= twoftpd
|
|
PORTVERSION= 1.42
|
|
PORTREVISION= 1
|
|
CATEGORIES= ftp
|
|
MASTER_SITES= http://untroubled.org/${PORTNAME}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple, secure, efficient FTP server
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/bg-installer:${PORTSDIR}/devel/bglibs
|
|
LIB_DEPENDS= libcvm-v2client.so:${PORTSDIR}/security/cvm
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
BGLIBS_LIB= ${LOCALBASE}/lib/bglibs
|
|
BGLIBS_INCLUDE= ${LOCALBASE}/include/bglibs
|
|
|
|
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 \
|
|
bin/twoftpd-switch bin/twoftpd-xfer \
|
|
man/man1/twoftpd-auth.1.gz man/man1/twoftpd-switch.1.gz \
|
|
man/man1/twoftpd-xfer.1.gz
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's,timezone,tm.tm_gmtoff,' ${WRKSRC}/statmod.c
|
|
|
|
do-configure:
|
|
@${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
|
|
|
|
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}
|
|
.for i in NEWS README TODO
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${i} ${STAGEDIR}${DOCSDIR})
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|