mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
libewf: API v2 support added
This commit is contained in:
parent
eec5bc07c9
commit
5082ae944f
3 changed files with 58 additions and 0 deletions
3
app-forensics/libewf/Manifest
Normal file
3
app-forensics/libewf/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST libewf-20100226.tar.gz 801413 RMD160 cbd1fe93e50dd9fa8c801ad3a1958cbb26435382 SHA1 b9b1012548a7ba445ce4702b08737ddb459c52ec SHA256 aedd2a6b3df6525ff535ab95cd569ebb361a4022eb4163390f26257913c2941a
|
||||
EBUILD libewf-20100226-r1.ebuild 1122 RMD160 e581d2c472a26c411004faddf1b4643b1e362940 SHA1 28cce23827b97e96dacdb522271dc20992a6d466 SHA256 90b4ff08fbdaf9aa0225048fba7dc56a2171981aa1c56d8bc7c41f069ca2c84c
|
||||
MISC metadata.xml 291 RMD160 f5b23c56575de9ef9db94916b9a7ef713a54b0e7 SHA1 6913ff46edb8820eff615ce332ecbe10fcb8f718 SHA256 55cfa5464f25a826d33afb2ddf83fa5a1b84418c581e5b2d25c41acc5c14ea6f
|
||||
44
app-forensics/libewf/libewf-20100226-r1.ebuild
Normal file
44
app-forensics/libewf/libewf-20100226-r1.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20100226.ebuild,v 1.2 2010/02/27 10:25:19 patrick Exp $
|
||||
|
||||
inherit eutils autotools
|
||||
|
||||
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
|
||||
HOMEPAGE="http://libewf.sourceforge.net"
|
||||
SRC_URI="mirror://sourceforge/libewf/${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
|
||||
# upstream bug #2597171, pyewf has implicit declarations
|
||||
#IUSE="debug python rawio unicode"
|
||||
IUSE="ewf2 debug rawio unicode"
|
||||
|
||||
DEPEND="
|
||||
sys-libs/e2fsprogs-libs
|
||||
sys-libs/zlib
|
||||
dev-libs/openssl"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
cd "${S}"
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
econf \
|
||||
$(use_enable unicode wide-character-type) \
|
||||
$(use_enable rawio low-level-functions) \
|
||||
$(use_enable debug verbose-output) \
|
||||
$(use_enable debug debug-output) \
|
||||
$(use_enable ewf2 v2-api)
|
||||
emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
dodoc AUTHORS ChangeLog NEWS README documents/*.txt
|
||||
doman manuals/*.1 manuals/*.3
|
||||
}
|
||||
11
app-forensics/libewf/metadata.xml
Normal file
11
app-forensics/libewf/metadata.xml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>forensics</herd>
|
||||
<maintainer>
|
||||
<email>forensics@gentoo.org</email>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="rawio">Enables raw IO handling</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Loading…
Reference in a new issue