From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id A5AEA1386B4 for ; Sat, 26 Jan 2013 15:53:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CF2F21C00A; Sat, 26 Jan 2013 15:53:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BAD1221C00A for ; Sat, 26 Jan 2013 15:53:06 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0AF233DB91 for ; Sat, 26 Jan 2013 15:53:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 6BDAFE4073 for ; Sat, 26 Jan 2013 15:53:04 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1359215528.429efe9d45c3fb6cf3051bc4308ff3b2e115c1be.sping@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: www-client/chromium-bin-debian/ X-VCS-Repository: proj/betagarden X-VCS-Files: www-client/chromium-bin-debian/chromium-bin-debian-22.0.1229.94_p161065_p1.ebuild X-VCS-Directories: www-client/chromium-bin-debian/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 429efe9d45c3fb6cf3051bc4308ff3b2e115c1be X-VCS-Branch: master Date: Sat, 26 Jan 2013 15:53:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9f2072ba-c70a-4e61-b78f-6408c23cbe92 X-Archives-Hash: 7bf03e9572d4c5d680d940024db1c3da commit: 429efe9d45c3fb6cf3051bc4308ff3b2e115c1be Author: Sebastian Pipping pipping org> AuthorDate: Sat Jan 26 15:52:08 2013 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sat Jan 26 15:52:08 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=429efe9d www-client/chromium-bin-debian: 22.0.1229.94_p161065_p1 --- ...omium-bin-debian-22.0.1229.94_p161065_p1.ebuild | 41 ++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/www-client/chromium-bin-debian/chromium-bin-debian-22.0.1229.94_p161065_p1.ebuild b/www-client/chromium-bin-debian/chromium-bin-debian-22.0.1229.94_p161065_p1.ebuild new file mode 100644 index 0000000..8f448ce --- /dev/null +++ b/www-client/chromium-bin-debian/chromium-bin-debian-22.0.1229.94_p161065_p1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="3" + +inherit multilib + +MY_PV=${PV/_p/~r} # first _p +MY_PV=${MY_PV/_p/+dfsg-0.} # second _p + +DESCRIPTION="Chromium build from Debian unstable" +HOMEPAGE="http://packages.debian.org/sid/chromium" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN:0:8}-browser/${PN:0:8}_${MY_PV}_amd64.deb" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="app-arch/dpkg" +RDEPEND="media-libs/libpng:1.2 + >=media-sound/pulseaudio-2.0 + >=sys-devel/gcc-4.6[cxx] + >=sys-fs/udev-189" + +src_unpack() { + : +} + +src_install() { + local libdir=$(get_libdir) + dpkg --extract "${DISTDIR}/${A}" "${D}" || die + [[ "${libdir}" == lib ]] || { + mv "${D}"/usr/{lib,"${libdir}"} || die + } + + echo sid > "${D}"/etc/debian_version || die + + ln -s "${D}"/usr/${libdir}/libudev.so.{1,0} || die +}