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 438041393F1 for ; Tue, 15 Sep 2015 20:41:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB0D321C017; Tue, 15 Sep 2015 20:40:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C366FE0872 for ; Tue, 15 Sep 2015 20:40:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7563340C1B for ; Tue, 15 Sep 2015 20:40:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C207B1FB for ; Tue, 15 Sep 2015 20:40:54 +0000 (UTC) From: "Markos Chandras" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Markos Chandras" Message-ID: <1442348941.a21411140a64ca2e06e341985312b61fcbfecd2c.hwoarang@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgaminggear/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgaminggear/libgaminggear-0.11.1.ebuild X-VCS-Directories: dev-libs/libgaminggear/ X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras X-VCS-Revision: a21411140a64ca2e06e341985312b61fcbfecd2c X-VCS-Branch: master Date: Tue, 15 Sep 2015 20:40:54 +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: 9889458f-a676-489d-80f6-985d4883fbee X-Archives-Hash: dbb991a9579568e51d1631e52dff1640 commit: a21411140a64ca2e06e341985312b61fcbfecd2c Author: blackraven gmail com> AuthorDate: Tue Sep 15 15:38:17 2015 +0000 Commit: Markos Chandras gentoo org> CommitDate: Tue Sep 15 20:29:01 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2141114 dev-libs/libgaminggear: version bump dev-libs/libgaminggear/libgaminggear-0.11.1.ebuild | 56 ++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/dev-libs/libgaminggear/libgaminggear-0.11.1.ebuild b/dev-libs/libgaminggear/libgaminggear-0.11.1.ebuild new file mode 100644 index 0000000..e2cdc0d --- /dev/null +++ b/dev-libs/libgaminggear/libgaminggear-0.11.1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils gnome2-utils + +DESCRIPTION="Provides functionality for gaming input devices" + +HOMEPAGE="http://sourceforge.net/projects/libgaminggear/" +SRC_URI="mirror://sourceforge/libgaminggear/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=" + x11-libs/gtk+:2 + x11-libs/libnotify + media-libs/libcanberra + virtual/libusb:1 + dev-libs/dbus-glib +" + +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.10.0-doc.patch +} + +src_configure() { + mycmakeargs=( + -DCMAKE_INSTALL_PREFIX="${EPREFIX}"/usr + -DDOCDIR=share/doc/${PF} + $(cmake-utils_use_with doc DOC) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}