Skip to content
Commits on Source (6)
xfce4-sensors-plugin (1.3.0-2) unstable; urgency=medium
* enable support for NVidia cards temperature sensors (closes: #906620)
* d/rules: reorder configure options
* bump debhelper compat to 10
* d/control: drop Lionel from uploaders, thanks!
-- Yves-Alexis Perez <corsac@debian.org> Sat, 29 Sep 2018 10:46:44 +0200
xfce4-sensors-plugin (1.3.0-1) unstable; urgency=medium
* Moved the package to git on salsa.debian.org
......
......@@ -2,9 +2,8 @@ Source: xfce4-sensors-plugin
Section: xfce
Priority: optional
Maintainer: Debian Xfce Maintainers <debian-xfce@lists.debian.org>
Uploaders: Yves-Alexis Perez <corsac@debian.org>,
Lionel Le Folgoc <mrpouit@gmail.com>
Build-Depends: debhelper (>= 9),
Uploaders: Yves-Alexis Perez <corsac@debian.org>
Build-Depends: debhelper (>= 10),
hddtemp [!kfreebsd-amd64 !kfreebsd-i386 !hurd-i386],
intltool,
libgtk-3-dev,
......@@ -13,7 +12,9 @@ Build-Depends: debhelper (>= 9),
libxfce4panel-2.0-dev,
libxfce4ui-2-dev,
libxml-parser-perl,
libxml2-dev
libxml2-dev,
libxnvctrl-dev,
xfce4-dev-tools
Standards-Version: 4.1.4
Homepage: http://goodies.xfce.org/
Vcs-Git: https://salsa.debian.org/xfce-team/goodies/xfce4-sensors-plugin.git
......
......@@ -3,10 +3,20 @@ export DEB_LDFLAGS_MAINT_APPEND=-Wl,--as-needed -Wl,-O1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@ --parallel
dh $@
override_dh_autoreconf:
mkdir -p m4
dh_autoreconf
override_dh_auto_configure:
dh_auto_configure -- --enable-libsensors=yes --enable-procacpi --enable-hddtemp=yes --enable-notification --disable-static
dh_auto_configure -- \
--enable-hddtemp=yes \
--enable-libsensors=yes \
--enable-notification \
--enable-procacpi \
--enable-xnvctrl \
--disable-static
override_dh_makeshlibs:
dh_makeshlibs -X debian/xfce4-sensors-plugin/usr/lib/$(DEB_HOST_MULTIARCH)/xfce4/modules/libxfce4sensors.so.*.*.*
......