46 lines
1.8 KiB
BlitzBasic
46 lines
1.8 KiB
BlitzBasic
|
SUMMARY = "A graphic library for file loading, saving, rendering, and manipulation"
|
||
|
LICENSE = "MIT & BSD"
|
||
|
LIC_FILES_CHKSUM = "file://COPYING;md5=344895f253c32f38e182dcaf30fe8a35"
|
||
|
|
||
|
DEPENDS = "freetype libpng jpeg virtual/libx11 libxext"
|
||
|
PROVIDES = "virtual/imlib2"
|
||
|
PV = "1.4.6+gitr${SRCPV}"
|
||
|
SRCREV = "560a58e61778d84953944f744a025af6ce986334"
|
||
|
|
||
|
inherit efl binconfig
|
||
|
SRC_URI = "git://git.enlightenment.org/legacy/${BPN}.git"
|
||
|
S = "${WORKDIR}/git"
|
||
|
|
||
|
# autotools-brokensep
|
||
|
B = "${S}"
|
||
|
|
||
|
PACKAGECONFIG ??= ""
|
||
|
PACKAGECONFIG[gif] = "--with-gif,--without-gif,giflib"
|
||
|
PACKAGECONFIG[tiff] = "--with-tiff,--without-tiff,tiff"
|
||
|
PACKAGECONFIG[bzip2] = "--with-bzip2,--without-bzip2,bzip2"
|
||
|
PACKAGECONFIG[id3] = "--with-id3,--without-id3,libid3tag"
|
||
|
|
||
|
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"
|
||
|
|
||
|
# png.so jpeg.so id3.so are also provided by lightmediascanner
|
||
|
PRIVATE_LIBS_imlib2-loaders = "pnm.so lbm.so argb.so tiff.so zlib.so bmp.so tga.so gif.so xpm.so bz2.so"
|
||
|
|
||
|
PRIVATE_LIBS_imlib2-filters = "bumpmap.so colormod.so testfilter.so"
|