mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
49c2321180
* fixes:
NOTE: recipe openbox-3.5.0-1: task do_package: Started
WARNING: openbox: Use of ALTERNATIVE_NAME is deprecated, see
update-alternatives.bbclass for more info.
* bump PE if you care about upgrade path from wrong PR, introduced in
commit 3becce8504
Author: Mario Domenech Goulart <mario@ossystems.com.br>
Date: Mon Dec 3 16:03:23 2012 +0000
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
43 lines
1.3 KiB
BlitzBasic
43 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "openbox Window Manager"
|
|
SECTION = "x11/wm"
|
|
DEPENDS = "glib-2.0 pango libxml2 virtual/libx11"
|
|
LICENSE = "GPLv2+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
|
|
|
|
SRC_URI = "http://icculus.org/openbox/releases/openbox-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "00441b53cf14c03566c8e82643544ff9"
|
|
SRC_URI[sha256sum] = "6fa90016530b3aa6102e254079461977439398531fb23e7ec076ff2c140fea0a"
|
|
|
|
PR = "r2"
|
|
|
|
inherit autotools gettext update-alternatives
|
|
|
|
ALTERNATIVE_${PN}-core = "x-window-manager"
|
|
ALTERNATIVE_TARGET[x-window-manager] = "${bindir}/openbox"
|
|
ALTERNATIVE_PRIORITY[x-window-manager] = "10"
|
|
|
|
EXTRA_OECONF += "--with-plugins=none"
|
|
|
|
PACKAGES =+ "${PN}-core ${PN}-lxde ${PN}-gnome ${PN}-config"
|
|
|
|
PACKAGES_DYNAMIC += "^${PN}-theme-.*"
|
|
|
|
python populate_packages_prepend() {
|
|
theme_dir = d.expand('${datadir}/themes/')
|
|
theme_name = d.expand('${PN}-theme-%s')
|
|
do_split_packages(d, theme_dir, '(.*)', theme_name, '${PN} theme for %s', extra_depends='', allow_dirs=True)
|
|
}
|
|
|
|
RDEPENDS_${PN} += "${PN}-core ${PN}-config"
|
|
FILES_${PN}-core = "${bindir}/openbox ${libdir}/*${SOLIBS}"
|
|
|
|
FILES_${PN}-lxde += "${datadir}/lxde/ \
|
|
${datadir}/lxpanel \
|
|
${datadir}/xsessions \
|
|
${datadir}/icons"
|
|
|
|
FILES_${PN}-gnome += "${datadir}/gnome/"
|
|
|
|
FILES_${PN}-config += "${sysconfdir}"
|