Gentoo Archives: gentoo-commits

From: "Mike Auty (ikelos)" <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/ophcrack: ChangeLog ophcrack-2.4.ebuild ophcrack-2.4.1.ebuild
Date: Thu, 10 Jan 2008 23:35:03
Message-Id: E1JD6lG-0007q1-UI@stork.gentoo.org
1 ikelos 08/01/10 23:24:34
2
3 Modified: ChangeLog ophcrack-2.4.ebuild
4 Added: ophcrack-2.4.1.ebuild
5 Log:
6 Version bump, and add pkgconfig dependency to fix bug 205026.
7 (Portage version: 2.1.4_rc11)
8
9 Revision Changes Path
10 1.15 app-crypt/ophcrack/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ChangeLog?rev=1.15&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ChangeLog?rev=1.15&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ChangeLog?r1=1.14&r2=1.15
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ChangeLog,v
19 retrieving revision 1.14
20 retrieving revision 1.15
21 diff -u -r1.14 -r1.15
22 --- ChangeLog 31 Dec 2007 23:39:35 -0000 1.14
23 +++ ChangeLog 10 Jan 2008 23:24:34 -0000 1.15
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-crypt/ophcrack
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ChangeLog,v 1.14 2007/12/31 23:39:35 josejx Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ChangeLog,v 1.15 2008/01/10 23:24:34 ikelos Exp $
30 +
31 +*ophcrack-2.4.1 (10 Jan 2008)
32 +
33 + 10 Jan 2008; Mike Auty <ikelos@g.o> ophcrack-2.4.ebuild,
34 + +ophcrack-2.4.1.ebuild:
35 + Version bump, and add pkgconfig dependency to fix bug 205026.
36
37 31 Dec 2007; Joseph Jezak <josejx@g.o> ophcrack-2.4.ebuild:
38 Marked ~ppc for bug #203621.
39
40
41
42 1.4 app-crypt/ophcrack/ophcrack-2.4.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild?rev=1.4&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild?rev=1.4&content-type=text/plain
46 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild?r1=1.3&r2=1.4
47
48 Index: ophcrack-2.4.ebuild
49 ===================================================================
50 RCS file: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild,v
51 retrieving revision 1.3
52 retrieving revision 1.4
53 diff -u -r1.3 -r1.4
54 --- ophcrack-2.4.ebuild 31 Dec 2007 23:39:35 -0000 1.3
55 +++ ophcrack-2.4.ebuild 10 Jan 2008 23:24:34 -0000 1.4
56 @@ -1,6 +1,6 @@
57 -# Copyright 1999-2007 Gentoo Foundation
58 +# Copyright 1999-2008 Gentoo Foundation
59 # Distributed under the terms of the GNU General Public License v2
60 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild,v 1.3 2007/12/31 23:39:35 josejx Exp $
61 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.ebuild,v 1.4 2008/01/10 23:24:34 ikelos Exp $
62
63 inherit toolchain-funcs eutils
64
65 @@ -29,37 +29,37 @@
66 src_compile() {
67 # Make samdump2
68 einfo "Compiling samdump2"
69 - cd ${WORKDIR}/samdump2-${SAMDUMP_VER}
70 + cd "${WORKDIR}/samdump2-${SAMDUMP_VER}"
71 MAKEOPTS="-j1" emake || die "Failed to make samdump"
72
73 # Make bkhive2
74 einfo "Compiling bkhive"
75 - cd ${WORKDIR}/bkhive-${BKHIVE_VER}
76 + cd "${WORKDIR}/bkhive-${BKHIVE_VER}"
77 MAKEOPTS="-j1" emake || die "Failed to make bkhive2"
78
79 # Make the program
80 einfo "Compiling ophcrack"
81 - cd ${S}
82 + cd "${S}"
83 econf
84 emake || die "Failed to make ophcrack"
85
86 # Don't try to install the prebuilt binaries,
87 # they'll cause an access violation
88 - rm -fr ${S}/linux_tools
89 + rm -fr "${S}/linux_tools"
90 }
91
92 src_install() {
93 - make install DESTDIR=${D}
94 + make install DESTDIR="${D}"
95
96 - cd ${WORKDIR}/bkhive-${BKHIVE_VER}
97 - make install DESTDIR=${D} PREFIX=/usr/
98 + cd "${WORKDIR}/bkhive-${BKHIVE_VER}"
99 + make install DESTDIR="${D}" PREFIX=/usr/
100
101 - cd ${WORKDIR}/samdump2-${SAMDUMP_VER}
102 - make install DESTDIR=${D} PREFIX=/usr/
103 + cd "${WORKDIR}/samdump2-${SAMDUMP_VER}"
104 + make install DESTDIR="${D}" PREFIX=/usr/
105
106 TABLENAME="5000"
107 use ophsmall && TABLENAME="10000"
108
109 - dodir /usr/share/${PN}/${TABLENAME}
110 - mv ${WORKDIR}/table* ${D}/usr/share/${PN}/${TABLENAME}
111 + dodir "/usr/share/${PN}/${TABLENAME}"
112 + mv "${WORKDIR}/table"* "${D}/usr/share/${PN}/${TABLENAME}"
113 }
114
115
116
117 1.1 app-crypt/ophcrack/ophcrack-2.4.1.ebuild
118
119 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.1.ebuild?rev=1.1&view=markup
120 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.1.ebuild?rev=1.1&content-type=text/plain
121
122 Index: ophcrack-2.4.1.ebuild
123 ===================================================================
124 # Copyright 1999-2008 Gentoo Foundation
125 # Distributed under the terms of the GNU General Public License v2
126 # $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack/ophcrack-2.4.1.ebuild,v 1.1 2008/01/10 23:24:34 ikelos Exp $
127
128 inherit toolchain-funcs eutils
129
130 BKHIVE_VER="1.1.1"
131 SAMDUMP_VER="1.1.1"
132
133 DESCRIPTION="A time-memory-trade-off-cracker"
134 HOMEPAGE="http://ophcrack.sourceforge.net/"
135 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
136 mirror://sourceforge/${PN}/bkhive-${BKHIVE_VER}.tar.gz
137 mirror://sourceforge/${PN}/samdump2-${SAMDUMP_VER}.tar.gz
138 !ophsmall? ( http://lasecwww.epfl.ch/SSTIC04-5k.zip )
139 ophsmall? ( http://lasecwww.epfl.ch/SSTIC04-10k.zip )"
140
141 LICENSE="GPL-2"
142 SLOT="0"
143 KEYWORDS="~amd64 ~ppc ~x86"
144 IUSE="ophsmall"
145
146 DEPEND="app-arch/unzip
147 >=dev-util/pkgconfig-0.22
148 dev-libs/openssl
149 net-libs/netwib
150 >=x11-libs/gtk+-2"
151 RDEPEND="dev-libs/openssl
152 net-libs/netwib
153 >=x11-libs/gtk+-2"
154
155 src_compile() {
156 # Make samdump2
157 einfo "Compiling samdump2"
158 cd "${WORKDIR}/samdump2-${SAMDUMP_VER}"
159 MAKEOPTS="-j1" emake || die "Failed to make samdump"
160
161 # Make bkhive2
162 einfo "Compiling bkhive"
163 cd "${WORKDIR}/bkhive-${BKHIVE_VER}"
164 MAKEOPTS="-j1" emake || die "Failed to make bkhive2"
165
166 # Make the program
167 einfo "Compiling ophcrack"
168 cd "${S}"
169 econf
170 emake || die "Failed to make ophcrack"
171
172 # Don't try to install the prebuilt binaries,
173 # they'll cause an access violation
174 rm -fr "${S}/linux_tools"
175 }
176
177 src_install() {
178 make install DESTDIR="${D}"
179
180 cd "${WORKDIR}/bkhive-${BKHIVE_VER}"
181 make install DESTDIR="${D}" PREFIX=/usr/
182
183 cd "${WORKDIR}/samdump2-${SAMDUMP_VER}"
184 make install DESTDIR="${D}" PREFIX=/usr/
185
186 TABLENAME="5000"
187 use ophsmall && TABLENAME="10000"
188
189 dodir "/usr/share/${PN}/${TABLENAME}"
190 mv "${WORKDIR}/table"* "${D}/usr/share/${PN}/${TABLENAME}"
191 }
192
193
194
195 --
196 gentoo-commits@l.g.o mailing list