Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in xfce-extra/xfce4-systemload-plugin: xfce4-systemload-plugin-0.4.2-r1.ebuild
Date: Fri, 04 Feb 2011 18:01:17
Message-Id: 20110204180106.1109B20054@flycatcher.gentoo.org
1 ssuominen 11/02/04 18:01:06
2
3 Modified: xfce4-systemload-plugin-0.4.2-r1.ebuild
4 Log:
5 EAPI3 plus cleanup. remove unnecessary die message as portage prints out the exact command it failed on
6
7 (Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.9 xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild?rev=1.9&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild?rev=1.9&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild?r1=1.8&r2=1.9
15
16 Index: xfce4-systemload-plugin-0.4.2-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild,v
19 retrieving revision 1.8
20 retrieving revision 1.9
21 diff -u -r1.8 -r1.9
22 --- xfce4-systemload-plugin-0.4.2-r1.ebuild 29 Aug 2010 18:09:37 -0000 1.8
23 +++ xfce4-systemload-plugin-0.4.2-r1.ebuild 4 Feb 2011 18:01:05 -0000 1.9
24 @@ -1,10 +1,10 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2011 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild,v 1.8 2010/08/29 18:09:37 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-systemload-plugin/xfce4-systemload-plugin-0.4.2-r1.ebuild,v 1.9 2011/02/04 18:01:05 ssuominen Exp $
30
31 +EAPI=3
32 EAUTORECONF=yes
33 EINTLTOOLIZE=yes
34 -EAPI=2
35 inherit xfconf
36
37 DESCRIPTION="System load monitor panel plugin"
38 @@ -25,15 +25,19 @@
39 dev-util/intltool"
40
41 pkg_setup() {
42 - PATCHES=( "${FILESDIR}/${P}-libtool.patch"
43 - "${FILESDIR}/${P}-fix-tooltip-gtk2.12.patch" )
44 + PATCHES=(
45 + "${FILESDIR}"/${P}-libtool.patch
46 + "${FILESDIR}"/${P}-fix-tooltip-gtk2.12.patch
47 + )
48 DOCS="AUTHORS ChangeLog NEWS README"
49 - XFCONF="--disable-dependency-tracking
50 - $(use_enable debug)"
51 + XFCONF=(
52 + --disable-dependency-tracking
53 + $(use_enable debug)
54 + )
55 }
56
57 src_prepare() {
58 sed -i -e "/^AC_INIT/s/systemload_version()/systemload_version/" \
59 - configure.in || die "sed failed"
60 + configure.in || die
61 xfconf_src_prepare
62 }