diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2023-10-04 08:09:03 -0300 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2024-05-07 17:37:27 +0200 |
commit | f1d7e907f9650e8f470f1651e6d4116184834d52 (patch) | |
tree | 6a0ad5ea63909276757668bb0ac09ef0c643ed0a /recipes-graphics | |
parent | 327f6606b0a014942501b3cbce55988bc78a30db (diff) |
recipes: remove recipe now available in other layers
gnome-disk-utility in a later version is available from meta-openembedded.
joe version 4.6 has landed in meta-openembedded.
tinycompress version 1.1.6 has landed in meta-freescale.
imlib2: now available from meta-openembedded.
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
Diffstat (limited to 'recipes-graphics')
-rw-r--r-- | recipes-graphics/scrot/imlib2_git.bb | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/recipes-graphics/scrot/imlib2_git.bb b/recipes-graphics/scrot/imlib2_git.bb deleted file mode 100644 index 8abd7d7..0000000 --- a/recipes-graphics/scrot/imlib2_git.bb +++ /dev/null @@ -1,56 +0,0 @@ -SUMMARY = "A graphic library for file loading, saving, rendering, and manipulation" -LICENSE = "Imlib2" -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 autotools binconfig pkgconfig -SRC_URI = "git://git.enlightenment.org/legacy/${BPN}.git;branch=master" -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 ${PN}-bin imlib2-themes " -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-themes = "${datadir}/imlib2/data" -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" - -do_configure:prepend() { - autopoint || touch config.rpath -} - -do_install:prepend () { - for i in `find ${B}/ -name "*.pc" -type f` ; do \ - sed -i -e 's:-L${STAGING_LIBDIR}:-L\$\{libdir\}:g' -e 's:-I${STAGING_LIBDIR}:-I\$\{libdir\}:g' -e 's:-I${STAGING_INCDIR}:-I\$\{includedir\}:g' $i - done -} |