diff options
author | Dror Levin <spatz@gentoo.org> | 2009-12-22 20:21:06 +0000 |
---|---|---|
committer | Dror Levin <spatz@gentoo.org> | 2009-12-22 20:21:06 +0000 |
commit | 0959cc12eef6e104dee03dea2263125d9513e1ed (patch) | |
tree | b307ab4da2f733fc45cba0e1f38c2fa17622686b | |
parent | old (diff) | |
download | gentoo-2-0959cc12eef6e104dee03dea2263125d9513e1ed.tar.gz gentoo-2-0959cc12eef6e104dee03dea2263125d9513e1ed.tar.bz2 gentoo-2-0959cc12eef6e104dee03dea2263125d9513e1ed.zip |
Initial import, bug 291653. Thanks to Franz Glauber Vanderlinde.
(Portage version: 2.2_rc60/cvs/Linux x86_64)
-rw-r--r-- | x11-plugins/pidgin-knotify/ChangeLog | 10 | ||||
-rw-r--r-- | x11-plugins/pidgin-knotify/metadata.xml | 9 | ||||
-rw-r--r-- | x11-plugins/pidgin-knotify/pidgin-knotify-0.2.1.ebuild | 22 |
3 files changed, 41 insertions, 0 deletions
diff --git a/x11-plugins/pidgin-knotify/ChangeLog b/x11-plugins/pidgin-knotify/ChangeLog new file mode 100644 index 000000000000..7a0166ff8b34 --- /dev/null +++ b/x11-plugins/pidgin-knotify/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for x11-plugins/pidgin-knotify +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-knotify/ChangeLog,v 1.1 2009/12/22 20:21:06 spatz Exp $ + +*pidgin-knotify-0.2.1 (22 Dec 2009) + + 22 Dec 2009; Dror Levin <spatz@gentoo.org> +pidgin-knotify-0.2.1.ebuild, + +metadata.xml: + Initial import, bug 291653. Thanks to Franz Glauber Vanderlinde. + diff --git a/x11-plugins/pidgin-knotify/metadata.xml b/x11-plugins/pidgin-knotify/metadata.xml new file mode 100644 index 000000000000..ac01f27776bd --- /dev/null +++ b/x11-plugins/pidgin-knotify/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>net-im</herd> + <herd>kde</herd> + <maintainer> + <email>spatz@gentoo.org</email> + </maintainer> +</pkgmetadata> diff --git a/x11-plugins/pidgin-knotify/pidgin-knotify-0.2.1.ebuild b/x11-plugins/pidgin-knotify/pidgin-knotify-0.2.1.ebuild new file mode 100644 index 000000000000..f62223db74d4 --- /dev/null +++ b/x11-plugins/pidgin-knotify/pidgin-knotify-0.2.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-knotify/pidgin-knotify-0.2.1.ebuild,v 1.1 2009/12/22 20:21:06 spatz Exp $ + +EAPI="2" + +DESCRIPTION="Plugin that enables knotify for Pidgin in KDE 4 environment" +HOMEPAGE="http://code.google.com/p/pidgin-knotify/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="net-im/pidgin + kde-base/knotify" +RDEPEND="${DEPEND}" + +src_install() { + emake DESTDIR="${D}" install || die "install failed" +} |