Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/fbpanel: ChangeLog fbpanel-6.1-r1.ebuild
Date: Mon, 26 Aug 2013 19:07:56
Message-Id: 20130826190752.8DA552004C@flycatcher.gentoo.org
1 jer 13/08/26 19:07:52
2
3 Modified: ChangeLog
4 Added: fbpanel-6.1-r1.ebuild
5 Log:
6 Respect CC. Fix underlinking. Install plugins into proper multilib-strict dir. Warn about missing /dev/mixer.
7
8 (Portage version: 2.2.1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.55 x11-misc/fbpanel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fbpanel/ChangeLog?rev=1.55&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fbpanel/ChangeLog?rev=1.55&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fbpanel/ChangeLog?r1=1.54&r2=1.55
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/fbpanel/ChangeLog,v
20 retrieving revision 1.54
21 retrieving revision 1.55
22 diff -u -r1.54 -r1.55
23 --- ChangeLog 5 May 2012 04:53:39 -0000 1.54
24 +++ ChangeLog 26 Aug 2013 19:07:52 -0000 1.55
25 @@ -1,6 +1,14 @@
26 # ChangeLog for x11-misc/fbpanel
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/fbpanel/ChangeLog,v 1.54 2012/05/05 04:53:39 jdhore Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/fbpanel/ChangeLog,v 1.55 2013/08/26 19:07:52 jer Exp $
31 +
32 +*fbpanel-6.1-r1 (26 Aug 2013)
33 +
34 + 26 Aug 2013; Jeroen Roovers <jer@g.o> +fbpanel-6.1-r1.ebuild,
35 + -files/fbpanel-6.0-configure-LANG.patch,
36 + +files/fbpanel-6.1-underlinking.patch:
37 + Respect CC. Fix underlinking. Install plugins into proper multilib-strict
38 + dir. Warn about missing /dev/mixer.
39
40 05 May 2012; Jeff Horelick <jdhore@g.o> fbpanel-6.1.ebuild:
41 dev-util/pkgconfig -> virtual/pkgconfig
42
43
44
45 1.1 x11-misc/fbpanel/fbpanel-6.1-r1.ebuild
46
47 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fbpanel/fbpanel-6.1-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-misc/fbpanel/fbpanel-6.1-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: fbpanel-6.1-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2013 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-misc/fbpanel/fbpanel-6.1-r1.ebuild,v 1.1 2013/08/26 19:07:52 jer Exp $
55
56 EAPI=5
57 inherit eutils multilib toolchain-funcs
58
59 DESCRIPTION="light-weight X11 desktop panel"
60 HOMEPAGE="http://fbpanel.sourceforge.net/"
61 SRC_URI="mirror://sourceforge/${PN}/${P}.tbz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
66 IUSE=""
67
68 RDEPEND="x11-libs/gtk+:2"
69 DEPEND="${RDEPEND}
70 virtual/pkgconfig"
71
72 DOCS=( CHANGELOG CREDITS README )
73
74 src_prepare() {
75 epatch "${FILESDIR}"/${P}-underlinking.patch
76 sed -i -e "/libdir/s|/lib|/$(get_libdir)|g" configure || die
77 tc-export CC
78 }
79
80 src_configure() {
81 # not autotools based
82 ./configure || die
83 }
84
85 pkg_postinst() {
86 elog "For the volume plugin to work, you need to configure your kernel"
87 elog "with CONFIG_SND_MIXER_OSS or CONFIG_SOUND_PRIME or some other means"
88 elog "that provide the /dev/mixer device node."
89 }