Gentoo Archives: gentoo-commits

From: "Kevin McCarthy (signals)" <signals@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/wbar: ChangeLog wbar-2.1.3.ebuild
Date: Fri, 06 May 2011 13:56:25
Message-Id: 20110506135614.BBCC620054@flycatcher.gentoo.org
1 signals 11/05/06 13:56:14
2
3 Modified: ChangeLog
4 Added: wbar-2.1.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.10 x11-misc/wbar/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wbar/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wbar/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wbar/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 15 Apr 2011 20:11:55 -0000 1.9
24 +++ ChangeLog 6 May 2011 13:56:14 -0000 1.10
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-misc/wbar
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.9 2011/04/15 20:11:55 signals Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/ChangeLog,v 1.10 2011/05/06 13:56:14 signals Exp $
30 +
31 +*wbar-2.1.3 (06 May 2011)
32 +
33 + 06 May 2011; Kevin McCarthy <signals@g.o> +wbar-2.1.3.ebuild,
34 + +files/wbar-2.1.3-as-needed.patch:
35 + Version bump.
36
37 15 Apr 2011; Kevin McCarthy <signals@g.o> wbar-2.1.1.ebuild:
38 Removed -Werror from CFLAGS.
39
40
41
42 1.1 x11-misc/wbar/wbar-2.1.3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wbar/wbar-2.1.3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/wbar/wbar-2.1.3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wbar-2.1.3.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-misc/wbar/wbar-2.1.3.ebuild,v 1.1 2011/05/06 13:56:14 signals Exp $
52
53 EAPI=4
54 inherit autotools eutils
55
56 DESCRIPTION="A fast, lightweight quick launch bar."
57 HOMEPAGE="http://code.google.com/p/wbar/"
58 SRC_URI="http://wbar.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-3"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="gtk"
64
65 RDEPEND="media-libs/imlib2
66 x11-libs/libX11
67 gtk? ( dev-libs/atk
68 dev-libs/glib:2
69 dev-libs/libxml2
70 gnome-base/libglade
71 media-libs/fontconfig
72 media-libs/freetype
73 media-libs/libpng
74 x11-libs/cairo
75 x11-libs/gdk-pixbuf
76 x11-libs/gtk+:2 )"
77 DEPEND="${RDEPEND}
78 dev-util/intltool"
79
80 src_prepare() {
81 epatch "${FILESDIR}"/${P}-as-needed.patch
82 if ! use gtk; then
83 # Remove wbar-config from default cfg.
84 sed -i -e '5,8d' \
85 etc/wbar.cfg.in || die "Removing wbar-config from cfg"
86 fi
87 sed -i configure.ac -e "/^CPPFLAGS/d" || die #respect flags
88 eautoreconf
89 # Fix build issue reported by xarthisius (See as-needed.patch)
90 mv "${S}"/src/config/Main.cc "${S}"/src/config/Main-config.cc || die
91 }
92
93 src_configure() {
94 econf --bindir=/usr/bin $(use_enable gtk wbar-config)
95 }