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 E291D138247 for ; Sat, 11 Oct 2014 07:58:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA8A4E0C17; Sat, 11 Oct 2014 07:58:18 +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 A39CAE0C17 for ; Sat, 11 Oct 2014 07:58:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C8785340417 for ; Sat, 11 Oct 2014 07:58:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BAE2789A for ; Sat, 11 Oct 2014 07:58:16 +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: <1413014222.20dff693546d87ae75ad6dda2f3be680afeb395a.mrueg@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/statusnotifier/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/statusnotifier/metadata.xml dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild X-VCS-Directories: dev-libs/statusnotifier/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 20dff693546d87ae75ad6dda2f3be680afeb395a X-VCS-Branch: master Date: Sat, 11 Oct 2014 07:58:16 +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: 02014b6c-5f38-486c-b95e-bdb31a46501d X-Archives-Hash: 539b96d6e4b40c33170d7232f95871d0 commit: 20dff693546d87ae75ad6dda2f3be680afeb395a Author: Manuel Rüger gentoo org> AuthorDate: Sat Oct 11 07:57:02 2014 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Oct 11 07:57:02 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=20dff693 [dev-libs/statusnotifier] Initial commit. Package-Manager: portage-2.2.14_rc1 --- dev-libs/statusnotifier/metadata.xml | 5 +++++ .../statusnotifier/statusnotifier-0.1.0.ebuild | 24 ++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/dev-libs/statusnotifier/metadata.xml b/dev-libs/statusnotifier/metadata.xml new file mode 100644 index 0000000..a23f444 --- /dev/null +++ b/dev-libs/statusnotifier/metadata.xml @@ -0,0 +1,5 @@ + + + + kde + diff --git a/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild new file mode 100644 index 0000000..a98b39f --- /dev/null +++ b/dev-libs/statusnotifier/statusnotifier-0.1.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit autotools + +DESCRIPTION="Library to use KDE's StatusNotifierItem via GObject" +HOMEPAGE="https://github.com/jjk-jacky/statusnotifier" +SRC_URI="https://github.com/jjk-jacky/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-libs/glib:2 + x11-libs/gdk-pixbuf" +RDEPEND="${DEPEND}" + +src_prepare() { + eautoreconf +}