mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
3a30c56238
Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: sed \ -e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
24 lines
782 B
BlitzBasic
24 lines
782 B
BlitzBasic
DESCRIPTION = "C++ bindings for the pango library."
|
|
SECTION = "libs"
|
|
LICENSE = "LGPLv2.1 & GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499 \
|
|
file://COPYING.tools;md5=751419260aa954499f7abaabaa882bbe"
|
|
|
|
PR = "r2"
|
|
|
|
DEPENDS = "mm-common cairomm glibmm"
|
|
|
|
SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}"
|
|
|
|
SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/pangomm/${SHRT_VER}/pangomm-${PV}.tar.bz2"
|
|
SRC_URI[md5sum] = "005a474863495d3c6267429a80da6cf2"
|
|
SRC_URI[sha256sum] = "ec1d97245eada5cf18d0e7af3f6e31498f25623b4a354589d631d2dff92fd88f"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_OECONF = " --disable-documentation "
|
|
|
|
FILES_${PN} = "${libdir}/lib*.so.*"
|
|
FILES_${PN}-dev += "${libdir}/*/include/ ${libdir}/pangomm-*/"
|
|
|