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-sensors-plugin: metadata.xml ChangeLog xfce4-sensors-plugin-0.10.99.6.ebuild
Date: Sun, 23 Aug 2009 20:19:19
Message-Id: E1MfJX4-0002A8-2J@stork.gentoo.org
1 ssuominen 09/08/23 20:19:18
2
3 Added: metadata.xml ChangeLog
4 xfce4-sensors-plugin-0.10.99.6.ebuild
5 Log:
6 Rename xfce4-sensors to xfce4-sensors-plugin.
7 (Portage version: 2.2_rc39/cvs/Linux x86_64, RepoMan options: --force)
8
9 Revision Changes Path
10 1.1 xfce-extra/xfce4-sensors-plugin/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>xfce</herd>
21 </pkgmetadata>
22
23
24
25 1.1 xfce-extra/xfce4-sensors-plugin/ChangeLog
26
27 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog?rev=1.1&content-type=text/plain
29
30 Index: ChangeLog
31 ===================================================================
32 # ChangeLog for xfce-extra/xfce4-sensors-plugin
33 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
34 # $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/ChangeLog,v 1.1 2009/08/23 20:19:17 ssuominen Exp $
35
36 *xfce4-sensors-plugin-0.10.99.6 (23 Aug 2009)
37
38 23 Aug 2009; Samuli Suominen <ssuominen@g.o>
39 +xfce4-sensors-plugin-0.10.99.6.ebuild:
40 Rename xfce4-sensors to xfce4-sensors-plugin.
41
42
43
44
45 1.1 xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild?rev=1.1&content-type=text/plain
49
50 Index: xfce4-sensors-plugin-0.10.99.6.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-0.10.99.6.ebuild,v 1.1 2009/08/23 20:19:17 ssuominen Exp $
55
56 EAUTORECONF=yes
57 EAPI=2
58 inherit xfconf
59
60 DESCRIPTION="acpi, lm_sensors and hddtemp panel plugin"
61 HOMEPAGE="http://www.xfce.org/"
62 SRC_URI="mirror://xfce/src/panel-plugins/${PN}/0.10/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="amd64 ppc x86"
67 IUSE="acpi debug hddtemp libnotify lm_sensors"
68
69 RDEPEND=">=x11-libs/gtk+-2.10:2
70 >=xfce-base/libxfce4util-4.4
71 >=xfce-base/libxfcegui4-4.4
72 >=xfce-base/xfce4-panel-4.4
73 libnotify? ( >=x11-libs/libnotify-0.4 )
74 lm_sensors? ( sys-apps/lm_sensors )
75 hddtemp? ( app-admin/hddtemp )"
76 DEPEND="${RDEPEND}
77 dev-util/intltool
78 dev-util/pkgconfig"
79
80 pkg_setup() {
81 XFCONF="--disable-dependency-tracking
82 $(use_enable hddtemp)
83 $(use_enable lm_sensors libsensors)
84 $(use_enable acpi procacpi)
85 $(use_enable acpi sysfsacpi)
86 $(use_enable debug)
87 $(use_enable libnotify notification)"
88
89 if ! use hddtemp && ! use lm_sensors && ! use acpi; then
90 XFCONF="${XFCONF} --enable-procacpi --enable-sysfsacpi"
91 fi
92
93 DOCS="AUTHORS ChangeLog NEWS NOTES README TODO"
94 }
95
96 src_prepare() {
97 sed -i -e "/-no-undefined/d" src/Makefile.am || die "sed failed"
98 xfconf_src_prepare
99 }