mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
https://goodies.xfce.org/ states "Starting this month (November 2019), a project is starting to migrate the goodies.xfce.org documentation to https://docs.xfce.org/start. The goal is to remove deprecated projects and, eventually, de-commission the goodies.xfce.org URLs. Additional information will be posted on https://wiki.xfce.org/projects/goodies-decomm/start as the project proceeds." This patch updates the URLs being used in the HOMEPAGEs to reflect where the address is actually resolving. Signed-off-by: Jason Schonberg <schonm@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
29 lines
1.1 KiB
BlitzBasic
29 lines
1.1 KiB
BlitzBasic
SUMMARY = "Sensors plugin for the Xfce Panel"
|
|
HOMEPAGE = "https://docs.xfce.org/panel-plugins/xfce4-sensors-plugin/start"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
|
|
|
|
inherit xfce-panel-plugin
|
|
|
|
SRC_URI += "file://0001-Do-not-check-for-sys-class-power_supply-we-are-cross.patch"
|
|
SRC_URI[sha256sum] = "f69fdf79b7f76d2a81724828124a6fce76803a9122a4c82de8f3dfa3efbb179a"
|
|
|
|
EXTRA_OECONF = " \
|
|
--disable-procacpi \
|
|
--disable-xnvctrl \
|
|
"
|
|
|
|
LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-lld', ' -fuse-ld=bfd', '', d)}"
|
|
|
|
do_configure:prepend() {
|
|
sed -i 's:LIBSENSORS_CFLAGS=.*:LIBSENSORS_CFLAGS=-I${STAGING_INCDIR}:g' ${S}/configure.ac
|
|
}
|
|
|
|
PACKAGECONFIG ??= "libnotify"
|
|
PACKAGECONFIG[libsensors] = "--enable-libsensors,--disable-libsensors, lmsensors"
|
|
PACKAGECONFIG[hddtemp] = "--enable-hddtemp,--disable-hddtemp, hddtemp"
|
|
PACKAGECONFIG[netcat] = "--enable-netcat --disable-pathchecks,--disable-netcat, netcat"
|
|
PACKAGECONFIG[libnotify] = "--enable-notification,--disable-notification, libnotify"
|
|
|
|
FILES_SOLIBSDEV = "${libdir}/xfce4/modules/lib*${SOLIBSDEV}"
|