summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKathryn Kulick <gothgirl@gentoo.org>2006-10-23 22:39:39 +0000
committerKathryn Kulick <gothgirl@gentoo.org>2006-10-23 22:39:39 +0000
commit7dc86193e4cd2abe1e779c39fd31073259dc0b7c (patch)
treecd8bc0ff9cd90b54235e145e90df0588c240d133 /x11-plugins
parentAdd to the python herd. (diff)
downloadgentoo-2-7dc86193e4cd2abe1e779c39fd31073259dc0b7c.tar.gz
gentoo-2-7dc86193e4cd2abe1e779c39fd31073259dc0b7c.tar.bz2
gentoo-2-7dc86193e4cd2abe1e779c39fd31073259dc0b7c.zip
version bump re bug#152121
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/gaim-libnotify/ChangeLog7
-rw-r--r--x11-plugins/gaim-libnotify/files/digest-gaim-libnotify-0.123
-rw-r--r--x11-plugins/gaim-libnotify/gaim-libnotify-0.12.ebuild32
3 files changed, 41 insertions, 1 deletions
diff --git a/x11-plugins/gaim-libnotify/ChangeLog b/x11-plugins/gaim-libnotify/ChangeLog
index 5169afbfc2e1..018c90207636 100644
--- a/x11-plugins/gaim-libnotify/ChangeLog
+++ b/x11-plugins/gaim-libnotify/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for x11-plugins/gaim-libnotify
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-libnotify/ChangeLog,v 1.2 2006/08/08 16:56:52 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-libnotify/ChangeLog,v 1.3 2006/10/23 22:39:39 gothgirl Exp $
+
+*gaim-libnotify-0.12 (23 Oct 2006)
+
+ 23 Oct 2006; gothgirl <gothgirl@gentoo.org> +gaim-libnotify-0.12.ebuild:
+ version bump re:bug#152121
08 Aug 2006; Michael Hanselmann <hansmi@gentoo.org>
gaim-libnotify-0.11.ebuild:
diff --git a/x11-plugins/gaim-libnotify/files/digest-gaim-libnotify-0.12 b/x11-plugins/gaim-libnotify/files/digest-gaim-libnotify-0.12
new file mode 100644
index 000000000000..bf0d3cc0edab
--- /dev/null
+++ b/x11-plugins/gaim-libnotify/files/digest-gaim-libnotify-0.12
@@ -0,0 +1,3 @@
+MD5 2fccdfcf7c4a86f39157e9433c3437d9 gaim-libnotify-0.12.tar.gz 448277
+RMD160 4eea944222cddf2be0b9251b6efad60afb7ef461 gaim-libnotify-0.12.tar.gz 448277
+SHA256 821ac26b841e852a593714004e2d6b3c0cfdf538ee2dec5edfca74559df99f49 gaim-libnotify-0.12.tar.gz 448277
diff --git a/x11-plugins/gaim-libnotify/gaim-libnotify-0.12.ebuild b/x11-plugins/gaim-libnotify/gaim-libnotify-0.12.ebuild
new file mode 100644
index 000000000000..3649fa781379
--- /dev/null
+++ b/x11-plugins/gaim-libnotify/gaim-libnotify-0.12.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gaim-libnotify/gaim-libnotify-0.12.ebuild,v 1.1 2006/10/23 22:39:39 gothgirl Exp $
+
+DESCRIPTION="gaim-libnotify provides popups for gaim via a libnotify interface"
+HOMEPAGE="http://gaim-libnotify.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="nls debug"
+
+DEPEND=">=x11-libs/libnotify-0.3.2"
+
+RDEPEND=">=net-im/gaim-2.0.0_beta4"
+
+src_compile() {
+ local myconf
+
+ myconf="$(use_enable debug) \
+ $(use_enable nls)"
+
+ econf ${myconf} || die "configure failed"
+
+ emake || die "make failed"
+}
+
+src_install() {
+ make install DESTDIR=${D} || die "make install failed"
+ dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION
+}