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: ChangeLog tint2-0.9.ebuild tint2-0.9_rc1.ebuild
Date: Fri, 29 Jan 2010 11:42:15
Message-Id: E1NapEl-0006oN-3s@stork.gentoo.org
1 idl0r 10/01/29 11:42:07
2
3 Modified: ChangeLog
4 Added: tint2-0.9.ebuild
5 Removed: tint2-0.9_rc1.ebuild
6 Log:
7 Version bump. Fixes bug 301209.
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 x11-misc/tint2/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 15 Jan 2010 20:28:15 -0000 1.10
24 +++ ChangeLog 29 Jan 2010 11:42:06 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/tint2
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.10 2010/01/15 20:28:15 idl0r Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.11 2010/01/29 11:42:06 idl0r Exp $
30 +
31 +*tint2-0.9 (29 Jan 2010)
32 +
33 + 29 Jan 2010; Christian Ruppert <idl0r@g.o> -tint2-0.9_rc1.ebuild,
34 + +tint2-0.9.ebuild:
35 + Version bump. Fixes bug 301209.
36
37 *tint2-0.9_rc1 (15 Jan 2010)
38
39
40
41
42 1.1 x11-misc/tint2/tint2-0.9.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/tint2-0.9.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/tint2/tint2-0.9.ebuild?rev=1.1&content-type=text/plain
46
47 Index: tint2-0.9.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.9.ebuild,v 1.1 2010/01/29 11:42:06 idl0r Exp $
52
53 EAPI="2"
54
55 MY_P="${PN}-${PV/_rc/-rc}"
56
57 DESCRIPTION="A lightweight panel/taskbar"
58 HOMEPAGE="http://code.google.com/p/tint2/"
59 SRC_URI="http://tint2.googlecode.com/files/${MY_P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="battery examples"
65
66 RDEPEND="dev-libs/glib:2
67 x11-libs/cairo
68 x11-libs/pango
69 x11-libs/libX11
70 x11-libs/libXinerama
71 media-libs/imlib2[X]"
72 # autoconf >= 2.61 for --docdir, bug 296890
73 DEPEND="${RDEPEND}
74 dev-util/pkgconfig
75 x11-proto/xineramaproto
76 >=sys-devel/autoconf-2.61"
77
78 S="${WORKDIR}/${MY_P}"
79
80 src_configure() {
81 econf --docdir=/usr/share/doc/${PF} \
82 $(use_enable battery) \
83 $(use_enable examples)
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die
88 }