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 2BD72138262 for ; Fri, 20 May 2016 20:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8F7621C046; Fri, 20 May 2016 20:19:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86DE321C046 for ; Fri, 20 May 2016 20:19:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34E1D340BDE for ; Fri, 20 May 2016 20:19:48 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D291E334 for ; Fri, 20 May 2016 20:19:46 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1463775576.ff1eceb70ca45188eb192c9eca6076baa36eb5c3.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-indicator/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-indicator/Manifest x11-plugins/pidgin-indicator/pidgin-indicator-1.0.ebuild X-VCS-Directories: x11-plugins/pidgin-indicator/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: ff1eceb70ca45188eb192c9eca6076baa36eb5c3 X-VCS-Branch: master Date: Fri, 20 May 2016 20:19:46 +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: 30dc2bcc-a554-46f4-bb07-a9316155ab3c X-Archives-Hash: 30d8d347ae8a403b6b5ff8e6f799cce9 commit: ff1eceb70ca45188eb192c9eca6076baa36eb5c3 Author: Manuel Rüger gentoo org> AuthorDate: Fri May 20 20:19:36 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri May 20 20:19:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff1eceb7 x11-plugins/pidgin-indicator: Version bump to 1.0 Package-Manager: portage-2.2.28 x11-plugins/pidgin-indicator/Manifest | 1 + .../pidgin-indicator/pidgin-indicator-1.0.ebuild | 32 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/x11-plugins/pidgin-indicator/Manifest b/x11-plugins/pidgin-indicator/Manifest index c685a4e..747c5e7 100644 --- a/x11-plugins/pidgin-indicator/Manifest +++ b/x11-plugins/pidgin-indicator/Manifest @@ -1 +1,2 @@ DIST pidgin-indicator-0.9.tar.gz 28350 SHA256 bf7b3c8914a96ef7953adb503b37e0e238682f264a21355fb99e7bf148db6b5c SHA512 bf16a47d44bb184815437c6bc70021777fb8e438838eb916351c59e82879e9bdaebd430ffa77c7d36e6b66d923813bcfb7c17759c8310eb6f9e260def4189ece WHIRLPOOL 29f23d84a327a8f885ef4fa1e64f422bd4b278582601f0d58a564fede66685ed20192453c1018e6ce4b171e5d03b63e00b82014926c03668394805d238f0e475 +DIST pidgin-indicator-1.0.tar.gz 29583 SHA256 6fc6dfe29eb45fd855a4494e46eb83306a296f5225ea5f7c6a12f3ad475b8eae SHA512 9aa9847cb6e3c988ed4bf0666ad94139b3d3aa1b9fa4215a2d5a72cbde4db9cfdd809ab576c5ab060c33e3e89acd0ede9cde0f3d8a26bef2c5f5f46052a05102 WHIRLPOOL 193e921caebd98f150279d5a9c2ca272eedf63b4b991fd596f1a282692899cde706f67338eabe7b14d9f453ba9ea8e0f18a4734214f73a8cd0fb884accf154a7 diff --git a/x11-plugins/pidgin-indicator/pidgin-indicator-1.0.ebuild b/x11-plugins/pidgin-indicator/pidgin-indicator-1.0.ebuild new file mode 100644 index 0000000..5079f8b --- /dev/null +++ b/x11-plugins/pidgin-indicator/pidgin-indicator-1.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit autotools + +DESCRIPTION="Indicator plugin for Pidgin" +HOMEPAGE="https://github.com/philipl/pidgin-indicator" +SRC_URI="https://github.com/philipl/pidgin-indicator/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-libs/glib:2 + dev-libs/libappindicator:2 + net-im/pidgin[gtk] + x11-libs/gtk+:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + eautoreconf +} + +src_install() { + default + find "${D}" -name "*.la" -exec rm {} + || die +}