mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
105e451151
* it was installing imlib2-config directly to sysroot Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
32 lines
1.3 KiB
BlitzBasic
32 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "A graphic library for file loading, saving, rendering, and manipulation."
|
|
LICENSE = "MIT BSD"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
|
|
# can also depend on tiff34, ungif or gif, z, bz2, id3tag
|
|
DEPENDS = "freetype libpng jpeg virtual/libx11 libxext"
|
|
PROVIDES = "virtual/imlib2"
|
|
PV = "1.4.5+svnr${SRCPV}"
|
|
SRCREV = "${EFL_SRCREV}"
|
|
|
|
inherit efl binconfig
|
|
SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};protocol=http;scmdata=keep"
|
|
S = "${WORKDIR}/${SRCNAME}"
|
|
|
|
EXTRA_OECONF = "--with-x \
|
|
--x-includes=${STAGING_INCDIR} \
|
|
--x-libraries=${STAGING_LIBDIR} "
|
|
|
|
# TODO: Use more fine granular version
|
|
#OE_LT_RPATH_ALLOW=":${libdir}/imlib2/loaders:${libdir}/imlib2/filters:"
|
|
OE_LT_RPATH_ALLOW = "any"
|
|
OE_LT_RPATH_ALLOW[export]="1"
|
|
|
|
PACKAGES =+ "imlib2-loaders-dbg imlib2-filters-dbg imlib2-loaders imlib2-filters"
|
|
FILES_${PN} = "${libdir}/lib*.so.* ${libdir}/imlib2/*/*.so"
|
|
FILES_${PN}-dbg = "${libdir}/.debug/ ${bindir}/.debug/ ${prefix}/src/debug/"
|
|
FILES_${PN}-dev += "${bindir}/imlib2-config ${libdir}/*.so ${includedir}"
|
|
FILES_${PN}-bin = "${bindir}"
|
|
FILES_imlib2-loaders = "${libdir}/imlib2/loaders/*.so"
|
|
FILES_imlib2-filters = "${libdir}/imlib2/filters/*.so"
|
|
FILES_imlib2-loaders-dbg += "${libdir}/imlib2/loaders/.debug"
|
|
FILES_imlib2-filters-dbg += "${libdir}/imlib2/filters/.debug"
|