diff options
author | Koen Kooi <koen@openembedded.org> | 2007-08-30 12:51:14 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-08-30 12:51:14 +0000 |
commit | 634f80151cba377aedff02a302f44eaa5b52af7c (patch) | |
tree | 5e3b33ef0225a7623d5716e30095ffb3951ee523 /packages | |
parent | 0b15697d7674074f1a5806518ff2d9b6c61f7877 (diff) | |
parent | de372333d013c8cf7674c9032a16d29b92f0a7b9 (diff) |
merge of '06fb345943334f939a5210e3a0e3c6d4edf0e6c1'
and 'f4febba2a3678a4948cda4320c543ed34a41ff68'
Diffstat (limited to 'packages')
-rw-r--r-- | packages/imagemagick/imagemagick_6.2.9.bb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/packages/imagemagick/imagemagick_6.2.9.bb b/packages/imagemagick/imagemagick_6.2.9.bb index 33748a005e..a403e1a629 100644 --- a/packages/imagemagick/imagemagick_6.2.9.bb +++ b/packages/imagemagick/imagemagick_6.2.9.bb @@ -7,8 +7,9 @@ SRC_URI = "ftp://ftp.nluug.nl/pub/ImageMagick/ImageMagick-${PV}-2.tar.bz2 \ file://PerlMagic_MakePatch;patch=1" S = "${WORKDIR}/ImageMagick-${PV}" +PR="r1" -inherit autotools +inherit autotools binconfig EXTRA_OECONF="--without-x" EXTRA_OECONF_openprotium="--without-x --without-xml --without-perl" @@ -16,7 +17,17 @@ EXTRA_OECONF_openprotium="--without-x --without-xml --without-perl" LEAD_SONAME="libMagick.so.*" FILES_${PN} += "${libdir}/ImageMagick-${PV}/modules-Q16/*/*.so \ + ${libdir}/ImageMagick-${PV}/modules-Q16/*/*.la \ ${libdir}/ImageMagick-${PV}/config/ \ ${datadir}/ImageMagick-${PV}" FILES_${PN}-dbg += "${libdir}/ImageMagick-${PV}/modules-Q16/*/.debug/*" + +do_stage() { + oe_libinstall -so -a libMagick ${STAGING_LIBDIR} + oe_libinstall -so -a libWand ${STAGING_LIBDIR} + install -d ${STAGING_INCDIR}/wand/ + install -d ${STAGING_INCDIR}/magick/ + install -m 0644 wand/*.h ${STAGING_INCDIR}/wand/ + install -m 0644 magick/*.h ${STAGING_INCDIR}/magick/ +} |