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.11-r1.ebuild tint2-0.10.ebuild tint2-0.9.ebuild
Date: Wed, 03 Nov 2010 17:13:26
Message-Id: 20101103171320.2174D2003C@flycatcher.gentoo.org
1 idl0r 10/11/03 17:13:20
2
3 Modified: ChangeLog
4 Added: tint2-0.11-r1.ebuild
5 Removed: tint2-0.10.ebuild tint2-0.9.ebuild
6 Log:
7 Revision bump, fixes bug 343963, thanks to Andrew Brouwers <abrouwers@×××××.com>. Remove old ebuilds.
8
9 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.22 x11-misc/tint2/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.22&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.22&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?r1=1.21&r2=1.22
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v
21 retrieving revision 1.21
22 retrieving revision 1.22
23 diff -u -r1.21 -r1.22
24 --- ChangeLog 20 Aug 2010 07:42:30 -0000 1.21
25 +++ ChangeLog 3 Nov 2010 17:13:20 -0000 1.22
26 @@ -1,6 +1,13 @@
27 # ChangeLog for x11-misc/tint2
28 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.21 2010/08/20 07:42:30 fauli Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.22 2010/11/03 17:13:20 idl0r Exp $
31 +
32 +*tint2-0.11-r1 (03 Nov 2010)
33 +
34 + 03 Nov 2010; Christian Ruppert <idl0r@g.o> -tint2-0.9.ebuild,
35 + -tint2-0.10.ebuild, +tint2-0.11-r1.ebuild, +files/battery_segfault.patch:
36 + Revision bump, fixes bug 343963, thanks to Andrew Brouwers
37 + <abrouwers@×××××.com>. Remove old ebuilds.
38
39 20 Aug 2010; Christian Faulhammer <fauli@g.o> tint2-0.11.ebuild:
40 stable x86, bug 333149
41
42
43
44 1.1 x11-misc/tint2/tint2-0.11-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.11-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.11-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: tint2-0.11-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2010 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.11-r1.ebuild,v 1.1 2010/11/03 17:13:20 idl0r Exp $
54
55 EAPI="3"
56
57 inherit cmake-utils eutils
58
59 MY_P="${PN}-${PV/_/-}"
60
61 DESCRIPTION="A lightweight panel/taskbar"
62 HOMEPAGE="http://code.google.com/p/tint2/"
63 SRC_URI="http://tint2.googlecode.com/files/${MY_P}.tar.bz2"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="battery examples tint2conf"
69
70 COMMON_DEPEND="dev-libs/glib:2
71 x11-libs/cairo
72 x11-libs/pango
73 x11-libs/libX11
74 x11-libs/libXinerama
75 x11-libs/libXdamage
76 x11-libs/libXcomposite
77 x11-libs/libXrender
78 x11-libs/libXrandr
79 media-libs/imlib2[X]"
80 DEPEND="${COMMON_DEPEND}
81 dev-util/pkgconfig
82 x11-proto/xineramaproto"
83 RDEPEND="${COMMON_DEPEND}
84 tint2conf? ( x11-misc/tintwizard )"
85
86 S="${WORKDIR}/${MY_P}"
87
88 src_prepare() {
89 epatch "${FILESDIR}/battery_segfault.patch" # bug 343963
90 }
91
92 src_configure() {
93 local mycmakeargs=(
94 $(cmake-utils_use_enable battery BATTERY)
95 $(cmake-utils_use_enable examples EXAMPLES)
96 $(cmake-utils_use_enable tint2conf TINT2CONF)
97
98 # bug 296890
99 "-DDOCDIR=/usr/share/doc/${PF}"
100 )
101
102 cmake-utils_src_configure
103 }
104
105 src_install() {
106 cmake-utils_src_install
107 rm -f "${D}/usr/bin/tintwizard.py"
108 }