Gentoo Archives: gentoo-commits

From: "Olivier Crete (tester)" <tester@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/pidgin-libnotify: ChangeLog pidgin-libnotify-0.14.ebuild pidgin-libnotify-0.13.ebuild
Date: Sun, 01 Feb 2009 02:01:40
Message-Id: E1LTReU-00048z-Ev@stork.gentoo.org
1 tester 09/02/01 02:01:38
2
3 Modified: ChangeLog
4 Added: pidgin-libnotify-0.14.ebuild
5 Removed: pidgin-libnotify-0.13.ebuild
6 Log:
7 Version bump, bug #255539
8 (Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r1 x86_64)
9
10 Revision Changes Path
11 1.15 x11-plugins/pidgin-libnotify/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 21 Feb 2008 20:25:38 -0000 1.14
24 +++ ChangeLog 1 Feb 2009 02:01:38 -0000 1.15
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-plugins/pidgin-libnotify
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.14 2008/02/21 20:25:38 jer Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/ChangeLog,v 1.15 2009/02/01 02:01:38 tester Exp $
31 +
32 +*pidgin-libnotify-0.14 (01 Feb 2009)
33 +
34 + 01 Feb 2009; Olivier CrĂȘte <tester@g.o>
35 + -pidgin-libnotify-0.13.ebuild, +pidgin-libnotify-0.14.ebuild:
36 + Version bump, bug #255539
37
38 21 Feb 2008; Jeroen Roovers <jer@g.o>
39 pidgin-libnotify-0.13-r1.ebuild:
40
41
42
43 1.1 x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: pidgin-libnotify-0.14.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-libnotify/pidgin-libnotify-0.14.ebuild,v 1.1 2009/02/01 02:01:38 tester Exp $
53
54 inherit eutils
55
56 DESCRIPTION="pidgin-libnotify provides popups for pidgin via a libnotify interface"
57 HOMEPAGE="http://gaim-libnotify.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/gaim-libnotify/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~hppa ~ppc ~x86"
63 IUSE="nls debug"
64
65 RDEPEND=">=x11-libs/libnotify-0.3.2
66 net-im/pidgin
67 >=x11-libs/gtk+-2"
68
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 pkg_setup() {
73 if ! built_with_use net-im/pidgin gtk; then
74 eerror "You need to compile net-im/pidgin with USE=gtk"
75 die "Missing gtk USE flag on net-im/pidgin"
76 fi
77 }
78
79 src_unpack() {
80 unpack ${A}
81 cd "${S}"
82 epatch "${FILESDIR}"/pidgin-libnotify-showbutton.patch
83 }
84
85 src_compile() {
86 local myconf
87
88 myconf="$(use_enable debug) \
89 $(use_enable nls)"
90
91 econf ${myconf} || die "configure failed"
92
93 emake || die "make failed"
94 }
95
96 src_install() {
97 make install DESTDIR="${D}" || die "make install failed"
98 dodoc AUTHORS ChangeLog INSTALL NEWS README TODO VERSION
99 }