Gentoo Archives: gentoo-commits

From: "Michele Noberasco (s4t4n)" <s4t4n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-plugins/wmtimer: ChangeLog wmtimer-2.92-r1.ebuild
Date: Tue, 28 Oct 2008 10:13:31
Message-Id: E1KulZp-00083g-LR@stork.gentoo.org
1 s4t4n 08/10/28 10:13:29
2
3 Modified: ChangeLog
4 Added: wmtimer-2.92-r1.ebuild
5 Log:
6 Revision bump, with patch to fix bug #242500.
7 (Portage version: 2.1.4.5)
8
9 Revision Changes Path
10 1.23 x11-plugins/wmtimer/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmtimer/ChangeLog?rev=1.23&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmtimer/ChangeLog?rev=1.23&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmtimer/ChangeLog?r1=1.22&r2=1.23
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/ChangeLog,v
19 retrieving revision 1.22
20 retrieving revision 1.23
21 diff -u -r1.22 -r1.23
22 --- ChangeLog 13 Jan 2008 02:32:50 -0000 1.22
23 +++ ChangeLog 28 Oct 2008 10:13:29 -0000 1.23
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-plugins/wmtimer
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/ChangeLog,v 1.22 2008/01/13 02:32:50 drac Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/ChangeLog,v 1.23 2008/10/28 10:13:29 s4t4n Exp $
29 +
30 +*wmtimer-2.92-r1 (28 Oct 2008)
31 +
32 + 28 Oct 2008; Michele Noberasco <s4t4n@g.o> +wmtimer-2.9.2-r1.ebuild,
33 + +wmtimer-counter-fix.patch:
34 + Revision bump with patch to correct counter behaviour. Closes bug #242500.
35
36 *wmtimer-2.92 (13 Jan 2008)
37
38
39
40
41 1.1 x11-plugins/wmtimer/wmtimer-2.92-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmtimer/wmtimer-2.92-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-plugins/wmtimer/wmtimer-2.92-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wmtimer-2.92-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmtimer/wmtimer-2.92-r1.ebuild,v 1.1 2008/10/28 10:13:29 s4t4n Exp $
51
52 inherit eutils multilib toolchain-funcs
53
54 DESCRIPTION="Dockable clock which can run in alarm, countdown timer or chronograph mode"
55 HOMEPAGE="http://www.darkops.net/wmtimer"
56 SRC_URI="http://www.darkops.net/${PN}/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 RDEPEND=">=x11-libs/gtk+-2
64 x11-libs/libXpm
65 x11-libs/libXext
66 x11-libs/libX11"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 S=${WORKDIR}/${P}/${PN}
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 sed -e "s:-O2::" -e "s:-g:${CFLAGS}:g" -i Makefile
76 epatch "${FILESDIR}"/"${PN}"-counter-fix.patch
77 }
78
79 src_compile() {
80 emake CC="$(tc-getCC)" \
81 LIBDIR="-L/usr/$(get_libdir)" || die "emake failed."
82 }
83
84 src_install() {
85 dobin wmtimer
86 dodoc ../{Changelog,CREDITS,README}
87 }