Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-sensors-plugin/
Date: Fri, 11 May 2018 11:51:04
Message-Id: 1526039454.34d7cb8436d4eb75bdcd47c3d5de5df60d1ab619.mgorny@gentoo
1 commit: 34d7cb8436d4eb75bdcd47c3d5de5df60d1ab619
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 11 11:40:09 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 11 11:50:54 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34d7cb84
7
8 xfce-extra/xfce4-sensors-plugin: Bump to 1.3.0 (stable)
9
10 xfce-extra/xfce4-sensors-plugin/Manifest | 1 +
11 .../xfce4-sensors-plugin-1.3.0.ebuild | 54 ++++++++++++++++++++++
12 2 files changed, 55 insertions(+)
13
14 diff --git a/xfce-extra/xfce4-sensors-plugin/Manifest b/xfce-extra/xfce4-sensors-plugin/Manifest
15 index ce092d8e9a4..a7ef4a440ea 100644
16 --- a/xfce-extra/xfce4-sensors-plugin/Manifest
17 +++ b/xfce-extra/xfce4-sensors-plugin/Manifest
18 @@ -1,2 +1,3 @@
19 DIST xfce4-sensors-plugin-1.2.6.tar.bz2 454524 BLAKE2B 1dc663f726f6079fc030ef08fc9384fd4ccf3b05786bb899c7028d9adb66d85e3da4d9aed5a29cc5b15c0bb258538fdca31cd2a9430710c1e0a383f8eb8d2353 SHA512 5c520f1c253df1bb9e29855c5ccfc1536034945ca68b43cd8b6d97083e528b2430230d9c51d43953a71c3f0171ae718bf1557714729b1343ebd51f91f3f36d60
20 DIST xfce4-sensors-plugin-1.2.98.tar.bz2 477241 BLAKE2B dcb757e7014a159fbba77a24248a0663207aa0031a624d60c899483b608f729e31dafdd2de4e5d6a64122a2abbaa21eaa857afdbfa266203b0639ced7f299d4a SHA512 6437acc17d2719e3deef011c206c8c5593f4b14a8263e82bb3b0e8b1cb7e17e842adf2cb3a479e1a8e2729db744df2778ee04bc9af5e4c918f417e1c8ac4d17e
21 +DIST xfce4-sensors-plugin-1.3.0.tar.bz2 466468 BLAKE2B 52eadaec22980105fcf4c4e5efb4621b0966e86520e7ded90a1514f7925d76232278ec105785409dbe13f5ab4019363b47b63b5df642319a924fe5a8882b847c SHA512 77f6df354c883f9f0b99856738e0976e7bddd5f16c90a8715777c4f4d6debe116cdc21c2e0efbbe9f371d36f9469797d3e631854c33f8561e3ff32291cdef35a
22
23 diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.0.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.0.ebuild
24 new file mode 100644
25 index 00000000000..468288e4966
26 --- /dev/null
27 +++ b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.3.0.ebuild
28 @@ -0,0 +1,54 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +
34 +DESCRIPTION="A panel plug-in for acpi, lm_sensors and hddtemp sensors"
35 +HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin"
36 +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
37 +
38 +LICENSE="GPL-2"
39 +SLOT="0"
40 +KEYWORDS="~amd64 ~ppc ~x86"
41 +IUSE="+acpi hddtemp libnotify lm_sensors video_cards_nvidia"
42 +
43 +REQUIRED_USE="|| ( hddtemp lm_sensors acpi )"
44 +
45 +RDEPEND=">=x11-libs/gtk+-3.20:3=
46 + >=xfce-base/libxfce4ui-4.12:=[gtk3(+)]
47 + >=xfce-base/xfce4-panel-4.12:=
48 + hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat )
49 + libnotify? ( >=x11-libs/libnotify-0.7:= )
50 + lm_sensors? ( >=sys-apps/lm_sensors-3.1.0:= )
51 + video_cards_nvidia? (
52 + || (
53 + x11-drivers/nvidia-drivers[tools,static-libs]
54 + media-video/nvidia-settings
55 + )
56 + )"
57 +DEPEND="${RDEPEND}
58 + dev-util/intltool
59 + virtual/pkgconfig"
60 +
61 +DOCS=( AUTHORS ChangeLog NEWS NOTES README TODO )
62 +
63 +src_configure() {
64 + local myconf=(
65 + --libexecdir="${EPREFIX}"/usr/$(get_libdir)
66 + $(use_enable lm_sensors libsensors)
67 + $(use_enable hddtemp)
68 + $(use_enable hddtemp netcat)
69 + $(use_enable acpi procacpi)
70 + $(use_enable acpi sysfsacpi)
71 + $(use_enable video_cards_nvidia xnvctrl)
72 + $(use_enable libnotify notification)
73 + --disable-pathchecks
74 + )
75 +
76 + econf "${myconf[@]}"
77 +}
78 +
79 +src_install() {
80 + emake DESTDIR="${D}" install manualdir="${EPREFIX}/usr/share/man/man1"
81 + einstalldocs
82 +}