diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-01-01 22:34:22 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-01-01 22:34:22 +0000 |
commit | 77e2bcbd282482d521198e130d6c17e5af4a8867 (patch) | |
tree | 212f509dc235921b033a9e9beb9741e86330760e /media-gfx/imagemagick | |
parent | removing qt-x11, broken up into x11-libs/qt and app-doc/qt-docs. (diff) | |
download | gentoo-2-77e2bcbd282482d521198e130d6c17e5af4a8867.tar.gz gentoo-2-77e2bcbd282482d521198e130d6c17e5af4a8867.tar.bz2 gentoo-2-77e2bcbd282482d521198e130d6c17e5af4a8867.zip |
new version
Diffstat (limited to 'media-gfx/imagemagick')
-rw-r--r-- | media-gfx/imagemagick/files/digest-imagemagick-5.4.1 | 1 | ||||
-rw-r--r-- | media-gfx/imagemagick/imagemagick-5.4.1.ebuild | 75 |
2 files changed, 76 insertions, 0 deletions
diff --git a/media-gfx/imagemagick/files/digest-imagemagick-5.4.1 b/media-gfx/imagemagick/files/digest-imagemagick-5.4.1 new file mode 100644 index 000000000000..5a1c698ed983 --- /dev/null +++ b/media-gfx/imagemagick/files/digest-imagemagick-5.4.1 @@ -0,0 +1 @@ +MD5 9715a75360f8915bf13ea07c0b6f60a1 ImageMagick-5.4.1-2.tar.gz 3682304 diff --git a/media-gfx/imagemagick/imagemagick-5.4.1.ebuild b/media-gfx/imagemagick/imagemagick-5.4.1.ebuild new file mode 100644 index 000000000000..f0144701f85a --- /dev/null +++ b/media-gfx/imagemagick/imagemagick-5.4.1.ebuild @@ -0,0 +1,75 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-5.4.1.ebuild,v 1.1 2002/01/01 22:34:22 azarah Exp $ + +MY_P=ImageMagick-${PV}-2 +S=${WORKDIR}/ImageMagick-${PV} +DESCRIPTION="A collection of tools and libraries for many image formats" +SRC_URI="ftp://ftp.fifi.org/pub/ImageMagick/${MY_P}.tar.gz" +HOMEPAGE="http://www.imagemagick.org/" + +DEPEND="virtual/glibc + virtual/lpr + virtual/x11 + >=app-text/dgs-0.5.9.1 + >=sys-apps/bzip2-1 + >=sys-libs/zlib-1.1.3 + >=media-libs/freetype-2.0 + >=media-libs/jpeg-6b + >=media-libs/tiff-3.5.5 + >=media-libs/libpng-1.0.7 + gs? ( >=app-text/ghostscript-6.50 ) + lcms? ( >=media-libs/lcms-1.06 ) + perl? ( >=sys-devel/perl-5 ) + xml2? ( >=dev-libs/libxml2-2.4.10 )" + + +src_compile() { + + local myconf="" + use perl || myconf="--without-perl" + use lcms || myconf="${myconf} --without-lcms" + use xml2 || myconf="${myconf} --without-xml" + + # Netscape is still used ? More people should have Mozilla + cp configure configure.orig + sed -e 's:netscape:mozilla:g' configure.orig > configure + + ./configure --prefix=/usr \ + --mandir=/usr/share/man \ + --enable-shared \ + --enable-static \ + --enable-lzw \ + --with-ttf \ + --without-fpx \ + --without-gslib \ + --without-hdf \ + --without-jbig \ + --without-wmf \ + --with-threads \ + --build=${CHOST} \ + ${myconf} || die "bad configure" + + emake || die "compile problem" +} + +src_install() { + + make prefix=${D}/usr \ + PREFIX=${D}/usr \ + INSTALLPRIVLIB=${D}/usr/lib/perl5 \ + INSTALLSCRIPT=${D}/usr/bin \ + INSTALLSITELIB=${D}/usr/lib/perl5/site_perl \ + INSTALLBIN=${D}/usr/bin \ + INSTALLMAN1DIR=${D}/usr/share/man/man1 \ + INSTALLMAN3DIR=${D}/usr/share/man/man3 \ + mandir=${D}/usr/share/man \ + MagickSharePath=${D}/usr/share/ImageMagick/ \ + pkgdocdir=${D}/usr/share/doc/${PF}/html \ + install || die "install problem" + + rm -f ${D}/usr/share/ImageMagick/*.txt + + dodoc Copyright.txt PLATFORMS.txt QuickStart.txt README.txt TODO.txt +} |