Gentoo Archives: gentoo-commits

From: "Kacper Kowalik (xarthisius)" <xarthisius@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/suxpanel: suxpanel-0.4b-r3.ebuild ChangeLog suxpanel-0.4b-r2.ebuild
Date: Fri, 27 Aug 2010 15:48:51
Message-Id: 20100827154846.232C020051@flycatcher.gentoo.org
1 xarthisius 10/08/27 15:48:46
2
3 Modified: ChangeLog
4 Added: suxpanel-0.4b-r3.ebuild
5 Removed: suxpanel-0.4b-r2.ebuild
6 Log:
7 Respect LDFLAGS wrt bug 333979. Thanks to Diego for the report.
8 (Portage version: 2.1.8.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.11 x11-misc/suxpanel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/suxpanel/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/suxpanel/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/suxpanel/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 6 Jun 2010 12:54:58 -0000 1.10
24 +++ ChangeLog 27 Aug 2010 15:48:45 -0000 1.11
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/suxpanel
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/ChangeLog,v 1.10 2010/06/06 12:54:58 ssuominen Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/suxpanel/ChangeLog,v 1.11 2010/08/27 15:48:45 xarthisius Exp $
30 +
31 +*suxpanel-0.4b-r3 (27 Aug 2010)
32 +
33 + 27 Aug 2010; Kacper Kowalik <xarthisius@g.o>
34 + -suxpanel-0.4b-r2.ebuild, +suxpanel-0.4b-r3.ebuild,
35 + +files/suxpanel-0.4b-makefile.patch:
36 + Respect LDFLAGS wrt bug 333979. Thanks to Diego for the report.
37
38 *suxpanel-0.4b-r2 (06 Jun 2010)
39
40
41
42
43 1.1 x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/suxpanel/suxpanel-0.4b-r3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: suxpanel-0.4b-r3.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/suxpanel/suxpanel-0.4b-r3.ebuild,v 1.1 2010/08/27 15:48:45 xarthisius Exp $
53
54 EAPI=2
55 inherit eutils flag-o-matic multilib toolchain-funcs
56
57 DESCRIPTION="SuxPanel is a complete rewrite of MacOS Style Panel, a light-weight X11 desktop panel"
58 HOMEPAGE="http://suxpanel.berlios.de"
59 SRC_URI="mirror://berlios/${PN}/${P}.tar.bz2"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="x11-libs/gtk+:2
67 x11-libs/libwnck"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${P}-stdlib.patch \
73 "${FILESDIR}"/${P}-makefile.patch
74
75 sed -i \
76 -e "s:share/${PN}/plugins:$(get_libdir)/${PN}/plugins:" \
77 Makefile.in suxpanel-install.sh || die
78 }
79
80 src_configure() {
81 use amd64 && append-flags -O0
82 tc-export CC
83 econf
84 }
85
86 src_install () {
87 emake DESTDIR="${D}" install || die
88 dobin suxpanel-install.sh || die
89 dodoc README || die
90 }