# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header$ inherit libtool flag-o-matic perl-module replace-flags k6-3 i586 replace-flags k6-2 i586 replace-flags k6 i586 IUSE="X gs jbig jpeg lcms lzw perl png tiff truetype wmf xml2" MY_PN=GraphicsMagick ### uncomment the right variables depending on if we have a patchlevel or not #MY_P=${MY_PN}-${PV%.*}-${PV#*.*.*.} #MY_P2=${MY_PN}-${PV%.*} MY_P=${MY_PN}-${PV} MY_P2=${MY_PN}-${PV} S=${WORKDIR}/${MY_P2} DESCRIPTION="A collection of tools and libraries for many image formats" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" HOMEPAGE="http://www.graphicsmagick.org/" SLOT="0" LICENSE="as-is" KEYWORDS="~x86 ~sparc ~mips ~hppa" DEPEND=">=sys-apps/sed-4 >=app-arch/bzip2-1 sys-libs/zlib X? ( virtual/x11 >=app-text/dgs-0.5.9.1 ) gs? ( >=app-text/ghostscript-7.05 ) jpeg? ( >=media-libs/jpeg-6b ) lcms? ( >=media-libs/lcms-1.06 ) perl? ( dev-lang/perl ) png? ( media-libs/libpng ) tiff? ( >=media-libs/tiff-3.5.5 ) xml2? ( >=dev-libs/libxml2-2.4.10 ) truetype? ( =media-libs/freetype-2* ) wmf? ( >=media-libs/libwmf-0.2.5 ) jbig? ( media-libs/jbigkit )" #mpeg? ( media-video/mpeg2vidcodec ) src_compile() { elibtoolize local myconf="" use X || myconf="${myconf} --with-x=no" use gs && myconf="${myconf} --with-gslib" use jbig || myconf="${myconf} --without-jbig" use jpeg || myconf="${myconf} --without-jpeg --without-jp2" use lcms || myconf="${myconf} --without-lcms" use lzw && myconf="${myconf} --enable-lzw" use png || myconf="${myconf} --with-png=no" use tiff || myconf="${myconf} --without-tiff" use truetype || myconf="${myconf} --without-ttf" use wmf || myconf="${myconf} --without-wmf" use xml2 || myconf="${myconf} --without-xml" # Netscape is still used ? More people should have Mozilla sed -i 's:netscape:mozilla:g' configure # version.sh got ahead of itself! sed -i 's:1.0.5:1.0.4:' version.sh econf \ --enable-shared \ --with-quantum-depth=16 \ --with-threads \ --with-bzlib \ --without-perl \ ${myconf} || die #--enable-static \ #--without-hdf \ # make PerlMagick using portage tools instead of Makefile to avoid sandbox issues if [ `use perl` ] ; then cd PerlMagick perl-module_src_prep perl-module_src_compile cd .. fi emake || die "compile problem" } src_install() { make DESTDIR=${D} install || die if [ `use perl` ] ; then cd PerlMagick perl-module_src_install cd .. fi mydoc="*.txt" rm -f ${D}/usr/share/GraphicsMagick/*.txt dosed "s:-I/usr/include ::" /usr/bin/GraphicsMagick-config dosed "s:-I/usr/include ::" /usr/bin/GraphicsMagick++-config }