Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libnotify: libnotify-0.7.1.ebuild
Date: Mon, 07 Feb 2011 16:16:17
Message-Id: 20110207161607.2600620054@flycatcher.gentoo.org
1 ssuominen 11/02/07 16:16:07
2
3 Modified: libnotify-0.7.1.ebuild
4 Log:
5 Fix previous commit.
6
7 (Portage version: 2.2.0_alpha20/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.4 x11-libs/libnotify/libnotify-0.7.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild?r1=1.3&r2=1.4
15
16 Index: libnotify-0.7.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- libnotify-0.7.1.ebuild 5 Feb 2011 10:15:09 -0000 1.3
23 +++ libnotify-0.7.1.ebuild 7 Feb 2011 16:16:07 -0000 1.4
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild,v 1.3 2011/02/05 10:15:09 ssuominen Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libnotify/libnotify-0.7.1.ebuild,v 1.4 2011/02/07 16:16:07 ssuominen Exp $
29
30 EAPI=3
31 inherit autotools eutils gnome.org
32 @@ -8,7 +8,7 @@
33 DESCRIPTION="Notifications library"
34 HOMEPAGE="http://www.galago-project.org/"
35 SRC_URI="${SRC_URI}
36 - http://dev.gentoo.org/~ssuominen/introspection-20110205.m4.tar.bz2"
37 + mirror://gentoo/introspection-20110205.m4.tar.bz2"
38
39 LICENSE="LGPL-2.1"
40 SLOT="0"
41 @@ -29,10 +29,19 @@
42 kde-base/knotify
43 )"
44
45 +src_unpack() {
46 + # If gobject-introspection is installed, we don't need the extra .m4
47 + if use introspection; then
48 + unpack ${P}.tar.bz2
49 + else
50 + unpack ${A}
51 + fi
52 +}
53 +
54 src_prepare() {
55 # Add configure switch for gtk+:3 based tests
56 # and make tests build only when needed
57 - epatch "${FILESDIR}/${PN}-0.7.1-gtk3-tests.patch"
58 + epatch "${FILESDIR}"/${PN}-0.7.1-gtk3-tests.patch
59
60 AT_M4DIR=${WORKDIR} eautoreconf
61 }