mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
21c7fb7aa5
- Stage - Add LICENSE=GPLv2 [1] - Update to git version from 2013 which fixes: * ignore IPv4/IPv6 address hints when option -H is present. * fix an error in the "hints" handling of the host resolver which confused local/source and remote hint (AF_INET/AF_INET6).
33 lines
687 B
Makefile
33 lines
687 B
Makefile
# Created by: Vassili Tchersky <vt@bsdjeunz.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= 6tunnel
|
|
DISTVERSION= 0.11rc2.20130525
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= GH \
|
|
LOCAL/bdrewery/${PORTNAME}/
|
|
|
|
MAINTAINER= bdrewery@FreeBSD.org
|
|
COMMENT= TCP proxy for applications that do not speak IPv6
|
|
|
|
LICENSE= GPLv2
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOTOOLS= autoconf
|
|
ALL_TARGET= default
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= wojtekka
|
|
GH_PROJECT= ${PORTNAME}
|
|
GH_COMMIT= 2d33461
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
|
|
PLIST_FILES= bin/6tunnel \
|
|
man/man1/6tunnel.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${PREFIX}/man/man1/
|
|
|
|
.include <bsd.port.mk>
|