dcallagh-exheres

My personal Exherbo repository
git clone https://code.djc.id.au/git/dcallagh-exheres/

packages/gnome-extra/sensors-applet/sensors-applet-2.2.7.exheres-0 (1116B) - raw

      1 # Copyright 2010 Dan Callaghan <djc@djc.id.au>
      2 # Distributed under the terms of the GNU General Public License v2
      3 
      4 require gnome-2 sourceforge [ suffix=tar.gz ]
      5 
      6 SUMMARY="GNOME panel applet for hardware sensors"
      7 DESCRIPTION="
      8 Provides a GNOME panel applet which can display hardware sensor data (e.g. temperatures, fan speeds)
      9 from various sources.
     10 "
     11 
     12 LICENCES="GPL-2"
     13 SLOT="0"
     14 PLATFORMS="~amd64 ~x86"
     15 MYOPTIONS="
     16     libnotify
     17     udisks
     18     sensors
     19     nvidia [[ description = [ Use libXNVCtrl to support temperature sensors on nvidia GPUs ] ]]
     20     "
     21 
     22 DEPENDENCIES="
     23     build:
     24     build+run:
     25         gnome-desktop/gnome-panel
     26         gnome-platform/libgnomeui:2
     27         libnotify? ( x11-libs/libnotify )
     28         udisks? ( sys-apps/dbus sys-apps/udisks )
     29         sensors? ( sys-apps/lm_sensors )
     30         nvidia? ( x11-libs/libXNVCtrl )
     31 "
     32 
     33 BUGS_TO="djc@djc.id.au"
     34 
     35 src_configure() {
     36     econf \
     37         --hates=disable-silent-rules \
     38         --disable-scrollkeeper \
     39         $(option_enable libnotify) \
     40         $(option_enable udisks) \
     41         $(option_with sensors libsensors) \
     42         $(option_with nvidia)
     43 }
     44