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/sw-notify-send: ChangeLog sw-notify-send-1.0.0.ebuild sw-notify-send-0.2.ebuild
Date: Mon, 29 Aug 2011 22:23:58
Message-Id: 20110829222349.BD93320051@flycatcher.gentoo.org
1 mgorny 11/08/29 22:23:49
2
3 Modified: ChangeLog
4 Added: sw-notify-send-1.0.0.ebuild
5 Removed: sw-notify-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.3 x11-misc/sw-notify-send/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 21 Aug 2011 21:22:45 -0000 1.2
25 +++ ChangeLog 29 Aug 2011 22:23:49 -0000 1.3
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/sw-notify-send
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.2 2011/08/21 21:22:45 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/sw-notify-send/ChangeLog,v 1.3 2011/08/29 22:23:49 mgorny Exp $
31 +
32 +*sw-notify-send-1.0.0 (29 Aug 2011)
33 +
34 + 29 Aug 2011; Michał Górny <mgorny@g.o> -sw-notify-send-0.2.ebuild,
35 + +sw-notify-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 *sw-notify-send-0.2 (21 Aug 2011)
40
41
42
43
44 1.1 x11-misc/sw-notify-send/sw-notify-send-1.0.0.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.0.0.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/sw-notify-send/sw-notify-send-1.0.0.ebuild?rev=1.1&content-type=text/plain
48
49 Index: sw-notify-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/sw-notify-send/sw-notify-send-1.0.0.ebuild,v 1.1 2011/08/29 22:23:49 mgorny Exp $
54
55 EAPI=4
56 inherit autotools-utils
57
58 MY_PN=tinynotify-send
59 MY_P=${MY_PN}-${PV}
60
61 DESCRIPTION="A system-wide variant of tinynotify-send"
62 HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
63 SRC_URI="http://cloud.github.com/downloads/mgorny/${MY_PN}/${MY_P}.tar.bz2"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE=""
69
70 RDEPEND="x11-libs/libtinynotify
71 ~x11-libs/libtinynotify-cli-${PV}
72 x11-libs/libtinynotify-systemwide"
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig"
75
76 DOCS=( README )
77 S=${WORKDIR}/${MY_P}
78
79 src_configure() {
80 myeconfargs=(
81 --disable-library
82 --disable-regular
83 --enable-system-wide
84 )
85
86 autotools-utils_src_configure
87 }