summaryrefslogtreecommitdiff
path: root/net/6to4/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'net/6to4/Makefile')
-rw-r--r--net/6to4/Makefile44
1 files changed, 44 insertions, 0 deletions
diff --git a/net/6to4/Makefile b/net/6to4/Makefile
new file mode 100644
index 000000000000..1f3ec90916a6
--- /dev/null
+++ b/net/6to4/Makefile
@@ -0,0 +1,44 @@
+# New ports collection makefile for: 6to4
+# Date created: 3 July 2002
+# Whom: Kimura Fuyuki <fuyuki@hadaly.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= 6to4
+PORTVERSION= 1.2
+CATEGORIES= net ipv6
+MASTER_SITES= http://cvsweb.netbsd.org/bsdweb.cgi/~checkout~/pkgsrc/net/6to4/files/
+DISTFILES= 6to4\?rev=1.7\&content-type=text%2fplain \
+ 6to4.8\?rev=1.5\&content-type=text%2fplain \
+ 6to4.conf\?rev=1.2\&content-type=text%2fplain
+DIST_SUBDIR= ${PORTNAME}
+
+MAINTAINER= fuyuki@hadaly.org
+
+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>