diff options
author | joerg <joerg@pkgsrc.org> | 2010-01-27 20:28:15 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2010-01-27 20:28:15 +0000 |
commit | ac6092c44ce453d44f1838729bb4feb64a7adb04 (patch) | |
tree | f8452a5a42e2853e51f88791e637257e9a3dd29d /sysutils/wipe | |
parent | b87f3e206634ef180c5bb5bdb4e6563a3890eacd (diff) | |
download | pkgsrc-ac6092c44ce453d44f1838729bb4feb64a7adb04.tar.gz |
DESTDIR support
Diffstat (limited to 'sysutils/wipe')
-rw-r--r-- | sysutils/wipe/Makefile | 3 | ||||
-rw-r--r-- | sysutils/wipe/distinfo | 4 | ||||
-rw-r--r-- | sysutils/wipe/patches/patch-aa | 17 |
3 files changed, 13 insertions, 11 deletions
diff --git a/sysutils/wipe/Makefile b/sysutils/wipe/Makefile index 0b83d5e6a9c..6af0e173a2b 100644 --- a/sysutils/wipe/Makefile +++ b/sysutils/wipe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/04/11 21:47:30 tv Exp $ +# $NetBSD: Makefile,v 1.3 2010/01/27 20:37:48 joerg Exp $ # DISTNAME= wipe-2.2.0 @@ -11,6 +11,7 @@ HOMEPAGE= http://wipe.sourceforge.net/ COMMENT= Secure data destruction PKG_INSTALLATION_TYPES= overwrite pkgviews +PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes diff --git a/sysutils/wipe/distinfo b/sysutils/wipe/distinfo index 163c3293c71..e2b8e43cf95 100644 --- a/sysutils/wipe/distinfo +++ b/sysutils/wipe/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.3 2005/11/10 16:31:25 joerg Exp $ +$NetBSD: distinfo,v 1.4 2010/01/27 20:37:48 joerg Exp $ SHA1 (wipe-2.2.0.tar.bz2) = 4dd18f260ecd91b726336b2788fa33db04d6691a RMD160 (wipe-2.2.0.tar.bz2) = 5d1861bd893e01e94205a7ac2efadb1c756da700 Size (wipe-2.2.0.tar.bz2) = 70134 bytes -SHA1 (patch-aa) = d40a3324eb5e8473d7a3a6acbc307c2ab63d60de +SHA1 (patch-aa) = 4d84f400528b88f376a374f159b72da4237f3b33 SHA1 (patch-ab) = 3116ad02dd0a3514afec440e46ab679395e4bbaa SHA1 (patch-ac) = df59d51a7ee781fd439db1bf2284fb34e26fb8fb SHA1 (patch-ad) = 6288118d9b4a70844bbc94a8e9dc4748fc9459f8 diff --git a/sysutils/wipe/patches/patch-aa b/sysutils/wipe/patches/patch-aa index 207e315793e..f24beb175d1 100644 --- a/sysutils/wipe/patches/patch-aa +++ b/sysutils/wipe/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/08/16 20:15:54 minskim Exp $ +$NetBSD: patch-aa,v 1.2 2010/01/27 20:37:48 joerg Exp $ --- Makefile.in.orig 2003-08-30 20:18:03.000000000 -0500 +++ Makefile.in @@ -10,17 +10,18 @@ $NetBSD: patch-aa,v 1.1.1.1 2004/08/16 20:15:54 minskim Exp $ - $(INSTALL_BIN) -s $(BIN_OUT) $(bindir) - $(INSTALL) -d $(mandir)/man1 - $(INSTALL) -o root -m 0644 wipe.1 $(mandir)/man1/ -+ $(BSD_INSTALL_PROGRAM_DIR) $(bindir) -+ $(BSD_INSTALL_PROGRAM) $(BIN_OUT) $(bindir) -+ $(BSD_INSTALL_MAN_DIR) $(mandir)/man1 -+ $(BSD_INSTALL_MAN) wipe.1 $(mandir)/man1/ - rm -rf $(datadir)/doc/wipe* ++ $(BSD_INSTALL_PROGRAM_DIR) ${DESTDIR}$(bindir) ++ $(BSD_INSTALL_PROGRAM) $(BIN_OUT) ${DESTDIR}$(bindir) ++ $(BSD_INSTALL_MAN_DIR) ${DESTDIR}$(mandir)/man1 ++ $(BSD_INSTALL_MAN) wipe.1 ${DESTDIR}$(mandir)/man1/ +- rm -rf $(datadir)/doc/wipe* ++ rm -rf ${DESTDIR}$(datadir)/doc/wipe* - $(INSTALL) -d $(datadir)/doc/wipe -+ $(BSD_INSTALL_DATA_DIR) $(datadir)/doc/wipe ++ $(BSD_INSTALL_DATA_DIR) ${DESTDIR}$(datadir)/doc/wipe for file in $(DOCS); do \ - $(INSTALL) -o root -m 0644 $$file $(datadir)/doc/wipe/; \ -+ $(BSD_INSTALL_DATA) $$file $(datadir)/doc/wipe/; \ ++ $(BSD_INSTALL_DATA) $$file ${DESTDIR}$(datadir)/doc/wipe/; \ done install_home: $(BIN_OUT) |