Gentoo Archives: gentoo-commits

From: "Christian Ruppert (idl0r)" <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/tint2: metadata.xml ChangeLog tint2-0.7_beta3.ebuild tint2-0.7_beta2.ebuild
Date: Sat, 20 Jun 2009 18:06:05
Message-Id: E1MI4x1-0003Nk-MU@stork.gentoo.org
1 idl0r 09/06/20 18:06:03
2
3 Modified: metadata.xml ChangeLog
4 Added: tint2-0.7_beta3.ebuild
5 Removed: tint2-0.7_beta2.ebuild
6 Log:
7 Version bump to 0.7_beta3, removed old ebuild. Add battery useflag for battery status plugin.
8 (Portage version: 2.2_rc33/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.2 x11-misc/tint2/metadata.xml
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/metadata.xml?rev=1.2&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/metadata.xml?rev=1.2&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/metadata.xml?r1=1.1&r2=1.2
16
17 Index: metadata.xml
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/metadata.xml,v
20 retrieving revision 1.1
21 retrieving revision 1.2
22 diff -u -r1.1 -r1.2
23 --- metadata.xml 7 Jun 2009 18:15:26 -0000 1.1
24 +++ metadata.xml 20 Jun 2009 18:06:03 -0000 1.2
25 @@ -8,6 +8,7 @@
26 </maintainer>
27 <use>
28 <flag name="examples">Install tint2rc examples</flag>
29 + <flag name="battery">Enable battery status plugin</flag>
30 </use>
31 <longdescription lang="en">
32 tint2 is a simple panel/taskbar intentionally made for <pkg>openbox</pkg>3, but should also work with other window managers.
33
34
35
36 1.2 x11-misc/tint2/ChangeLog
37
38 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.2&view=markup
39 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.2&content-type=text/plain
40 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?r1=1.1&r2=1.2
41
42 Index: ChangeLog
43 ===================================================================
44 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v
45 retrieving revision 1.1
46 retrieving revision 1.2
47 diff -u -r1.1 -r1.2
48 --- ChangeLog 7 Jun 2009 18:15:26 -0000 1.1
49 +++ ChangeLog 20 Jun 2009 18:06:03 -0000 1.2
50 @@ -1,6 +1,13 @@
51 # ChangeLog for x11-misc/tint2
52 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
53 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.1 2009/06/07 18:15:26 idl0r Exp $
54 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.2 2009/06/20 18:06:03 idl0r Exp $
55 +
56 +*tint2-0.7_beta3 (20 Jun 2009)
57 +
58 + 20 Jun 2009; Christian Ruppert <idl0r@g.o> -tint2-0.7_beta2.ebuild,
59 + +tint2-0.7_beta3.ebuild, metadata.xml:
60 + Version bump to 0.7_beta3, removed old ebuild. Add battery useflag for
61 + battery status plugin.
62
63 *tint2-0.7_beta2 (07 Jun 2009)
64
65
66
67
68 1.1 x11-misc/tint2/tint2-0.7_beta3.ebuild
69
70 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/tint2-0.7_beta3.ebuild?rev=1.1&view=markup
71 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/tint2-0.7_beta3.ebuild?rev=1.1&content-type=text/plain
72
73 Index: tint2-0.7_beta3.ebuild
74 ===================================================================
75 # Copyright 1999-2009 Gentoo Foundation
76 # Distributed under the terms of the GNU General Public License v2
77 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.7_beta3.ebuild,v 1.1 2009/06/20 18:06:03 idl0r Exp $
78
79 EAPI="2"
80
81 DESCRIPTION="A lightweight panel/taskbar"
82 HOMEPAGE="http://code.google.com/p/tint2/"
83 SRC_URI="http://tint2.googlecode.com/files/${P}.tar.gz"
84
85 LICENSE="GPL-2"
86 SLOT="0"
87 KEYWORDS="~amd64 ~x86"
88 IUSE="battery doc examples"
89
90 RDEPEND="dev-libs/glib:2
91 x11-libs/cairo
92 x11-libs/pango
93 x11-libs/libX11
94 x11-libs/libXinerama
95 media-libs/imlib2"
96 DEPEND="${RDEPEND}
97 dev-util/pkgconfig"
98
99 src_configure() {
100 econf $(use_enable battery) \
101 $(use_enable doc) \
102 $(use_enable examples)
103 }
104
105 src_install() {
106 emake DESTDIR="${D}" install || die
107 }