Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/tinynotify-send: tinynotify-send-1.0.0.ebuild ChangeLog tinynotify-send-0.2.ebuild
Date: Mon, 29 Aug 2011 22:23:58
Message-Id: 20110829222349.27C6E2004C@flycatcher.gentoo.org
1 mgorny 11/08/29 22:23:49
2
3 Modified: ChangeLog
4 Added: tinynotify-send-1.0.0.ebuild
5 Removed: tinynotify-send-0.2.ebuild
6 Log:
7 Version bump. The new version adds support for --foreground option to wait for notification to close.
8
9 (Portage version: 2.2.0_alpha51_p49/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.2 x11-misc/tinynotify-send/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 21 Aug 2011 21:18:50 -0000 1.1
25 +++ ChangeLog 29 Aug 2011 22:23:48 -0000 1.2
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/tinynotify-send
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v 1.1 2011/08/21 21:18:50 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v 1.2 2011/08/29 22:23:48 mgorny Exp $
31 +
32 +*tinynotify-send-1.0.0 (29 Aug 2011)
33 +
34 + 29 Aug 2011; Michał Górny <mgorny@g.o> -tinynotify-send-0.2.ebuild,
35 + +tinynotify-send-1.0.0.ebuild:
36 + Version bump. The new version adds support for --foreground option to wait
37 + for notification to close.
38
39 *tinynotify-send-0.2 (21 Aug 2011)
40
41
42
43
44 1.1 x11-misc/tinynotify-send/tinynotify-send-1.0.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.0.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.0.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tinynotify-send-1.0.0.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.0.0.ebuild,v 1.1 2011/08/29 22:23:48 mgorny Exp $
54
55 EAPI=4
56 inherit autotools-utils
57
58 DESCRIPTION="A notification sending utility (using libtinynotify)"
59 HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
60 SRC_URI="http://cloud.github.com/downloads/mgorny/${PN}/${P}.tar.bz2"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="symlink"
66
67 RDEPEND="x11-libs/libtinynotify
68 ~x11-libs/libtinynotify-cli-${PV}
69 symlink? ( !x11-libs/libnotify )"
70 DEPEND="${RDEPEND}
71 dev-util/pkgconfig"
72
73 DOCS=( README )
74
75 src_configure() {
76 myeconfargs=(
77 --disable-library
78 --enable-regular
79 --disable-system-wide
80 --with-system-wide-exec=/usr/bin/sw-notify-send
81 )
82
83 autotools-utils_src_configure
84 }
85
86 src_install() {
87 autotools-utils_src_install
88
89 use symlink && dosym tinynotify-send /usr/bin/notify-send
90 }