diff options
author | joerg <joerg@pkgsrc.org> | 2010-02-11 21:22:17 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-02-11 21:22:17 +0000 |
commit | 7a24433f224ae449d94a502f8eefbd2b13810db3 (patch) | |
tree | cfc3a14a74408fbaf44986e154c3ca3bda6966ed /net/hf6to4 | |
parent | 98c1a3078711b5452852fcc2395dcc090e602ace (diff) | |
download | pkgsrc-7a24433f224ae449d94a502f8eefbd2b13810db3.tar.gz |
DESTDIR support
Diffstat (limited to 'net/hf6to4')
-rw-r--r-- | net/hf6to4/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/net/hf6to4/Makefile b/net/hf6to4/Makefile index 974fd2d9ad9..4dc7ea2555a 100644 --- a/net/hf6to4/Makefile +++ b/net/hf6to4/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2009/04/09 00:48:10 joerg Exp $ +# $NetBSD: Makefile,v 1.15 2010/02/11 21:28:14 joerg Exp $ # DISTNAME= hf6to4-1.3 @@ -11,6 +11,8 @@ MAINTAINER= hubertf@NetBSD.org HOMEPAGE= ftp://ftp.NetBSD.org/pub/NetBSD/packages/pkgsrc/net/hf6to4/files/hf6to4.html COMMENT= Enables 6to4 IPv6 automatic tunnels +PKG_DESTDIR_SUPPORT= user-destdir + WRKSRC= ${WRKDIR} NOT_FOR_PLATFORM+= Interix-*-* # no IPv6 support or ifconfig command @@ -37,9 +39,9 @@ post-extract: ${CP} ${FILESDIR}/hf6to4 ${WRKSRC}/hf6to4 do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/hf6to4 ${PREFIX}/sbin/hf6to4 - ${INSTALL_MAN} ${FILESDIR}/hf6to4.8 ${PREFIX}/${PKGMANDIR}/man8 - ${INSTALL_DATA} ${FILESDIR}/hf6to4.html ${PREFIX}/share/doc/hf6to4/hf6to4.html - ${INSTALL_DATA} ${FILESDIR}/hf6to4.conf ${PREFIX}/share/examples/hf6to4 + ${INSTALL_SCRIPT} ${WRKSRC}/hf6to4 ${DESTDIR}${PREFIX}/sbin/hf6to4 + ${INSTALL_MAN} ${FILESDIR}/hf6to4.8 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man8 + ${INSTALL_DATA} ${FILESDIR}/hf6to4.html ${DESTDIR}${PREFIX}/share/doc/hf6to4/hf6to4.html + ${INSTALL_DATA} ${FILESDIR}/hf6to4.conf ${DESTDIR}${PREFIX}/share/examples/hf6to4 .include "../../mk/bsd.pkg.mk" |