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: tint2-0.11.ebuild ChangeLog
Date: Mon, 28 Jun 2010 18:40:22
Message-Id: 20100628184017.5A70A2C621@corvid.gentoo.org
1 idl0r 10/06/28 18:40:17
2
3 Modified: ChangeLog
4 Added: tint2-0.11.ebuild
5 Log:
6 Version bump to 0.11, bug 325917, thanks to Andrew Brouwers <abrouwers@×××××.com>. tint2 is using cmake now.
7 (Portage version: 2.2_rc67/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.18 x11-misc/tint2/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/ChangeLog?r1=1.17&r2=1.18
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- ChangeLog 30 May 2010 19:09:25 -0000 1.17
23 +++ ChangeLog 28 Jun 2010 18:40:16 -0000 1.18
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-misc/tint2
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.17 2010/05/30 19:09:25 idl0r Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/ChangeLog,v 1.18 2010/06/28 18:40:16 idl0r Exp $
29 +
30 +*tint2-0.11 (28 Jun 2010)
31 +
32 + 28 Jun 2010; Christian Ruppert <idl0r@g.o> +tint2-0.11.ebuild:
33 + Version bump to 0.11, bug 325917, thanks to Andrew Brouwers
34 + <abrouwers@×××××.com>. tint2 is using cmake now.
35
36 *tint2-0.10 (30 May 2010)
37
38
39
40
41 1.1 x11-misc/tint2/tint2-0.11.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/tint2/tint2-0.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: tint2-0.11.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-misc/tint2/tint2-0.11.ebuild,v 1.1 2010/06/28 18:40:16 idl0r Exp $
51
52 EAPI="3"
53
54 inherit cmake-utils
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.bz2"
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 DEPEND="${COMMON_DEPEND}
78 dev-util/pkgconfig
79 x11-proto/xineramaproto"
80 RDEPEND="${COMMON_DEPEND}
81 tint2conf? ( x11-misc/tintwizard )"
82
83 S="${WORKDIR}/${MY_P}"
84
85 src_configure() {
86 local mycmakeargs=(
87 $(cmake-utils_use_enable battery BATTERY)
88 $(cmake-utils_use_enable battery BATTERY)
89 $(cmake-utils_use_enable examples EXAMPLES)
90 $(cmake-utils_use_enable tint2conf TINT2CONF)
91
92 # bug 296890
93 "-DDOCDIR=/usr/share/doc/${PF}"
94 )
95
96 cmake-utils_src_configure
97 }
98
99 src_install() {
100 cmake-utils_src_install
101 rm -f "${D}/usr/bin/tintwizard.py"
102 }