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 1ShbjC-0003VP-8z for garchives@archives.gentoo.org; Thu, 21 Jun 2012 07:22:54 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5F39EE08BD; Thu, 21 Jun 2012 07:22:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 32D92E08BD for ; Thu, 21 Jun 2012 07:22:47 +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 9B66E1B402F for ; Thu, 21 Jun 2012 07:22:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 19451E5439 for ; Thu, 21 Jun 2012 07:22:44 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1340263326.267291d482ed91da9800e56974102c858191a85b.eva@gentoo> Subject: [gentoo-commits] dev/eva:master commit in: games-fps/quakelive/ X-VCS-Repository: dev/eva X-VCS-Files: games-fps/quakelive/Manifest games-fps/quakelive/quakelive-0.1.0.520.ebuild X-VCS-Directories: games-fps/quakelive/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 267291d482ed91da9800e56974102c858191a85b X-VCS-Branch: master Date: Thu, 21 Jun 2012 07:22:44 +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: a56fc582-ba31-4196-aab9-3545fcaaceb5 X-Archives-Hash: d74715fa0ed987d965b3e84ca24c19a4 commit: 267291d482ed91da9800e56974102c858191a85b Author: Gilles Dartiguelongue gentoo org> AuthorDate: Thu Jun 21 07:22:06 2012 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Thu Jun 21 07:22:06 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Ddev/eva.git;a=3Dco= mmit;h=3D267291d4 games-fps/quakelive: initial ebuild Got annoyed by automagic extension installation not working on gentoo or with other nsplugin compatible browser (like epiphany). --- games-fps/quakelive/Manifest | 1 + games-fps/quakelive/quakelive-0.1.0.520.ebuild | 41 ++++++++++++++++++= ++++++ 2 files changed, 42 insertions(+), 0 deletions(-) diff --git a/games-fps/quakelive/Manifest b/games-fps/quakelive/Manifest new file mode 100644 index 0000000..17aaab1 --- /dev/null +++ b/games-fps/quakelive/Manifest @@ -0,0 +1 @@ +DIST quakelive-0.1.0.520.zip 1479965 RMD160 34a237489144ed48f08f8cd4ebe6= f3f5af2bd1ab SHA1 541757ceb802789ff4e1fc574b0fda4858594237 SHA256 320a960= 3d66a8614e3dda00fe1008e949f85b07389451237659105253bbd161f diff --git a/games-fps/quakelive/quakelive-0.1.0.520.ebuild b/games-fps/q= uakelive/quakelive-0.1.0.520.ebuild new file mode 100644 index 0000000..4d26542 --- /dev/null +++ b/games-fps/quakelive/quakelive-0.1.0.520.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D"4" + +inherit games versionator + +MY_PV=3D$(replace_all_version_separators ',') +MY_NANO=3D$(get_version_component_range 4) + +DESCRIPTION=3D"" +HOMEPAGE=3D"http://www.quakelive.com" +SRC_URI=3D"http://cdn.quakelive.com/assets/2012052200/QuakeLivePlugin_${= MY_NANO}.xpi?v=3D${MY_PV} -> ${PF}.zip" + +LICENSE=3D"QuakeLive" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"" + +# FIXME: needs a dep for libstdc++6 +RDEPEND=3D" + media-libs/alsa-lib + x11-libs/libX11 + x11-libs/libXext + x11-libs/libXxf86dga + x11-libs/libXxf86vm +" +DEPEND=3D"${RDEPEND} +" + +S=3D"${WORKDIR}/plugins" + +src_install() { + exeinto /usr/$(get_libdir)/nsbrowser/plugins + if use amd64; then + doexe npquakelive.x64.so + elif use x86; then + doexe npquakelive.i386.so + fi +}