diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-15 16:40:57 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-15 16:40:57 +0000 |
commit | baa72531c8a5e51007a7930d7c39608ada2fc6ec (patch) | |
tree | a94656825ad8ee2547262f9b667a157d6b9d1cd6 /media-libs/gd | |
parent | Stable for AMD64, wrt bug #393953 (diff) | |
download | gentoo-2-baa72531c8a5e51007a7930d7c39608ada2fc6ec.tar.gz gentoo-2-baa72531c8a5e51007a7930d7c39608ada2fc6ec.tar.bz2 gentoo-2-baa72531c8a5e51007a7930d7c39608ada2fc6ec.zip |
old
(Portage version: 2.2.0_alpha79/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/gd')
-rw-r--r-- | media-libs/gd/ChangeLog | 6 | ||||
-rw-r--r-- | media-libs/gd/gd-2.0.35-r1.ebuild | 50 | ||||
-rw-r--r-- | media-libs/gd/gd-2.0.35-r2.ebuild | 52 |
3 files changed, 5 insertions, 103 deletions
diff --git a/media-libs/gd/ChangeLog b/media-libs/gd/ChangeLog index 8a97242c3b20..176aaad4439d 100644 --- a/media-libs/gd/ChangeLog +++ b/media-libs/gd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-libs/gd # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/ChangeLog,v 1.76 2011/11/05 18:24:22 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/ChangeLog,v 1.77 2011/12/15 16:40:57 ssuominen Exp $ + + 15 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> -gd-2.0.35-r1.ebuild, + -gd-2.0.35-r2.ebuild: + old 05 Nov 2011; Raúl Porcel <armin76@gentoo.org> gd-2.0.35-r3.ebuild: alpha/ia64/m68k/s390/sh/sparc stable wrt #387291 diff --git a/media-libs/gd/gd-2.0.35-r1.ebuild b/media-libs/gd/gd-2.0.35-r1.ebuild deleted file mode 100644 index 57872115984a..000000000000 --- a/media-libs/gd/gd-2.0.35-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.35-r1.ebuild,v 1.13 2010/07/23 20:55:11 ssuominen Exp $ - -EAPI=1 -inherit autotools - -DESCRIPTION="A graphics library for fast image creation" -HOMEPAGE="http://libgd.org/" -SRC_URI="http://libgd.org/releases/${P}.tar.bz2" - -LICENSE="|| ( as-is BSD )" -SLOT="2" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc-fbsd ~x86-fbsd" -IUSE="fontconfig jpeg png truetype xpm" - -RDEPEND="fontconfig? ( media-libs/fontconfig ) - jpeg? ( virtual/jpeg ) - png? ( >=media-libs/libpng-1.4 - sys-libs/zlib ) - truetype? ( >=media-libs/freetype-2.1.5 ) - xpm? ( x11-libs/libXpm x11-libs/libXt )" -DEPEND="${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-libpng14.patch \ - "${FILESDIR}"/${P}-maxcolors.patch - - eautoconf - find . -type f -print0 | xargs -0 touch -r configure -} - -src_compile() { - econf \ - $(use_with fontconfig) \ - $(use_with png) \ - $(use_with truetype freetype) \ - $(use_with jpeg) \ - $(use_with xpm) \ - || die - emake || die -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc INSTALL README* - dohtml -r ./ -} diff --git a/media-libs/gd/gd-2.0.35-r2.ebuild b/media-libs/gd/gd-2.0.35-r2.ebuild deleted file mode 100644 index dff89fba6bf9..000000000000 --- a/media-libs/gd/gd-2.0.35-r2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.35-r2.ebuild,v 1.3 2011/04/11 14:21:39 ssuominen Exp $ - -EAPI=2 -inherit autotools eutils - -DESCRIPTION="A graphics library for fast image creation" -HOMEPAGE="http://libgd.org/" -SRC_URI="http://libgd.org/releases/${P}.tar.bz2" - -LICENSE="|| ( as-is BSD )" -SLOT="2" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="fontconfig jpeg png static-libs truetype xpm" - -RDEPEND="fontconfig? ( media-libs/fontconfig ) - jpeg? ( virtual/jpeg ) - png? ( >=media-libs/libpng-1.4 - sys-libs/zlib ) - truetype? ( >=media-libs/freetype-2.1.5 ) - xpm? ( x11-libs/libXpm x11-libs/libXt )" -DEPEND="${RDEPEND}" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-libpng14.patch \ - "${FILESDIR}"/${P}-maxcolors.patch - - # Try libpng14 first, then fallback to plain libpng - sed -i -e 's:png12:png14:' configure.ac || die - - eautoconf - find . -type f -print0 | xargs -0 touch -r configure -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with fontconfig) \ - $(use_with png) \ - $(use_with truetype freetype) \ - $(use_with jpeg) \ - $(use_with xpm) -} - -src_install() { - emake DESTDIR="${D}" install || die - dodoc INSTALL README* - dohtml -r ./ - use static-libs || rm -f "${D}"/usr/lib*/libgd.la -} |