diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2014-03-10 00:50:48 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2014-03-10 00:50:48 +0000 |
commit | d6c33efbe9360ebcaec09e929206363c9aa3b1db (patch) | |
tree | 4f852b6d353b353355eda8dd07639296916d2eae /mate-extra | |
parent | Patch coderay dependency in gemspec, fix test dependencies, bump to 0.12.6. (diff) | |
download | gentoo-2-d6c33efbe9360ebcaec09e929206363c9aa3b1db.tar.gz gentoo-2-d6c33efbe9360ebcaec09e929206363c9aa3b1db.tar.bz2 gentoo-2-d6c33efbe9360ebcaec09e929206363c9aa3b1db.zip |
New ebuild for mate-extra/mate-sensors-applet, MATE panel applet to display readings from hardware sensors; imported from the mate-overlay, reviewed and adjusted.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'mate-extra')
-rw-r--r-- | mate-extra/mate-sensors-applet/ChangeLog | 11 | ||||
-rw-r--r-- | mate-extra/mate-sensors-applet/mate-sensors-applet-1.6.1.ebuild | 73 | ||||
-rw-r--r-- | mate-extra/mate-sensors-applet/metadata.xml | 8 |
3 files changed, 92 insertions, 0 deletions
diff --git a/mate-extra/mate-sensors-applet/ChangeLog b/mate-extra/mate-sensors-applet/ChangeLog new file mode 100644 index 000000000000..63f805775ba7 --- /dev/null +++ b/mate-extra/mate-sensors-applet/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for mate-extra/mate-sensors-applet +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mate-extra/mate-sensors-applet/ChangeLog,v 1.1 2014/03/10 00:50:48 tomwij Exp $ + +*mate-sensors-applet-1.6.1 (10 Mar 2014) + + 10 Mar 2014; Tom Wijsman <TomWij@gentoo.org> + +mate-sensors-applet-1.6.1.ebuild, +metadata.xml: + New ebuild for mate-extra/mate-sensors-applet, MATE panel applet to display + readings from hardware sensors; imported from the mate-overlay, reviewed and + adjusted. diff --git a/mate-extra/mate-sensors-applet/mate-sensors-applet-1.6.1.ebuild b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.6.1.ebuild new file mode 100644 index 000000000000..1d96d5c9f11e --- /dev/null +++ b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.6.1.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mate-extra/mate-sensors-applet/mate-sensors-applet-1.6.1.ebuild,v 1.1 2014/03/10 00:50:48 tomwij Exp $ + +EAPI="5" + +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" + +inherit gnome2 eutils versionator + +MATE_BRANCH="$(get_version_component_range 1-2)" + +SRC_URI="http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz" +DESCRIPTION="MATE panel applet to display readings from hardware sensors" +HOMEPAGE="http://mate-desktop.org" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="+dbus hddtemp libnotify lm_sensors video_cards_fglrx video_cards_nvidia" + +RDEPEND=" + >=dev-libs/glib-2.26:2 + >=mate-base/mate-panel-1.6:0 + >=x11-libs/cairo-1.0.4:0 + x11-libs/gdk-pixbuf:2 + >=x11-libs/gtk+-2.14:2 + virtual/libintl:0 + hddtemp? ( + dbus? ( + >=dev-libs/dbus-glib-0.80:0 + >=dev-libs/libatasmart-0.16:0 ) + !dbus? ( >=app-admin/hddtemp-0.3_beta13:0 ) ) + libnotify? ( >=x11-libs/libnotify-0.7:0 ) + lm_sensors? ( sys-apps/lm_sensors:0 ) + video_cards_fglrx? ( x11-drivers/ati-drivers ) + video_cards_nvidia? ( || ( + >=x11-drivers/nvidia-drivers-100.14.09:0 + media-video/nvidia-settings:0 + ) )" + +DEPEND="${RDEPEND} + dev-util/intltool:0 + >=app-text/mate-doc-utils-1.6:0 + >=app-text/scrollkeeper-0.3.14:0 + sys-devel/gettext:0 + virtual/pkgconfig:0" + +# Requires libxslt only for use by gnome-doc-utils. +PDEPEND="hddtemp? ( dbus? ( sys-fs/udisks:0 ) )" + +src_configure() { + local myconf + + if use hddtemp && use dbus; then + myconf="${myconf} $(use_enable dbus udisks)" + else + myconf="${myconf} --disable-udisks" + fi + + gnome2_src_configure \ + --disable-scrollkeeper \ + --disable-static \ + $(use_enable libnotify) \ + $(use_with lm_sensors libsensors) \ + $(use_with video_cards_fglrx aticonfig) \ + $(use_with video_cards_nvidia nvidia) \ + ${myconf} +} + +DOCS="AUTHORS ChangeLog NEWS README TODO" diff --git a/mate-extra/mate-sensors-applet/metadata.xml b/mate-extra/mate-sensors-applet/metadata.xml new file mode 100644 index 000000000000..dca1781cb290 --- /dev/null +++ b/mate-extra/mate-sensors-applet/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>TomWij@gentoo.org</email> + <name>Tom Wijsman</name> + </maintainer> +</pkgmetadata> |