mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-19 00:14:53 +00:00
* fixes: WARNING: QA Issue: enca: configure was passed unrecognised options: --with-libiconv-prefix [unknown-configure-option] Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
38 lines
1.1 KiB
BlitzBasic
38 lines
1.1 KiB
BlitzBasic
SUMMARY = "Enca is an Extremely Naive Charset Analyser"
|
|
SECTION = "libs"
|
|
HOMEPAGE = "http://trific.ath.cx/software/enca/"
|
|
|
|
DEPENDS += "gettext-native"
|
|
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=24b9569831c46d4818450b55282476b4"
|
|
|
|
SRC_URI = "http://www.sourcefiles.org/Networking/Tools/Miscellanenous/enca-${PV}.tar.bz2 \
|
|
file://configure-hack.patch \
|
|
file://dont-run-tests.patch \
|
|
file://configure-remove-dumbness.patch \
|
|
file://makefile-remove-tools.patch \
|
|
file://libenca-003-iconv.patch "
|
|
|
|
SRC_URI[md5sum] = "b3581e28d68d452286fb0bfe58bed3b3"
|
|
SRC_URI[sha256sum] = "02acfef2b24a9c842612da49338138311f909f1cd33933520c07b8b26c410f4d"
|
|
|
|
inherit autotools
|
|
|
|
do_configure_prepend() {
|
|
# remove failing test which checks for something that isn't even used
|
|
sed -i -e '/ye_FUNC_SCANF_MODIF_SIZE_T/d' ${S}/configure.ac
|
|
}
|
|
|
|
do_configure_append() {
|
|
sed -i s:-I/usr/include::g ${B}/Makefile
|
|
sed -i s:-I/usr/include::g ${B}/*/Makefile
|
|
}
|
|
|
|
do_compile() {
|
|
cd ${S}/tools && ${BUILD_CC} -o make_hash make_hash.c
|
|
cd ${B}
|
|
oe_runmake
|
|
}
|
|
|