mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
4d30bc0919
The difference between the old and the new distfiles are a lot of CVS ids in comments, and the config.in.h being regenerated with a newer version of autoheader. (Which we do not care about here because we use autoreconf anyway.) While there, also put up a copy in MASTER_SITE_LOCAL. - Remove expiration, I'll fix it up as best as I can if it breaks. - General cleanup of the Makefile - Fix of a manpage symlink (reason for PORTREVISION bump) - Document what the patches are for. (and regen when needed.)
57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
# Created by: Kevin Lo <kevlo@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= vtun
|
|
PORTVERSION= 3.0.4
|
|
PORTREVISION= 8
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF LOCAL/mat/vtun
|
|
|
|
MAINTAINER= mat@FreeBSD.org
|
|
COMMENT= Virtual Tunnels over TCP/IP networks with traffic shaping
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= liblzo2.so:archivers/lzo2
|
|
|
|
USES= autoreconf localbase ssl
|
|
USE_RC_SUBR= vtunclient vtund
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS= --localstatedir=/var \
|
|
--with-ssl-headers=${OPENSSLINC} \
|
|
--with-ssl-lib=${OPENSSLLIB} \
|
|
--with-lzo-headers=${LOCALBASE}/include/lzo \
|
|
--with-lzo-lib=${LOCALBASE}/lib
|
|
CONFIGURE_ENV= YACC=${YACC}
|
|
|
|
CFLAGS+= -ansi -Wno-pointer-sign
|
|
|
|
ALL_TARGET= vtund
|
|
|
|
DOCS= ChangeLog Credits FAQ README README.LZO README.Setup \
|
|
README.Shaper TODO
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
# Extended mode patches, obtained from
|
|
# http://home.jp.FreeBSD.org/~simokawa/vtun-v6.html
|
|
# are now dynamically enabled using the -e option.
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} \
|
|
-e 's|$$\(SSL_HDR_DIR\)|$$\1 $$\1/openssl|g' \
|
|
-e 's|$$\(BLOWFISH_HDR_DIR\)|$$\1 $$SSL_HDR_DIR/openssl|g' \
|
|
${WRKSRC}/configure
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/vtund
|
|
${INSTALL_DATA} ${WRKSRC}/vtund.conf ${STAGEDIR}${PREFIX}/etc/vtund.conf.sample
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for doc in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
${RLN} ${STAGEDIR}${PREFIX}/man/man8/vtund.8 ${STAGEDIR}${PREFIX}/man/man1/vtun.1
|
|
|
|
.include <bsd.port.mk>
|