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.10.ebuild tint2-0.10_beta1.ebuild
Date: Sun, 30 May 2010 19:09:29
Message-Id: 20100530190926.9C67A2CF37@corvid.gentoo.org
1 idl0r 10/05/30 19:09:26
2
3 Modified: ChangeLog
4 Added: tint2-0.10.ebuild
5 Removed: tint2-0.10_beta1.ebuild
6 Log:
7 Version bump to 0.10.
8 (Portage version: 2.2_rc67/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.17 x11-misc/tint2/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.17&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.17&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?r1=1.16&r2=1.17
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v
20 retrieving revision 1.16
21 retrieving revision 1.17
22 diff -u -r1.16 -r1.17
23 --- ChangeLog 17 May 2010 13:51:07 -0000 1.16
24 +++ ChangeLog 30 May 2010 19:09:25 -0000 1.17
25 @@ -1,6 +1,13 @@
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.16 2010/05/17 13:51:07 idl0r Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.17 2010/05/30 19:09:25 idl0r Exp $
30 +
31 +*tint2-0.10 (30 May 2010)
32 +
33 + 30 May 2010; Christian Ruppert <idl0r@g.o>
34 + -tint2-0.10_beta1.ebuild, +tint2-0.10.ebuild,
35 + -files/tint2-0.10-beta1-install_examples.patch:
36 + Version bump to 0.10.
37
38 *tint2-0.10_beta1 (17 May 2010)
39
40
41
42
43 1.1 x11-misc/tint2/tint2-0.10.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.10.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.10.ebuild?rev=1.1&content-type=text/plain
47
48 Index: tint2-0.10.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.10.ebuild,v 1.1 2010/05/30 19:09:25 idl0r Exp $
53
54 EAPI="3"
55
56 MY_P="${PN}-${PV/_/-}"
57
58 DESCRIPTION="A lightweight panel/taskbar"
59 HOMEPAGE="http://code.google.com/p/tint2/"
60 SRC_URI="http://tint2.googlecode.com/files/${MY_P}.tar.gz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="battery examples tint2conf"
66
67 COMMON_DEPEND="dev-libs/glib:2
68 x11-libs/cairo
69 x11-libs/pango
70 x11-libs/libX11
71 x11-libs/libXinerama
72 x11-libs/libXdamage
73 x11-libs/libXcomposite
74 x11-libs/libXrender
75 x11-libs/libXrandr
76 media-libs/imlib2[X]"
77 # autoconf >= 2.61 for --docdir, bug 296890
78 DEPEND="${COMMON_DEPEND}
79 dev-util/pkgconfig
80 x11-proto/xineramaproto
81 >=sys-devel/autoconf-2.61"
82 RDEPEND="${COMMON_DEPEND}
83 tint2conf? ( x11-misc/tintwizard )"
84
85 S="${WORKDIR}/${MY_P}"
86
87 src_prepare() {
88 sed -i -e 's:python /usr/bin/tintwizard.py:tintwizard:' src/tint2conf/main.c || die
89 }
90
91 src_configure() {
92 econf --docdir=/usr/share/doc/${PF} \
93 $(use_enable battery) \
94 $(use_enable examples) \
95 $(use_enable tint2conf)
96 }
97
98 src_install() {
99 emake DESTDIR="${D}" install || die
100 rm -f "${D}/usr/bin/tintwizard.py"
101 }