diff options
author | Mike Auty <ikelos@gentoo.org> | 2006-05-15 10:54:05 +0000 |
---|---|---|
committer | Mike Auty <ikelos@gentoo.org> | 2006-05-15 10:54:05 +0000 |
commit | 91a7e1276ebfbc7a7b516c61c97e738d0fe4fc64 (patch) | |
tree | c3d1911f210e00fe1f2a69ab4ee9b5d3918634ca /app-crypt | |
parent | initial import of ophcrack, a windows password cracker. if you wish to use th... (diff) | |
download | gentoo-2-91a7e1276ebfbc7a7b516c61c97e738d0fe4fc64.tar.gz gentoo-2-91a7e1276ebfbc7a7b516c61c97e738d0fe4fc64.tar.bz2 gentoo-2-91a7e1276ebfbc7a7b516c61c97e738d0fe4fc64.zip |
Adding linuxtools patch
(Portage version: 2.1_rc1-r1)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/ophcrack/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/ophcrack/files/ophcrack-2.2-linuxtools-install-path.patch | 32 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-crypt/ophcrack/ChangeLog b/app-crypt/ophcrack/ChangeLog index 0e2651b09aca..0e6a3e51d2dc 100644 --- a/app-crypt/ophcrack/ChangeLog +++ b/app-crypt/ophcrack/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/ophcrack # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ChangeLog,v 1.1 2006/05/15 10:39:11 ikelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ChangeLog,v 1.2 2006/05/15 10:54:05 ikelos Exp $ + + 15 May 2006; Mike Auty <ikelos@gentoo.org> + +files/ophcrack-2.2-linuxtools-install-path.patch: + Adding linuxtools patch *ophcrack-2.2 (15 May 2006) diff --git a/app-crypt/ophcrack/files/ophcrack-2.2-linuxtools-install-path.patch b/app-crypt/ophcrack/files/ophcrack-2.2-linuxtools-install-path.patch new file mode 100644 index 000000000000..0424f0b9ac6d --- /dev/null +++ b/app-crypt/ophcrack/files/ophcrack-2.2-linuxtools-install-path.patch @@ -0,0 +1,32 @@ +diff -uNr ophcrack-2.2/Makefile.am ophcrack-2.1.new/Makefile.am +--- ophcrack-2.2/Makefile.am 2005-03-31 15:09:50.000000000 +0100 ++++ ophcrack-2.2.new/Makefile.am 2005-11-07 17:24:46.000000000 +0000 +@@ -36,10 +36,10 @@ + install-exec-local: + if test -d $(srcdir)/linux_tools; then \ + if test -f $(srcdir)/linux_tools/bkhive; then \ +- $(INSTALL_PROGRAM) $(srcdir)/linux_tools/bkhive $(bindir); \ ++ $(INSTALL_PROGRAM) $(srcdir)/linux_tools/bkhive $(DESTDIR)$(bindir); \ + fi ;\ + if test -f $(srcdir)/linux_tools/samdump2; then \ +- $(INSTALL_PROGRAM) $(srcdir)/linux_tools/samdump2 $(bindir); \ ++ $(INSTALL_PROGRAM) $(srcdir)/linux_tools/samdump2 $(DESTDIR)$(bindir); \ + fi \ + fi + +diff -uNr ophcrack-2.2/Makefile.in ophcrack-2.1.new/Makefile.in +--- ophcrack-2.2/Makefile.in 2005-03-31 15:10:16.000000000 +0100 ++++ ophcrack-2.2.new/Makefile.in 2005-11-07 17:25:09.000000000 +0000 +@@ -383,10 +383,10 @@ + install-exec-local: + if test -d $(srcdir)/linux_tools; then \ + if test -f $(srcdir)/linux_tools/bkhive; then \ +- $(INSTALL_PROGRAM) $(srcdir)/linux_tools/bkhive $(bindir); \ ++ $(INSTALL_PROGRAM) $(srcdir)/linux_tools/bkhive $(DESTDIR)$(bindir); \ + fi ;\ + if test -f $(srcdir)/linux_tools/samdump2; then \ +- $(INSTALL_PROGRAM) $(srcdir)/linux_tools/samdump2 $(bindir); \ ++ $(INSTALL_PROGRAM) $(srcdir)/linux_tools/samdump2 $(DESTDIR)$(bindir); \ + fi \ + fi + |