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: ChangeLog libnotify-0.7.5.ebuild
Date: Sat, 31 Mar 2012 08:41:37
Message-Id: 20120331084123.3A3FC2004B@flycatcher.gentoo.org
1 ssuominen 12/03/31 08:41:23
2
3 Modified: ChangeLog
4 Added: libnotify-0.7.5.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha96/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.80 x11-libs/libnotify/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/ChangeLog?rev=1.80&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/ChangeLog?rev=1.80&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/ChangeLog?r1=1.79&r2=1.80
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libnotify/ChangeLog,v
20 retrieving revision 1.79
21 retrieving revision 1.80
22 diff -u -r1.79 -r1.80
23 --- ChangeLog 23 Jan 2012 01:50:33 -0000 1.79
24 +++ ChangeLog 31 Mar 2012 08:41:23 -0000 1.80
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/libnotify
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libnotify/ChangeLog,v 1.79 2012/01/23 01:50:33 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libnotify/ChangeLog,v 1.80 2012/03/31 08:41:23 ssuominen Exp $
30 +
31 +*libnotify-0.7.5 (31 Mar 2012)
32 +
33 + 31 Mar 2012; Samuli Suominen <ssuominen@g.o> +libnotify-0.7.5.ebuild:
34 + Version bump.
35
36 *libnotify-0.7.4-r1 (23 Jan 2012)
37
38
39
40
41 1.1 x11-libs/libnotify/libnotify-0.7.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/libnotify-0.7.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/libnotify/libnotify-0.7.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libnotify-0.7.5.ebuild
47 ===================================================================
48 # Copyright 1999-2012 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libnotify/libnotify-0.7.5.ebuild,v 1.1 2012/03/31 08:41:23 ssuominen Exp $
51
52 EAPI=4
53 inherit autotools gnome.org
54
55 DESCRIPTION="A library for sending desktop notifications"
56 HOMEPAGE="http://git.gnome.org/browse/libnotify"
57 SRC_URI="${SRC_URI}
58 mirror://gentoo/introspection-20110205.m4.tar.bz2"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
63 IUSE="doc +introspection +symlink test"
64
65 RDEPEND=">=dev-libs/glib-2.26
66 x11-libs/gdk-pixbuf:2
67 introspection? ( >=dev-libs/gobject-introspection-0.9.12 )"
68 DEPEND="${RDEPEND}
69 dev-util/gtk-doc-am
70 dev-util/pkgconfig
71 doc? ( >=dev-util/gtk-doc-1.14 )
72 symlink? ( !x11-misc/tinynotify-send[symlink] )
73 test? ( x11-libs/gtk+:3 )"
74 PDEPEND="virtual/notification-daemon"
75
76 DOCS=( AUTHORS ChangeLog NEWS )
77
78 src_prepare() {
79 sed -i -e 's:noinst_PROG:check_PROG:' tests/Makefile.am || die
80
81 if ! use test; then
82 sed -i -e '/PKG_CHECK_MODULES(TESTS/d' configure.ac || die
83 fi
84
85 if has_version 'dev-libs/gobject-introspection'; then
86 eautoreconf
87 else
88 AT_M4DIR=${WORKDIR} eautoreconf
89 fi
90 }
91
92 src_configure() {
93 econf \
94 --disable-static \
95 $(use_enable introspection)
96 }
97
98 src_install() {
99 default
100 rm -f "${ED}"usr/lib*/${PN}.la
101
102 mv -vf "${ED}"usr/bin/{,${PN}-}notify-send #379941
103 use symlink && dosym ${PN}-notify-send /usr/bin/notify-send
104 }