mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 17:59:59 +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>
29 lines
952 B
BlitzBasic
29 lines
952 B
BlitzBasic
ESCRIPTION = "The GNU Compact Disc Input and Control library (libcdio) contains a library for CD-ROM and CD image access."
|
|
HOMEPAGE = "http://www.gnu.org/software/libcdio/"
|
|
SECTION = "libs"
|
|
|
|
LICENSE = "GPLv3+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
|
|
|
DEPENDS = "ncurses"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/${PN}/${P}.tar.gz"
|
|
SRC_URI[md5sum] = "1c29b18e01ab2b966162bc727bf3c360"
|
|
SRC_URI[sha256sum] = "1acb3de8e0927906ade7a34c5853173d3068b87b02dfba80d0bf11e47f0b5d39"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
EXTRA_OECONF = "ac_cv_member_struct_tm_tm_gmtoff=no --disable-rpath"
|
|
DEBUG_OPTIMIZATION_thumb = "-Os -fno-omit-frame-pointer -g"
|
|
|
|
PACKAGES += "${PN}-utils"
|
|
|
|
FILES_${PN} = "${libdir}/${PN}${SOLIB}"
|
|
FILES_${PN}-utils = "${bindir}/*"
|
|
|
|
python populate_packages_prepend () {
|
|
glibdir = d.expand('${libdir}')
|
|
do_split_packages(d, glibdir, '^lib(.*)\.so\..*', 'lib%s', 'gstreamer %s library', extra_depends='', allow_links=True)
|
|
}
|
|
|