diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-04-13 06:32:59 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-04-13 06:32:59 +0000 |
commit | 0fbf54d988341d0b8468473a88cee73480697a1f (patch) | |
tree | e00abcfe75f55c2a0e8bf1a4ee698e5c6c2308aa /media-libs/gd/gd-2.0.35-r3.ebuild | |
parent | clean up patches a bit (diff) | |
download | gentoo-2-0fbf54d988341d0b8468473a88cee73480697a1f.tar.gz gentoo-2-0fbf54d988341d0b8468473a88cee73480697a1f.tar.bz2 gentoo-2-0fbf54d988341d0b8468473a88cee73480697a1f.zip |
Split out USE=zlib logic from USE=png, and add fix from upstream for fontconfig #363367 by genbug.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/gd/gd-2.0.35-r3.ebuild')
-rw-r--r-- | media-libs/gd/gd-2.0.35-r3.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/media-libs/gd/gd-2.0.35-r3.ebuild b/media-libs/gd/gd-2.0.35-r3.ebuild new file mode 100644 index 000000000000..370c5d7ca1ce --- /dev/null +++ b/media-libs/gd/gd-2.0.35-r3.ebuild @@ -0,0 +1,55 @@ +# 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-r3.ebuild,v 1.1 2011/04/13 06:32:59 vapier Exp $ + +EAPI="2" + +inherit autotools eutils + +DESCRIPTION="A graphics library for fast image creation" +HOMEPAGE="http://libgd.org/ http://www.boutell.com/gd/" +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 zlib" + +RDEPEND="fontconfig? ( media-libs/fontconfig ) + jpeg? ( virtual/jpeg ) + png? ( >=media-libs/libpng-1.4 ) + truetype? ( >=media-libs/freetype-2.1.5 ) + xpm? ( x11-libs/libXpm x11-libs/libXt ) + zlib? ( sys-libs/zlib )" +DEPEND="${RDEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-libpng14.patch #305101 + epatch "${FILESDIR}"/${P}-maxcolors.patch #292130 + epatch "${FILESDIR}"/${P}-fontconfig.patch #363367 + + # 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 +} + +usex() { use $1 && echo ${2:-yes} || echo ${3:-no} ; } +src_configure() { + export ac_cv_lib_z_deflate=$(usex zlib) + 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/*/libgd.la +} |