mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-25 00:01:15 +02:00
libewf: first beta bump, amd86 tested
This commit is contained in:
parent
af730fc6a5
commit
5bc475ae98
2 changed files with 38 additions and 0 deletions
|
|
@ -1,5 +1,7 @@
|
|||
DIST libewf-alpha-20110829.tar.gz 1460956 RMD160 bd5414e252b35d0aac8b327d1df7afc51c3f6633 SHA1 43d1592fe6b2366187bb63e2465f409fea78d9ff SHA256 74364c3776b350425b3e3780ca08a89c84f2c8eb9baed661a1ca065e393c5baf
|
||||
DIST libewf-alpha-20110914.tar.gz 1463643 RMD160 edc6230fe5b3b8bde58ed25c92d61a88ee70616e SHA1 212bca14d233cb9fad66b0f287035f5a41103db8 SHA256 99955f8ed34299d02285bf69946108ccff5b1cf0370731434ed2d07563317aa8
|
||||
DIST libewf-beta-20111015.tar.gz 1473484 RMD160 20201e2232ab23776d80aebd27a84324d3ddd459 SHA1 55bb78290ae5d8faf53ab13e7389d5c6dd5965bb SHA256 487a321c8b8495c8a8965e3c359d6be48c7c4e09c4a0b1a55b03849586bbff8c
|
||||
EBUILD libewf-20110829.ebuild 870 RMD160 ec8a0252da79ee96bc01b44aec0313708c59b6f6 SHA1 36257c6d6d71d8f74ddb43b5bcff2b1c453f0284 SHA256 7db2b73798022709f7ec42f21fb2497e7410b2d69659d39883700cb7a9b612ce
|
||||
EBUILD libewf-20110914.ebuild 870 RMD160 ec8a0252da79ee96bc01b44aec0313708c59b6f6 SHA1 36257c6d6d71d8f74ddb43b5bcff2b1c453f0284 SHA256 7db2b73798022709f7ec42f21fb2497e7410b2d69659d39883700cb7a9b612ce
|
||||
EBUILD libewf-20111015.ebuild 869 RMD160 9a6c81e56546a3da9ff2a09ea98ffbbaf3e254d1 SHA1 10575582b136ed06d72cbfd08b5e375f1809e869 SHA256 862d68728061fef669460b7eb9579173528a1bfe13df44dfb38d3c4fd809ddfd
|
||||
MISC metadata.xml 291 RMD160 f5b23c56575de9ef9db94916b9a7ef713a54b0e7 SHA1 6913ff46edb8820eff615ce332ecbe10fcb8f718 SHA256 55cfa5464f25a826d33afb2ddf83fa5a1b84418c581e5b2d25c41acc5c14ea6f
|
||||
|
|
|
|||
36
app-forensics/libewf/libewf-20111015.ebuild
Normal file
36
app-forensics/libewf/libewf-20111015.ebuild
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# Copyright 1999-2010 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
|
||||
MY_P="${PN}-beta-${PV}"
|
||||
|
||||
DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
|
||||
HOMEPAGE="http://libewf.sourceforge.net"
|
||||
SRC_URI="mirror://sourceforge/libewf/${MY_P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~s390 ~sparc ~x86"
|
||||
IUSE="debug python rawio unicode"
|
||||
|
||||
DEPEND="sys-libs/e2fsprogs-libs
|
||||
sys-libs/zlib
|
||||
dev-libs/openssl"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_configure() {
|
||||
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 python)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake install DESTDIR="${D}"
|
||||
dodoc AUTHORS ChangeLog NEWS README documents/*.txt
|
||||
doman manuals/*.1 manuals/*.3
|
||||
}
|
||||
Loading…
Reference in a new issue