1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-22 04:17:44 +00:00
freebsd-ports/net/freenet6/Makefile
Kevin Lo c2423da314 Implement a number of improvments:
- When shutdown, the correct behavior is to send SIGHUP.
- When PID of the gw6c process greater than 65536, it can not perform
  timeout ping check correctly, due to echo_id in icmp_hdr is declared as
  uint16_t.
- Mute dmesg noise "nd6_dad_timer: cancel DAD on tun0 because of
  ND6_IFF_IFDISABLED."

PR:	211425
Submitted by:	clive
2017-06-16 13:49:28 +00:00

35 lines
842 B
Makefile

# Created by: Edwin Groothuis <edwin@mavetju.org>
# $FreeBSD$
PORTNAME= freenet6
DISTVERSION= 6_0_1
PORTREVISION= 2
CATEGORIES= net ipv6
MASTER_SITES= http://go6.net/4105/file.asp?file_id=166&
DISTNAME= tspc-${PORTVERSION}-src
MAINTAINER= ports@FreeBSD.org
COMMENT= Hexago Freenet6 Tunnel Setup Protocol Client - Free IPv6 tunnel
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/../CLIENT-LICENSE.TXT
USES= gmake ssl tar:tgz
MAKE_ARGS= target=freebsd CC="${CC}" CXX="${CXX}" \
installdir="${STAGEDIR}${PREFIX}" ETCDIR="${ETCDIR}"
WRKSRC= ${WRKDIR}/gw6c-${DISTVERSION}/tspc-advanced
USE_RC_SUBR= freenet6
SUB_FILES= pkg-message
MAKE_JOBS_UNSAFE=yes
post-fetch:
@if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
${MV} ${DISTDIR}/file.asp*file_id*166* \
${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}; \
fi
.include <bsd.port.mk>