From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Q6ntA-0003DA-Ek for garchives@archives.gentoo.org; Mon, 04 Apr 2011 17:48:32 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B432E032F; Mon, 4 Apr 2011 17:48:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D0C02E0616 for ; Mon, 4 Apr 2011 17:48:04 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2FF721B40B8 for ; Mon, 4 Apr 2011 17:48:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3D0C880065 for ; Mon, 4 Apr 2011 17:48:03 +0000 (UTC) From: "Raúl Porcel" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Raúl Porcel" Message-ID: Subject: [gentoo-commits] proj/pandaboard:master commit in: media-libs/tiler/ X-VCS-Repository: proj/pandaboard X-VCS-Files: media-libs/tiler/Manifest media-libs/tiler/tiler-24.11-r0.ebuild X-VCS-Directories: media-libs/tiler/ X-VCS-Committer: armin76 X-VCS-Committer-Name: Raúl Porcel X-VCS-Revision: b783aacb4b87c13fb936c4101cfff403160319e2 Date: Mon, 4 Apr 2011 17:48:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 6aa3fc25e333f0f7e2d77557d0911fbf commit: b783aacb4b87c13fb936c4101cfff403160319e2 Author: Daniel Diaz ti com> AuthorDate: Thu Jan 13 22:45:36 2011 +0000 Commit: Ra=C3=BAl Porcel gentoo org> CommitDate: Tue Feb 22 22:59:58 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pandaboard.gi= t;a=3Dcommit;h=3Db783aacb Add ebuild for TILER. Signed-off-by: Daniel Diaz ti.com> --- media-libs/tiler/Manifest | 1 + media-libs/tiler/tiler-24.11-r0.ebuild | 38 ++++++++++++++++++++++++++= ++++++ 2 files changed, 39 insertions(+), 0 deletions(-) diff --git a/media-libs/tiler/Manifest b/media-libs/tiler/Manifest new file mode 100644 index 0000000..dd0556d --- /dev/null +++ b/media-libs/tiler/Manifest @@ -0,0 +1 @@ +EBUILD tiler-24.11-r0.ebuild 776 RMD160 e9aa02bdb189806c7af3a62d5e1001af= e8c5cb24 SHA1 8abb2ca2f7036ec1f436eb6c4cd664584355281f SHA256 76cf5282723= 02c11db4f0ece3dbb6d194952c2762f6ae5c81f68647cea61d7fc diff --git a/media-libs/tiler/tiler-24.11-r0.ebuild b/media-libs/tiler/ti= ler-24.11-r0.ebuild new file mode 100644 index 0000000..f78ef5c --- /dev/null +++ b/media-libs/tiler/tiler-24.11-r0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D2 + +inherit git autotools eutils libtool + +DESCRIPTION=3D"TI TILER Memory Manager" +HOMEPAGE=3D"http://dev.omapzoom.org/?p=3Dtiler/tiler-userspace.git;a=3Ds= ummary" +#DEPEND=3D"" +LICENSE=3D"BSD" +KEYWORDS=3D"arm" +SLOT=3D"0" +IUSE=3D"" + +SRC_URI=3D"" +NPV=3D${PV/_/-}; NPV=3D${NPV^^} +EGIT_REPO_URI=3D"git://git.omapzoom.org/platform/hardware/ti/tiler.git" +EGIT_BRANCH=3D"memmgr_1.0" +# FIXME: Can't use tags? +#EGIT_COMMIT=3D"${NPV}" +EGIT_COMMIT=3D"d74be6020e970228f6bd25112fde12ecb4322f65" +S=3D"${WORKDIR}/${P}/memmgr" + +src_unpack() { + MY_S=3D"${WORKDIR}/${P}" + S=3D${MY_S} git_src_unpack +} + +src_prepare() { + cd ${S} && ./bootstrap.sh + eautoreconf +} + +src_install() { + emake DESTDIR=3D"${D}" install +}