diff options
author | 2016-07-22 01:54:14 -0400 | |
---|---|---|
committer | 2016-07-22 02:04:38 -0400 | |
commit | c10300df297805e5b97a3438d03575cb230b3ee0 (patch) | |
tree | e8a796bec733f804ab230a86ccc35868814d4d10 /media-libs/gd/gd-2.2.3.ebuild | |
parent | media-libs/gd: drop old <2.2.2 versions (diff) | |
download | gentoo-c10300df297805e5b97a3438d03575cb230b3ee0.tar.gz gentoo-c10300df297805e5b97a3438d03575cb230b3ee0.tar.bz2 gentoo-c10300df297805e5b97a3438d03575cb230b3ee0.zip |
media-libs/gd: version bump to 2.2.3
Diffstat (limited to 'media-libs/gd/gd-2.2.3.ebuild')
-rw-r--r-- | media-libs/gd/gd-2.2.3.ebuild | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/media-libs/gd/gd-2.2.3.ebuild b/media-libs/gd/gd-2.2.3.ebuild new file mode 100644 index 000000000000..7da51bbabe2b --- /dev/null +++ b/media-libs/gd/gd-2.2.3.ebuild @@ -0,0 +1,61 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit eutils libtool multilib-minimal + +DESCRIPTION="A graphics library for fast image creation" +HOMEPAGE="http://libgd.org/ http://www.boutell.com/gd/" +SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz" + +LICENSE="gd IJG HPND BSD" +SLOT="2/3" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib" + +# fontconfig has prefixed font paths, details see bug #518970 +REQUIRED_USE="prefix? ( fontconfig )" + +RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] ) + jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] ) + png? ( >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}] ) + tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] ) + truetype? ( >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] ) + webp? ( media-libs/libwebp[${MULTILIB_USEDEP}] ) + xpm? ( >=x11-libs/libXpm-3.5.10-r1[${MULTILIB_USEDEP}] >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}] ) + zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )" +DEPEND="${RDEPEND} + >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]" + +S="${WORKDIR}/lib${P}" + +src_prepare() { + default + elibtoolize # for shared library on Solaris +} + +multilib_src_configure() { + # we aren't actually {en,dis}abling X here ... the configure + # script uses it just to add explicit -I/-L paths which we + # don't care about on Gentoo systems. + ECONF_SOURCE=${S} \ + econf \ + --disable-werror \ + --without-x \ + --without-liq \ + $(use_enable static-libs static) \ + $(use_with fontconfig) \ + $(use_with png) \ + $(use_with tiff) \ + $(use_with truetype freetype) \ + $(use_with jpeg) \ + $(use_with webp) \ + $(use_with xpm) \ + $(use_with zlib) +} + +multilib_src_install_all() { + dodoc NEWS README.md + prune_libtool_files +} |