mirror of
git://git.yoctoproject.org/poky
synced 2026-09-27 08:11:58 +00:00
The gperf-native is actually needed to generate hash functions, change to depend on the native one. (From OE-Core master rev: 3285fdfe7dc13b068e7f3cd727e5c789cd22b26b) (From OE-Core rev: 547c3ba542041d5fa7af170fb09ef76d44f19e9d) Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.4 KiB
BlitzBasic
40 lines
1.4 KiB
BlitzBasic
# Copyright (C) 2012 Khem Raj <raj.khem@gmail.com>
|
|
# Released under the MIT license (see COPYING.MIT for the terms)
|
|
|
|
DESCRIPTION = "The kconfig-frontends project aims at centralising \
|
|
the effort of keeping an up-to-date, out-of-tree, packaging of the \
|
|
kconfig infrastructure, ready for use by third-party projects. \
|
|
The kconfig-frontends package provides the kconfig parser, as well as all \
|
|
the frontends"
|
|
HOMEPAGE = "http://ymorin.is-a-geek.org/projects/kconfig-frontends"
|
|
LICENSE = "GPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=9b8cf60ff39767ff04b671fca8302408"
|
|
SECTION = "devel"
|
|
DEPENDS += "ncurses flex bison gperf-native pkgconfig-native"
|
|
RDEPENDS_${PN} += "python"
|
|
SRC_URI = "http://ymorin.is-a-geek.org/download/${BPN}/${BP}.tar.xz"
|
|
|
|
SRC_URI[md5sum] = "1ebf13983eb5b2ce960d131cae290cad"
|
|
SRC_URI[sha256sum] = "442a3794b6dd9427f411ecec25dccab1a4bfcf07fe734f62d40e538afd1f0c8a"
|
|
|
|
S = "${WORKDIR}/${BPN}-${PV}"
|
|
|
|
inherit autotools
|
|
do_configure_prepend () {
|
|
mkdir -p scripts/.autostuff/m4
|
|
}
|
|
|
|
do_install_append() {
|
|
ln -s kconfig-conf ${D}${bindir}/conf
|
|
ln -s kconfig-mconf ${D}${bindir}/mconf
|
|
}
|
|
|
|
EXTRA_OECONF += "--disable-gconf --disable-qconf"
|
|
|
|
# Some packages have the version preceeding the .so instead properly
|
|
# versioned .so.<version>, so we need to reorder and repackage.
|
|
SOLIBS = "-${@d.getVar('PV',1)[:-2]}.so"
|
|
FILES_SOLIBSDEV = "${libdir}/libkconfig-parser.so"
|
|
|
|
BBCLASSEXTEND = "native"
|