blob: 0540df03550207e60f365cb51a9e6b105ab47d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# $NetBSD: Makefile,v 1.11 2006/10/14 08:07:06 wiz Exp $
#
DISTNAME= hf6to4-1.3
PKGREVISION= 1
CATEGORIES= net
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/net/hf6to4/files/hf6to4.html
COMMENT= Enables 6to4 IPv6 automatic tunnels
WRKSRC= ${WRKDIR}
NOT_FOR_PLATFORM+= Interix-*-* # no IPv6 support or ifconfig command
# This pkg doesn't regard USE_INET6 (leave this comment for README-IPv6.html!)
EXTRACT_ONLY= # empty
NO_CHECKSUM= yes
NO_CONFIGURE= yes
NO_BUILD= yes
CONF_FILES+= ${PREFIX}/share/examples/hf6to4/hf6to4.conf ${PKG_SYSCONFDIR}/hf6to4.conf
INSTALLATION_DIRS= man/man8 sbin share/examples/hf6to4 share/doc/hf6to4
SUBST_CLASSES+= paths
SUBST_FILES.paths= hf6to4
SUBST_SED.paths+= -e 's,@PKG_SYSCONFDIR@,${PKG_SYSCONFDIR},g'
SUBST_SED.paths+= -e 's,@SH@,${SH},g'
SUBST_STAGE.paths= post-patch
post-extract:
${CP} ${FILESDIR}/hf6to4 ${WRKSRC}/hf6to4
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/hf6to4 ${PREFIX}/sbin/hf6to4
${INSTALL_MAN} ${FILESDIR}/hf6to4.8 ${PREFIX}/man/man8
${INSTALL_DATA} ${FILESDIR}/hf6to4.html ${PREFIX}/share/doc/hf6to4/hf6to4.html
${INSTALL_DATA} ${FILESDIR}/hf6to4.conf ${PREFIX}/share/examples/hf6to4
.include "../../mk/bsd.pkg.mk"
|