Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/
Date: Fri, 18 Jan 2019 13:22:43
Message-Id: 1547817753.20ad1d78a036e9766e176e589eccea4b1e4976dc.zlogene@gentoo
1 commit: 20ad1d78a036e9766e176e589eccea4b1e4976dc
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 18 13:22:19 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 18 13:22:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ad1d78
7
8 media-libs/gd: Security cleanup
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 media-libs/gd/gd-2.2.5.ebuild | 62 -------------------------------------------
14 1 file changed, 62 deletions(-)
15
16 diff --git a/media-libs/gd/gd-2.2.5.ebuild b/media-libs/gd/gd-2.2.5.ebuild
17 deleted file mode 100644
18 index d0b3c15fb3b..00000000000
19 --- a/media-libs/gd/gd-2.2.5.ebuild
20 +++ /dev/null
21 @@ -1,62 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -
27 -inherit libtool ltprune multilib-minimal
28 -
29 -DESCRIPTION="A graphics library for fast image creation"
30 -HOMEPAGE="http://libgd.org/ http://www.boutell.com/gd/"
31 -SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz"
32 -
33 -LICENSE="gd IJG HPND BSD"
34 -SLOT="2/3"
35 -KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
36 -IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib"
37 -
38 -# fontconfig has prefixed font paths, details see bug #518970
39 -REQUIRED_USE="prefix? ( fontconfig )"
40 -
41 -RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
42 - jpeg? ( >=virtual/jpeg-0-r2:0=[${MULTILIB_USEDEP}] )
43 - png? ( >=media-libs/libpng-1.6.10:0=[${MULTILIB_USEDEP}] )
44 - tiff? ( media-libs/tiff:0[${MULTILIB_USEDEP}] )
45 - truetype? ( >=media-libs/freetype-2.5.0.1[${MULTILIB_USEDEP}] )
46 - webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
47 - xpm? ( >=x11-libs/libXpm-3.5.10-r1[${MULTILIB_USEDEP}] >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}] )
48 - zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )"
49 -DEPEND="${RDEPEND}
50 - >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]"
51 -
52 -S="${WORKDIR}/lib${P}"
53 -
54 -src_prepare() {
55 - default
56 - elibtoolize # for shared library on Solaris
57 -}
58 -
59 -multilib_src_configure() {
60 - # we aren't actually {en,dis}abling X here ... the configure
61 - # script uses it just to add explicit -I/-L paths which we
62 - # don't care about on Gentoo systems.
63 - local myeconfargs=(
64 - --disable-werror
65 - --without-x
66 - --without-liq
67 - $(use_enable static-libs static)
68 - $(use_with fontconfig)
69 - $(use_with png)
70 - $(use_with tiff)
71 - $(use_with truetype freetype)
72 - $(use_with jpeg)
73 - $(use_with webp)
74 - $(use_with xpm)
75 - $(use_with zlib)
76 - )
77 - ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
78 -}
79 -
80 -multilib_src_install_all() {
81 - dodoc README.md
82 - prune_libtool_files
83 -}