diff --git a/debian/changelog b/debian/changelog index acf3052..515b539 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +lxqt-panel (0.10.0-6) unstable; urgency=medium + + * different handling of non-linux-os: + - hurd: no cpuload-, networkmonitor-, volume- and sensors-plugin + - kfreebsd: no cpuload-, networkmonitor- and volume-plugin + + -- Alf Gaida Mon, 28 Dec 2015 17:07:30 +0100 + lxqt-panel (0.10.0-5) unstable; urgency=medium * Build volume-plugin only for linux. diff --git a/debian/control b/debian/control index 99fdada..e4e97a7 100644 --- a/debian/control +++ b/debian/control @@ -20,7 +20,7 @@ Build-Depends: cmake (>= 3.0.2), libpulse-dev, libqt5x11extras5-dev, libqt5xdg-dev (>= 1.3.0), - libsensors4-dev, + libsensors4-dev [!hurd-any], libstatgrab-dev [linux-any], libsysstat-qt5-0-dev (>= 0.3.0), libx11-dev, diff --git a/debian/rules b/debian/rules index 9be3b94..695c35f 100755 --- a/debian/rules +++ b/debian/rules @@ -5,10 +5,13 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed DEB_HOST_ARCH_OS := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null) -ifneq ($(DEB_HOST_ARCH_OS),linux) - NOT_LINUX := -DCPULOAD_PLUGIN=NO -DNETWORKMONITOR_PLUGIN=NO -DVOLUME_PLUGIN=NO +ifeq ($(DEB_HOST_ARCH_OS),kfreebsd) + NOT_LINUX := -DCPULOAD_PLUGIN=NO -DNETWORKMONITOR_PLUGIN=NO -DVOLUME_PLUGIN=NO endif +ifeq ($(DEB_HOST_AECH_OS), hurd) + NOT_LINUX := -DCPULOAD_PLUGIN=NO -DNETWORKMONITOR_PLUGIN=NO -DVOLUME_PLUGIN=NO -DSENSORS_PLUGIN=NO +endif %: dh ${@} --buildsystem cmake \