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 1RUPpi-0008WE-GC for garchives@archives.gentoo.org; Sat, 26 Nov 2011 21:30:50 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A897121C05A; Sat, 26 Nov 2011 21:30:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 7933021C05A for ; Sat, 26 Nov 2011 21:30:28 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id EE6881B4020 for ; Sat, 26 Nov 2011 21:30:27 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id F005280052 for ; Sat, 26 Nov 2011 21:30:26 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1c0911fab0df5fe79f6532f8dd139ee14c6ebcdf.alexxy@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: media-gfx/u3d/ X-VCS-Repository: proj/betagarden X-VCS-Files: media-gfx/u3d/metadata.xml media-gfx/u3d/u3d-1.4.2.ebuild X-VCS-Directories: media-gfx/u3d/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 1c0911fab0df5fe79f6532f8dd139ee14c6ebcdf Date: Sat, 26 Nov 2011 21:30:26 +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: 4130a936-9dda-4bbe-9f81-bd319b2a8cf8 X-Archives-Hash: 0b3b1023af9debca35c6a7c0f46c4e78 commit: 1c0911fab0df5fe79f6532f8dd139ee14c6ebcdf Author: Alexey Shvetsov gentoo org> AuthorDate: Sat Nov 26 21:29:13 2011 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sat Nov 26 21:29:13 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/betagarden.gi= t;a=3Dcommit;h=3D1c0911fa [media-gfx/u3d] Import from alexxy overlay (Portage version: 2.2.0_alpha78/git/Linux x86_64, signed Manifest commit = with key F82F92E6) --- media-gfx/u3d/metadata.xml | 9 +++++++++ media-gfx/u3d/u3d-1.4.2.ebuild | 36 ++++++++++++++++++++++++++++++++++= ++ 2 files changed, 45 insertions(+), 0 deletions(-) diff --git a/media-gfx/u3d/metadata.xml b/media-gfx/u3d/metadata.xml new file mode 100644 index 0000000..098ac09 --- /dev/null +++ b/media-gfx/u3d/metadata.xml @@ -0,0 +1,9 @@ + + + + sci + + alexxy@gentoo.org + Alexey Shvetsov + + diff --git a/media-gfx/u3d/u3d-1.4.2.ebuild b/media-gfx/u3d/u3d-1.4.2.ebu= ild new file mode 100644 index 0000000..ad090df --- /dev/null +++ b/media-gfx/u3d/u3d-1.4.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D4 + +inherit cmake-utils multilib + +DESCRIPTION=3D"Port of Intel's U3D library to gnu build tools" +HOMEPAGE=3D"http://u3d.sourceforge.net/" +SRC_URI=3D"http://www.iaas.msu.ru/tmp/${PN}/${P}.tar.gz" + +LICENSE=3D"Apache-2.0" +SLOT=3D"0" +KEYWORDS=3D"~amd64" +IUSE=3D"" + +DEPEND=3D" + sys-libs/zlib + virtual/jpeg + media-libs/libpng + " +RDEPEND=3D"${DEPEND}" + +MYCMAKEARGS=3D"-DU3D_SHARED=3DON -DBUILD_SHARED_LIBS=3DON" + +src_prepare() { + sed \ + -e "s:LIB_DESTINATION u3d:LIB_DESTINATION $(get_libdir):g" \ + -e "s:PLUGIN_DESTINATION u3d:PLUGIN_DESTINATION $(get_libdir):g" \ + -e "s:BIN_DESTINATION u3d:BIN_DESTINATION bin:g" \ + -e "s:INCLUDE_DESTINATION u3d/include:INCLUDE_DESTINATION include:g" \ + -e "s:SAMPLE_DESTINATION u3d/samples:SAMPLE_DESTINATION share/${PN}/sa= mples:g" \ + -e "s:DOC_DESTINATION u3d/docs:DOC_DESTINATION share/docs/${P}:g" \ + -i CMakeLists.txt +}