mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 11:00:48 +02:00
samdump: compilation fix
This commit is contained in:
parent
b9f2802462
commit
55ef15f185
3 changed files with 8 additions and 28 deletions
|
|
@ -1,4 +1,2 @@
|
|||
DIST samdump2-2.0.1.tar.bz2 20673 SHA256 f9669bd75a29e050235b45ad57030e7311984f834668885cc5c3b7f100df3e4b SHA512 5d3bf3bfe701f0f92e1c13162a44379b351275ce2cb708866d809ccbd2bdb641646c61637b8d30f14ce536417dcd93402b92dfebda5c8d6a0d1d0678198435a3 WHIRLPOOL 2bd08b13633af1b6abf5630f9062eb751ad7a16fb6f88d7f6d5338a211ccf9bd0fa23e441c2195819233f82b334c25f2057f81aee22d5fce84d6c37b9ed1345a
|
||||
DIST samdump2-3.0.0.tar.bz2 32784 SHA256 602659af30c565750fa01650e0a223d26355b5df98f2fbc30e3a6c593ed4e526 SHA512 57ff1f761e833346887ac7fdbc76e202822b306ce0a35af2a491dafc7b277836f3f113be6703c71be82828e8442e6ecd320cb88f4dcc7c5fbf7f2ca257abea95 WHIRLPOOL 364004f6782e334867332e78a6d0901ed2f0560317554f5bd8c5fece74aa3c823bb2c68bc0551dd0350dfccd95f7a0a0c3f5879f27a088b7b76507349978e029
|
||||
EBUILD samdump2-2.0.1.ebuild 534 SHA256 baa802a10518806778c3de7c874536dda918d528a4d420137a6fad5381dbaca8 SHA512 69e5bfeaf1f48c0be973408271a0daa7a1b8e6b50658c801154653a5b96abe88842a465343c8878081ae0ebe08f7ef0a4360176c028c683382e2adc2047266f4 WHIRLPOOL 4367ac37805406b8d68e0af1de47d92774b31d4d4905afab4ec4fbb365bdba022da4724157c98bb6262c8b34fb1376d2373cf93b195b59672b3d737a284e2edb
|
||||
EBUILD samdump2-3.0.0.ebuild 534 SHA256 baa802a10518806778c3de7c874536dda918d528a4d420137a6fad5381dbaca8 SHA512 69e5bfeaf1f48c0be973408271a0daa7a1b8e6b50658c801154653a5b96abe88842a465343c8878081ae0ebe08f7ef0a4360176c028c683382e2adc2047266f4 WHIRLPOOL 4367ac37805406b8d68e0af1de47d92774b31d4d4905afab4ec4fbb365bdba022da4724157c98bb6262c8b34fb1376d2373cf93b195b59672b3d737a284e2edb
|
||||
EBUILD samdump2-3.0.0-r1.ebuild 612 SHA256 bba4a33b196b6a7f489097ef30dca15e26482faf38e5ba407d6990524bcc5c86 SHA512 42772c3c2533de8db0fe82075f5fbc1b6925f971f847fd009310c4af74f187a41519a04e6cc7d479fbfdd553b15207292b997e34c3802c0c2b082c060f02be8f WHIRLPOOL 9fac642e92ad54eab300ba9f476b29ea2b2323ccf8c1369e7e6a8de7364bda11239d7e7e51586295954a5131527af93c52bb23ab7d92c08bcc0256046dc11a67
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=5
|
||||
|
||||
DESCRIPTION="Windows NT/2k/XP/Vista sam hash dumper"
|
||||
HOMEPAGE="http://sourceforge.net/projects/ophcrack/files/"
|
||||
SRC_URI="mirror://sourceforge/ophcrack/${PN}/${P}.tar.bz2"
|
||||
|
|
@ -14,6 +16,10 @@ IUSE=""
|
|||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
sed -e 's|= -lssl|= -lssl -lcrypto|g' -i Makefile
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
|
@ -1,24 +0,0 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
DESCRIPTION="Windows NT/2k/XP/Vista sam hash dumper"
|
||||
HOMEPAGE="http://sourceforge.net/projects/ophcrack/files/"
|
||||
SRC_URI="mirror://sourceforge/ophcrack/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~arm"
|
||||
IUSE=""
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_compile() {
|
||||
emake || die "emake failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dobin samdump2 || die "install failed"
|
||||
doman samdump2.1 || die "install failed"
|
||||
}
|
||||
Loading…
Reference in a new issue