diff options
author | 2001-11-21 02:37:34 +0000 | |
---|---|---|
committer | 2001-11-21 02:37:34 +0000 | |
commit | b568a34e2cdf4a558c7e7c3254fd2225d590072b (patch) | |
tree | b492a4a726179e3845fc8327543ae744f03a15cb /incoming | |
parent | updated version as hinted from incoming. slight tweakage to the mandir stuff. (diff) | |
download | gentoo-2-b568a34e2cdf4a558c7e7c3254fd2225d590072b.tar.gz gentoo-2-b568a34e2cdf4a558c7e7c3254fd2225d590072b.tar.bz2 gentoo-2-b568a34e2cdf4a558c7e7c3254fd2225d590072b.zip |
assimilated the submitted imagemagick-5.4.0 into portage proper after some testing
Diffstat (limited to 'incoming')
-rw-r--r-- | incoming/files/digest-imagemagick-5.4.0 | 1 | ||||
-rw-r--r-- | incoming/imagemagick-5.4.0.ebuild | 50 |
2 files changed, 0 insertions, 51 deletions
diff --git a/incoming/files/digest-imagemagick-5.4.0 b/incoming/files/digest-imagemagick-5.4.0 deleted file mode 100644 index f764546b7a46..000000000000 --- a/incoming/files/digest-imagemagick-5.4.0 +++ /dev/null @@ -1 +0,0 @@ -MD5 bb39eff9695e377df23e8ff7c0a624e8 ImageMagick-5.4.0.tar.gz 3612672 diff --git a/incoming/imagemagick-5.4.0.ebuild b/incoming/imagemagick-5.4.0.ebuild deleted file mode 100644 index 64aabb24528d..000000000000 --- a/incoming/imagemagick-5.4.0.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Author Achim Gottinger <achim@gentoo.org> -# /home/cvsroot/gentoo-x86/media-gfx/imagemagick/imagemagick-5.3.4-r1.ebuild,v 1.1 2001/10/06 15:30:16 danarmak Exp - -P=ImageMagick-${PV} -A=${P}.tar.gz -S=${WORKDIR}/${P} -DESCRIPTION="A collection of tools and libraries for many image formats" -SRC_URI="ftp://ftp.fifi.org/pub/ImageMagick/${A}" -HOMEPAGE="http://www.imagemagick.org" - -DEPEND="virtual/glibc sys-devel/gcc >=app-text/dgs-0.5.9.1 - perl? ( >=sys-devel/perl-5 ) - >=sys-apps/bzip2-1 - >=media-libs/freetype-2.0 - >=media-libs/tiff-3.5.5 - >=media-libs/libpng-1.0.7 - virtual/x11 - virtual/lpr" - -RDEPEND="virtual/glibc sys-devel/gcc >app-text/dgs-0.5.9.1 - >=sys-apps/bzip2-1 - >=media-libs/tiff-3.5.5 - >=media-libs/freetype-2.0 - >=media-libs/libpng-1.0.7" - -src_compile() { - local myconf - if [ -z "`use perl`" ] ; then - myconf="--without-perl" - fi - try ./configure \ - --prefix=/usr --build=${CHOST} --enable-shared --enable-static \ - --without-xml --without-lcms --enable-lzw --with-ttf --without-fpx \ - --without-gslib --without-hdf --without-jbig --without-wmf - --enable-shared --with-threads --mandir=/usr/man $myconf - try pmake - -} - -src_install () { - - try make prefix=${D}/usr PREFIX=${D}/usr \ - INSTALLMAN3DIR=${D}/usr/share/man/man3 \ - INSTALLMAN1DIR=${D}/usr/share/man/man1 \ - mandir=${D}/usr/man install - -} - |