mirror of
https://git.yoctoproject.org/poky
synced 2026-04-28 06:32:34 +02:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5462 311d38ba-8fff-0310-9ca6-ca027cbcb966
32 lines
1.0 KiB
BlitzBasic
32 lines
1.0 KiB
BlitzBasic
LICENSE = "GPLv2"
|
|
PRIORITY = "optional"
|
|
DEPENDS = "gtk+ startup-notification dbus dbus-glib"
|
|
DEPENDS += " ${@base_contains("MACHINE_FEATURES", "acpi", "libacpi", "",d)}"
|
|
DEPENDS += " ${@base_contains("MACHINE_FEATURES", "apm", "apmd", "",d)}"
|
|
|
|
PV = "0.0+svnr${SRCREV}"
|
|
PR = "r4"
|
|
|
|
RPROVIDES_${PN} = "matchbox-panel"
|
|
RREPLACES_${PN} = "matchbox-panel"
|
|
RCONFLICTS_${PN} = "matchbox-panel"
|
|
|
|
SRC_URI = "svn://svn.o-hand.com/repos/matchbox/trunk;module=${PN};proto=http"
|
|
|
|
EXTRA_OECONF = "--enable-startup-notification --enable-dbus"
|
|
EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "acpi", "--with-battery=acpi", "",d)}"
|
|
EXTRA_OECONF += " ${@base_contains("MACHINE_FEATURES", "apm", "--with-battery=apm", "",d)}"
|
|
|
|
S = "${WORKDIR}/${PN}"
|
|
|
|
FILES_${PN} += "${libdir}/matchbox-panel/*.so \
|
|
${datadir}/matchbox-panel/brightness/*.png \
|
|
${datadir}/matchbox-panel/startup/*.png "
|
|
FILES_${PN}-dbg += "${libdir}/matchbox-panel/.debug"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_stage() {
|
|
autotools_stage_includes
|
|
}
|