Gentoo Archives: gentoo-commits

From: "Raúl Porcel" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pandaboard:master commit in: media-libs/tiler/
Date: Mon, 04 Apr 2011 17:48:32
Message-Id: b783aacb4b87c13fb936c4101cfff403160319e2.armin76@gentoo
1 commit: b783aacb4b87c13fb936c4101cfff403160319e2
2 Author: Daniel Diaz <ddiaz <AT> ti <DOT> com>
3 AuthorDate: Thu Jan 13 22:45:36 2011 +0000
4 Commit: Raúl Porcel <armin76 <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 22 22:59:58 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pandaboard.git;a=commit;h=b783aacb
7
8 Add ebuild for TILER.
9
10 Signed-off-by: Daniel Diaz <ddiaz <AT> ti.com>
11
12 ---
13 media-libs/tiler/Manifest | 1 +
14 media-libs/tiler/tiler-24.11-r0.ebuild | 38 ++++++++++++++++++++++++++++++++
15 2 files changed, 39 insertions(+), 0 deletions(-)
16
17 diff --git a/media-libs/tiler/Manifest b/media-libs/tiler/Manifest
18 new file mode 100644
19 index 0000000..dd0556d
20 --- /dev/null
21 +++ b/media-libs/tiler/Manifest
22 @@ -0,0 +1 @@
23 +EBUILD tiler-24.11-r0.ebuild 776 RMD160 e9aa02bdb189806c7af3a62d5e1001afe8c5cb24 SHA1 8abb2ca2f7036ec1f436eb6c4cd664584355281f SHA256 76cf528272302c11db4f0ece3dbb6d194952c2762f6ae5c81f68647cea61d7fc
24
25 diff --git a/media-libs/tiler/tiler-24.11-r0.ebuild b/media-libs/tiler/tiler-24.11-r0.ebuild
26 new file mode 100644
27 index 0000000..f78ef5c
28 --- /dev/null
29 +++ b/media-libs/tiler/tiler-24.11-r0.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2011 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Header: $
34 +
35 +EAPI=2
36 +
37 +inherit git autotools eutils libtool
38 +
39 +DESCRIPTION="TI TILER Memory Manager"
40 +HOMEPAGE="http://dev.omapzoom.org/?p=tiler/tiler-userspace.git;a=summary"
41 +#DEPEND=""
42 +LICENSE="BSD"
43 +KEYWORDS="arm"
44 +SLOT="0"
45 +IUSE=""
46 +
47 +SRC_URI=""
48 +NPV=${PV/_/-}; NPV=${NPV^^}
49 +EGIT_REPO_URI="git://git.omapzoom.org/platform/hardware/ti/tiler.git"
50 +EGIT_BRANCH="memmgr_1.0"
51 +# FIXME: Can't use tags?
52 +#EGIT_COMMIT="${NPV}"
53 +EGIT_COMMIT="d74be6020e970228f6bd25112fde12ecb4322f65"
54 +S="${WORKDIR}/${P}/memmgr"
55 +
56 +src_unpack() {
57 + MY_S="${WORKDIR}/${P}"
58 + S=${MY_S} git_src_unpack
59 +}
60 +
61 +src_prepare() {
62 + cd ${S} && ./bootstrap.sh
63 + eautoreconf
64 +}
65 +
66 +src_install() {
67 + emake DESTDIR="${D}" install
68 +}