summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-08-02 17:25:45 +0200
committerMichał Górny <mgorny@gentoo.org>2016-08-02 18:09:47 +0200
commit5f7a74f8e9c94f98cf0a72e8caf8fabfb8291646 (patch)
treedc653a1afa49797097540ef7f060e4c513d6d6d1
parentxfce-extra/xfce4-screenshooter: Prune old (diff)
downloadgentoo-5f7a74f8e9c94f98cf0a72e8caf8fabfb8291646.tar.gz
gentoo-5f7a74f8e9c94f98cf0a72e8caf8fabfb8291646.tar.bz2
gentoo-5f7a74f8e9c94f98cf0a72e8caf8fabfb8291646.zip
xfce-extra/xfce4-sensors-plugin: Prune old
-rw-r--r--xfce-extra/xfce4-sensors-plugin/Manifest1
-rw-r--r--xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild68
2 files changed, 0 insertions, 69 deletions
diff --git a/xfce-extra/xfce4-sensors-plugin/Manifest b/xfce-extra/xfce4-sensors-plugin/Manifest
index 84748dfc7d5b..ce2fe39245d5 100644
--- a/xfce-extra/xfce4-sensors-plugin/Manifest
+++ b/xfce-extra/xfce4-sensors-plugin/Manifest
@@ -1,2 +1 @@
-DIST xfce4-sensors-plugin-1.2.5.tar.bz2 399758 SHA256 6b3c12917116c0610c0ca0824357afcc4ab4553301241e27aa9665159b834c1e SHA512 240514c1e2150ccb2416f77a97039939884fb3ebde4b784136a69c8326caf48f1b29dd7dd49f8660deea42efde4cb34cce968c70944033562983ca180d0205cc WHIRLPOOL 032a60d6004b136eb3b9f69bfeb6f8b9fcbb466965e5c8585e40944f5dbf07eff02587d6ae181727ee9de7b79e24602956c92c55287d64de489c33171a9a3ddd
DIST xfce4-sensors-plugin-1.2.6.tar.bz2 454524 SHA256 235ef842bd45e701bceebb21a384ab09f21afceea8ed95f91bb4c6cf3abe1bc0 SHA512 5c520f1c253df1bb9e29855c5ccfc1536034945ca68b43cd8b6d97083e528b2430230d9c51d43953a71c3f0171ae718bf1557714729b1343ebd51f91f3f36d60 WHIRLPOOL 60b1069b621026f37637ca93a5c8a956eb77ee234df472fef9c2f3bec56efc5f09d923e23fd7ab8ed76526a14ad414b3d82f2c2c2d7ab68118b4bafbe4add9f0
diff --git a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild b/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild
deleted file mode 100644
index cf349d5e7103..000000000000
--- a/xfce-extra/xfce4-sensors-plugin/xfce4-sensors-plugin-1.2.5.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-EAUTORECONF=yes
-inherit multilib xfconf
-
-DESCRIPTION="A panel plug-in for different sensors using acpi, lm_sensors and hddtemp"
-HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-sensors-plugin"
-SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="+acpi debug hddtemp libnotify lm_sensors video_cards_nvidia"
-
-REQUIRED_USE="|| ( hddtemp lm_sensors acpi )"
-
-RDEPEND=">=x11-libs/gtk+-2.14:2
- >=xfce-base/libxfce4ui-4.8
- >=xfce-base/xfce4-panel-4.8
- hddtemp? ( app-admin/hddtemp net-analyzer/gnu-netcat )
- libnotify? ( >=x11-libs/libnotify-0.7 )
- lm_sensors? ( >=sys-apps/lm_sensors-3.1.0 )
- video_cards_nvidia? (
- || (
- x11-drivers/nvidia-drivers[tools,static-libs]
- media-video/nvidia-settings
- )
- )"
-DEPEND="${RDEPEND}
- dev-util/intltool
- virtual/pkgconfig"
-
-pkg_setup() {
- XFCONF=(
- --libexecdir="${EPREFIX}"/usr/$(get_libdir)
- $(use_enable lm_sensors libsensors)
- $(use_enable hddtemp)
- $(use_enable hddtemp netcat)
- $(use_enable acpi procacpi)
- $(use_enable acpi sysfsacpi)
- $(use_enable video_cards_nvidia xnvctrl)
- $(use_enable libnotify notification)
- $(xfconf_use_debug)
- )
-
- DOCS=( AUTHORS ChangeLog NEWS NOTES README TODO )
-}
-
-src_prepare() {
- sed -i -e '/-no-undefined/d' src/Makefile.am || die
-
- # Use flags from xfce4-dev-tools instead of defining them again in
- # configure.in wrt #386979
- # Remove AC_PROG_LIBTOOL because LT_INIT([disable-static]) is also present:
- # https://bugzilla.xfce.org/show_bug.cgi?id=8888
- # Use AC_CONFIG_HEADERS for automake-1.13 compability, see:
- # https://bugzilla.xfce.org/show_bug.cgi?id=10031
- sed -i \
- -e '/PLATFORM_CFLAGS/s:-Werror::' \
- -e '/AC_PROG_LIBTOOL/d' \
- -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
- configure.in || die
-
- xfconf_src_prepare
-}