Gentoo Archives: gentoo-commits

From: Mike Auty <ikelos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] dev/ikelos:master commit in: app-forensics/libpff/
Date: Mon, 30 May 2011 21:35:39
Message-Id: e603357a02798523594b209a3dc44bc6a89500cb.ikelos@gentoo
1 commit: e603357a02798523594b209a3dc44bc6a89500cb
2 Author: Mike Auty <ikelos <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 30 18:01:30 2011 +0000
4 Commit: Mike Auty <ikelos <AT> gentoo <DOT> org>
5 CommitDate: Mon May 30 18:01:30 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/ikelos.git;a=commit;h=e603357a
7
8 Add in libpff as it's a dependency of dff-1.1.
9
10 ---
11 app-forensics/libpff/Manifest | 2 +
12 .../libpff/libpff-0.0.20110413_alpha.ebuild | 27 ++++++++++++++++++++
13 2 files changed, 29 insertions(+), 0 deletions(-)
14
15 diff --git a/app-forensics/libpff/Manifest b/app-forensics/libpff/Manifest
16 new file mode 100644
17 index 0000000..f54b842
18 --- /dev/null
19 +++ b/app-forensics/libpff/Manifest
20 @@ -0,0 +1,2 @@
21 +DIST libpff-alpha-20110413.tar.gz 1103923 RMD160 1fc64d8d574364f9f208cb94a2d05aebb4ce2b2e SHA1 3071f0b7e767f9e71ce5d09d95988f7a6dc3a8e7 SHA256 9d2ec6778abc8228ada26e3fc41731c701976c11474668edf49d5f79d42fd62d
22 +EBUILD libpff-0.0.20110413_alpha.ebuild 619 RMD160 61a2ed88e29fc8043bbb0a8a79bfbc7210042df7 SHA1 ec4155a28d5f90b6c2eb2e373f3c3e03e313bc35 SHA256 51affbc8dc1c14763226b6008fbd4e42805a3e0ea3f73d286f4823eb9b600ea0
23
24 diff --git a/app-forensics/libpff/libpff-0.0.20110413_alpha.ebuild b/app-forensics/libpff/libpff-0.0.20110413_alpha.ebuild
25 new file mode 100644
26 index 0000000..4720aba
27 --- /dev/null
28 +++ b/app-forensics/libpff/libpff-0.0.20110413_alpha.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2011 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Header: $
33 +
34 +EAPI=3
35 +
36 +inherit versionator
37 +
38 +MY_DATE="$(get_version_component_range 3)"
39 +
40 +DESCRIPTION="Library for accessing Personal Folder Files."
41 +HOMEPAGE="http://sf.net/projects/libpff"
42 +SRC_URI="mirror://sourceforge/project/${PN}/${PN}-alpha/${PN}-alpha-${MY_DATE}/${PN}-alpha-${MY_DATE}.tar.gz"
43 +
44 +LICENSE="LGPL-3"
45 +SLOT="0"
46 +KEYWORDS="~x86 ~amd64"
47 +IUSE=""
48 +
49 +DEPEND=""
50 +RDEPEND="${DEPEND}"
51 +
52 +S="${WORKDIR}/${PN}-${MY_DATE}"
53 +
54 +src_install() {
55 + emake install DESTDIR="${D}" || die "Failed to install"
56 +}