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: ChangeLog tinynotify-send-1.2.1.ebuild tinynotify-send-1.2.ebuild
Date: Tue, 03 Jan 2012 06:53:36
Message-Id: 20120103065327.10BBA2004B@flycatcher.gentoo.org
1 mgorny 12/01/03 06:53:27
2
3 Modified: ChangeLog
4 Added: tinynotify-send-1.2.1.ebuild
5 Removed: tinynotify-send-1.2.ebuild
6 Log:
7 Version bump. The new version fixes timeout support.
8
9 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.5 x11-misc/tinynotify-send/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?rev=1.5&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?rev=1.5&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/ChangeLog?r1=1.4&r2=1.5
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v
21 retrieving revision 1.4
22 retrieving revision 1.5
23 diff -u -r1.4 -r1.5
24 --- ChangeLog 2 Jan 2012 11:17:42 -0000 1.4
25 +++ ChangeLog 3 Jan 2012 06:53:26 -0000 1.5
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-misc/tinynotify-send
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v 1.4 2012/01/02 11:17:42 mgorny Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/ChangeLog,v 1.5 2012/01/03 06:53:26 mgorny Exp $
31 +
32 +*tinynotify-send-1.2.1 (03 Jan 2012)
33 +
34 + 03 Jan 2012; Michał Górny <mgorny@g.o> -tinynotify-send-1.2.ebuild,
35 + +tinynotify-send-1.2.1.ebuild:
36 + Version bump. The new version fixes timeout support.
37
38 *tinynotify-send-1.2 (02 Jan 2012)
39
40
41
42
43 1.1 x11-misc/tinynotify-send/tinynotify-send-1.2.1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.2.1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.2.1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tinynotify-send-1.2.1.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tinynotify-send/tinynotify-send-1.2.1.ebuild,v 1.1 2012/01/03 06:53:26 mgorny Exp $
53
54 EAPI=4
55
56 inherit autotools-utils
57
58 DESCRIPTION="A notification sending utility (using libtinynotify)"
59 HOMEPAGE="https://github.com/mgorny/tinynotify-send/"
60 SRC_URI="mirror://github/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 }