Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-forensics/libewf: libewf-20140608.ebuild ChangeLog
Date: Fri, 29 Aug 2014 05:51:30
Message-Id: 20140829055125.37987422F@oystercatcher.gentoo.org
1 patrick 14/08/29 05:51:25
2
3 Modified: ChangeLog
4 Added: libewf-20140608.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.59 app-forensics/libewf/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.59&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?rev=1.59&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/ChangeLog?r1=1.58&r2=1.59
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v
20 retrieving revision 1.58
21 retrieving revision 1.59
22 diff -u -r1.58 -r1.59
23 --- ChangeLog 8 Aug 2014 14:00:42 -0000 1.58
24 +++ ChangeLog 29 Aug 2014 05:51:25 -0000 1.59
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-forensics/libewf
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.58 2014/08/08 14:00:42 blueness Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/ChangeLog,v 1.59 2014/08/29 05:51:25 patrick Exp $
30 +
31 +*libewf-20140608 (29 Aug 2014)
32 +
33 + 29 Aug 2014; Patrick Lauer <patrick@g.o> +libewf-20140608.ebuild:
34 + Bump
35
36 08 Aug 2014; Anthony G. Basile <blueness@g.o>
37 libewf-20130416-r1.ebuild, libewf-20131210.ebuild, libewf-20140227.ebuild,
38
39
40
41 1.1 app-forensics/libewf/libewf-20140608.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20140608.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-forensics/libewf/libewf-20140608.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libewf-20140608.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-forensics/libewf/libewf-20140608.ebuild,v 1.1 2014/08/29 05:51:25 patrick Exp $
51
52 EAPI=5
53
54 inherit autotools-utils
55
56 DESCRIPTION="Implementation of the EWF (SMART and EnCase) image format"
57 HOMEPAGE="http://code.google.com/p/libewf/"
58 SRC_URI="https://googledrive.com/host/0B3fBvzttpiiSMTdoaVExWWNsRjg/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0/2"
62 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
63 # upstream bug #2597171, pyewf has implicit declarations
64 #IUSE="debug python unicode"
65 IUSE="bfio debug ewf +fuse +ssl static-libs +uuid unicode zlib"
66
67 DEPEND="
68 sys-libs/zlib
69 bfio? ( =app-forensics/libbfio-0.0.20120425_alpha )
70 fuse? ( sys-fs/fuse )
71 uuid? ( sys-apps/util-linux )
72 ssl? ( dev-libs/openssl )
73 zlib? ( sys-libs/zlib )"
74 RDEPEND="${DEPEND}"
75
76 AUTOTOOLS_IN_SOURCE_BUILD=1
77
78 DOCS=( AUTHORS ChangeLog NEWS README documents/header.txt documents/header2.txt )
79
80 src_configure() {
81 local myeconfargs=(
82 $(use_enable debug debug-output)
83 $(use_enable debug verbose-output)
84 $(use_enable ewf v1-api)
85 $(use_enable unicode wide-character-type)
86 $(use_with zlib)
87 # autodetects bzip2 but does not use
88 --without-bzip2
89 $(use_with bfio libbfio)
90 $(use_with ssl openssl)
91 $(use_with uuid libuuid)
92 $(use_with fuse libfuse)
93 )
94 autotools-utils_src_configure
95 }
96
97 src_install() {
98 autotools-utils_src_install
99 doman manuals/*.1 manuals/*.3
100 }