* [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-libnotify: pidgin-libnotify-0.13-r1.ebuild pidgin-libnotify-0.13.ebuild ChangeLog
@ 2008-01-07 4:35 Olivier Crete (tester)
0 siblings, 0 replies; only message in thread
From: Olivier Crete (tester) @ 2008-01-07 4:35 UTC (permalink / raw
To: gentoo-commits
tester 08/01/07 04:35:16
Modified: pidgin-libnotify-0.13-r1.ebuild
pidgin-libnotify-0.13.ebuild ChangeLog
Log:
Add dep on gtk (and check that pidgin has it too)
(Portage version: 2.1.3.19)
Revision Changes Path
1.3 x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild?r1=1.2&r2=1.3
Index: pidgin-libnotify-0.13-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- pidgin-libnotify-0.13-r1.ebuild 26 Oct 2007 19:09:03 -0000 1.2
+++ pidgin-libnotify-0.13-r1.ebuild 7 Jan 2008 04:35:15 -0000 1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild,v 1.2 2007/10/26 19:09:03 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13-r1.ebuild,v 1.3 2008/01/07 04:35:15 tester Exp $
inherit eutils
@@ -13,9 +13,16 @@
KEYWORDS="~amd64 ~hppa ~ppc ~x86"
IUSE="nls debug"
-DEPEND=">=x11-libs/libnotify-0.3.2"
-
-RDEPEND="net-im/pidgin ${DEPEND}"
+DEPEND=">=x11-libs/libnotify-0.3.2
+ net-im/pidgin
+ >=x11-libs/gtk+-2"
+
+pkg_setup() {
+ if ! built_with_use net-im/pidgin gtk; then
+ eerror "You need to compile net-im/pidgin with USE=gtk"
+ die "Missing gtk USE flag on net-im/pidgin"
+ fi
+}
src_unpack() {
unpack ${A}
@@ -35,6 +42,6 @@
}
src_install() {
- make install DESTDIR=${D} || die "make install failed"
+ make install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION
}
1.6 x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild?r1=1.5&r2=1.6
Index: pidgin-libnotify-0.13.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- pidgin-libnotify-0.13.ebuild 28 Aug 2007 14:51:03 -0000 1.5
+++ pidgin-libnotify-0.13.ebuild 7 Jan 2008 04:35:15 -0000 1.6
@@ -1,6 +1,6 @@
-# Copyright 1999-2007 Gentoo Foundation
+# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild,v 1.5 2007/08/28 14:51:03 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.13.ebuild,v 1.6 2008/01/07 04:35:15 tester Exp $
DESCRIPTION="pidgin-libnotify provides popups for pidgin via a libnotify interface"
HOMEPAGE="http://gaim-libnotify.sourceforge.net/"
@@ -11,9 +11,16 @@
KEYWORDS="amd64 hppa ppc x86"
IUSE="nls debug"
-DEPEND=">=x11-libs/libnotify-0.3.2"
-
-RDEPEND="net-im/pidgin ${DEPEND}"
+DEPEND=">=x11-libs/libnotify-0.3.2
+ net-im/pidgin
+ >=x11-libs/gtk+-2"
+
+pkg_setup() {
+ if ! built_with_use net-im/pidgin gtk; then
+ eerror "You need to compile net-im/pidgin with USE=gtk"
+ die "Missing gtk USE flag on net-im/pidgin"
+ fi
+}
src_compile() {
local myconf
@@ -27,6 +34,6 @@
}
src_install() {
- make install DESTDIR=${D} || die "make install failed"
+ make install DESTDIR="${D}" || die "make install failed"
dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION
}
1.8 x11-plugins/pidgin-libnotify/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 26 Oct 2007 01:46:23 -0000 1.7
+++ ChangeLog 7 Jan 2008 04:35:15 -0000 1.8
@@ -1,6 +1,10 @@
# ChangeLog for x11-plugins/pidgin-libnotify
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.7 2007/10/26 01:46:23 tester Exp $
+# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.8 2008/01/07 04:35:15 tester Exp $
+
+ 07 Jan 2008; <tester@gentoo.org> pidgin-libnotify-0.13.ebuild,
+ pidgin-libnotify-0.13-r1.ebuild:
+ Add dep on gtk (and check that pidgin has it too)
*pidgin-libnotify-0.13-r1 (26 Oct 2007)
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-07 4:35 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-07 4:35 [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-libnotify: pidgin-libnotify-0.13-r1.ebuild pidgin-libnotify-0.13.ebuild ChangeLog Olivier Crete (tester)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox