tomwij 14/04/02 10:41:16
Modified: ChangeLog
Added: ophcrack-tables-1.0-r2.ebuild
Removed: ophcrack-tables-1.0.ebuild
ophcrack-tables-1.0-r1.ebuild
Log:
[QA] Revision bump to 1.0-r2. EAPI 5 and Prefix support, added die to cd and
cp call.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key
6D34E57D)
Revision Changes Path
1.5 app-crypt/ophcrack-tables/ChangeLog
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog?rev=1.5&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog?rev=1.5&content-type=text/plain
diff :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog?r1=1.4&r2=1.5
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog 31 Oct 2009 00:38:46 -0000 1.4
+++ ChangeLog 2 Apr 2014 10:41:16 -0000 1.5
@@ -1,6 +1,13 @@
# ChangeLog for app-crypt/ophcrack-tables
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog,v 1.4
2009/10/31 00:38:46 ikelos Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/ophcrack-tables/ChangeLog,v 1.5
2014/04/02 10:41:16 tomwij Exp $
+
+*ophcrack-tables-1.0-r2 (02 Apr 2014)
+
+ 02 Apr 2014; Tom Wijsman <[email protected]> +ophcrack-tables-1.0-r2.ebuild,
+ -ophcrack-tables-1.0-r1.ebuild, -ophcrack-tables-1.0.ebuild:
+ [QA] Revision bump to 1.0-r2. EAPI 5 and Prefix support, added die to cd and
+ cp call.
31 Oct 2009; Mike Auty <[email protected]> ophcrack-tables-1.0.ebuild,
ophcrack-tables-1.0-r1.ebuild:
@@ -19,4 +26,3 @@
21 Jul 2008; Mike Auty <[email protected]> +metadata.xml,
+ophcrack-tables-1.0.ebuild:
Initial commit of split-out ophcrack tables.
-
1.1 app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild
file :
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild?rev=1.1&view=markup
plain:
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild?rev=1.1&content-type=text/plain
Index: ophcrack-tables-1.0-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:
/var/cvsroot/gentoo-x86/app-crypt/ophcrack-tables/ophcrack-tables-1.0-r2.ebuild,v
1.1 2014/04/02 10:41:16 tomwij Exp $
EAPI="5"
DESCRIPTION="Tables available for ophcrack"
HOMEPAGE="http://ophcrack.sourceforge.net/"
SRC_URI="xpfast? ( mirror://sourceforge/ophcrack/tables_xp_free_fast.zip )
xpsmall? (
mirror://sourceforge/ophcrack/tables_xp_free_small.zip )
vistafree? (
mirror://sourceforge/ophcrack/tables_vista_free.zip )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="+xpfast xpsmall +vistafree"
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}
src_unpack() {
for i in ${A};
do
table=${i#tables_}
table=${table%.zip}
mkdir "${S}/${table}"
cd $_ || die
unpack "${i}"
done
}
src_install() {
dodir /usr/share/ophcrack/
cp -r "${S}"/* "${ED}"/usr/share/ophcrack/ || die
}