854c187a95
"I'll be offline for the next few months. Someone please take care of these poor orphans." Also slip in some minor fixes. PR: 52831 Submitted by: Kimura Fuyuki <fuyuki@mj.0038.net>
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
# New ports collection makefile for: 6to4
|
|
# Date created: 3 July 2002
|
|
# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= 6to4
|
|
PORTVERSION= 1.3
|
|
CATEGORIES= net ipv6
|
|
MASTER_SITES= http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/pkgsrc/net/6to4/files/
|
|
DISTFILES= 6to4\?rev=1.9\&content-type=text%2fplain \
|
|
6to4.8\?rev=1.6\&content-type=text%2fplain \
|
|
6to4.conf\?rev=1.3\&content-type=text%2fplain
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Enables 6to4 IPv6 automatic tunnels
|
|
|
|
USE_REINPLACE= yes
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
MAN8= 6to4.8
|
|
|
|
do-extract:
|
|
${MKDIR} ${WRKSRC}
|
|
.for i in ${DISTFILES}
|
|
${CP} ${DISTDIR}/${DIST_SUBDIR}/${i} ${WRKSRC}/${i:C/\?.*$//}
|
|
.endfor
|
|
|
|
do-patch:
|
|
${REINPLACE_CMD} -e 's|\@LOCALBASE\@/bin/perl|${PERL}|; \
|
|
s|\@PREFIX\@|${PREFIX}|' ${WRKSRC}/6to4
|
|
${REINPLACE_CMD} -e 's|/usr/pkg|${PREFIX}|; \
|
|
s|ip6mode=autohost|ipv6_gateway_enable="NO"|' ${WRKSRC}/6to4.8
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/6to4 ${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/6to4.8 ${PREFIX}/man/man8
|
|
${INSTALL_DATA} ${WRKSRC}/6to4.conf ${PREFIX}/etc/6to4.conf.sample
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|