Files
meta-openembedded/meta-oe/recipes-support/imagemagick/imagemagick_6.4.4.bb
Andreas Müller 17f049b000 imagemagick: fix QA warnings for unshipped files
on build we receive tons of warnings like

WARNING: For recipe imagemagick, the following files were installed but not shipped in any package:
WARNING:   /usr/lib/ImageMagick-6.4.4/config/type.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/type-solaris.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/locale.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/english.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/type-windows.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/type-ghostscript.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/delegates.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/configure.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/config/francais.xml
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/filters/analyze.a
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/filters/analyze.la
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/filters/analyze.so
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/filters/.debug/analyze.so
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/coders/histogram.la
WARNING:   /usr/lib/ImageMagick-6.4.4/modules-Q16/coders/ycbcr.a
...

Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
2011-11-02 17:25:41 +01:00

39 lines
1.3 KiB
BlitzBasic

DESCRIPTION = "ImageMagick is an image convertion tools"
SECTION = "console/utils"
LICENSE = "ImageMagick"
LIC_FILES_CHKSUM = "file://LICENSE;md5=e1ebcc1358b9f81eba64255fc5da6892"
# FIXME: There is much more checked libraries. All should be added or explicitly disabled to get consistent results.
DEPENDS = "lcms bzip2 jpeg libpng librsvg tiff zlib"
PR = "r9"
PATCHSET = "1"
SRC_URI = "ftp://ftp.nluug.nl/pub/ImageMagick/ImageMagick-${PV}-${PATCHSET}.tar.bz2 \
file://PerlMagic_MakePatch.patch \
"
SRC_URI[md5sum] = "882ff241f6ad39655541d5055596f93b"
SRC_URI[sha256sum] = "5a5b2779707bfd9816cf17d8f53d242c05005092da192a898ac10961b3b19dda"
S = "${WORKDIR}/ImageMagick-${PV}"
inherit autotools binconfig pkgconfig
EXTRA_OECONF = "--program-prefix= --without-x --without-freetype --without-perl --disable-openmp"
FILES_${PN} += "${libdir}/ImageMagick-${PV}/modules-Q16/*/*.so \
${libdir}/ImageMagick-${PV}/modules-Q16/*/*.la \
${libdir}/ImageMagick-${PV}/config/ \
${datadir}/ImageMagick-${PV}"
FILES_${PN}-dev += "${libdir}/ImageMagick-${PV}/modules-Q16/*/*.a"
FILES_${PN}-dbg += "${libdir}/ImageMagick-${PV}/modules-Q16/*/.debug/*"
BBCLASSEXTEND = "native"
LEAD_SONAME = "libMagickCore.so.*"
do_configure_prepend() {
export ac_cv_sys_file_offset_bits=yes
}