mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-09 23:54:39 +02:00
As discussed on the mailing list, this variable isn't useful and if wanted would be better implemented by distros using pn-X overrides. This patch executes: find . -regex ".*\.\(bb\|inc\)$" | xargs sed -i '/^PRIORITY = ".*"$/d' against the tree removing the references. Thanks to Phil Blundell for the command. (Prompted by oe-core rev: d122343362669c683acc4af295971a62cbc823fc) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
30 lines
728 B
BlitzBasic
30 lines
728 B
BlitzBasic
DESCRIPTION = "Simple DirectMedia Layer truetype font library."
|
|
SECTION = "libs"
|
|
DEPENDS = "virtual/libsdl freetype"
|
|
LICENSE = "LGPL"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${PV}.tar.gz \
|
|
file://configure.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/SDL_ttf-${PV}"
|
|
EXTRA_OECONF += "SDL_CONFIG=${STAGING_BINDIR_CROSS}/sdl-config "
|
|
|
|
inherit autotools
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
|
|
do_configure_prepend() {
|
|
|
|
MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4"
|
|
|
|
for i in ${MACROS}; do
|
|
rm acinclude/$i
|
|
done
|
|
|
|
}
|
|
|
|
SRC_URI[md5sum] = "814e6e17e8879254208d23b3b7e0354b"
|
|
SRC_URI[sha256sum] = "7d38704bcc7c34029c2dcb73b2d4857e8ad76341c6e0faed279eb9f743c66c6a"
|