From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/
Date: Fri, 1 Sep 2017 20:54:44 +0000 (UTC) [thread overview]
Message-ID: <1504299269.102baa282bb124e37febc17d24e9b84767272fc4.polynomial-c@gentoo> (raw)
commit: 102baa282bb124e37febc17d24e9b84767272fc4
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 1 20:42:20 2017 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Fri Sep 1 20:54:29 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=102baa28
media-libs/gd: Bump to version 2.2.5
Package-Manager: Portage-2.3.8, Repoman-2.3.3
media-libs/gd/Manifest | 1 +
media-libs/gd/gd-2.2.5.ebuild | 62 +++++++++++++++++++++++++++++++++++++++++++
2 files changed, 63 insertions(+)
diff --git a/media-libs/gd/Manifest b/media-libs/gd/Manifest
index cc46b94908b..4cc99d4511f 100644
--- a/media-libs/gd/Manifest
+++ b/media-libs/gd/Manifest
@@ -1 +1,2 @@
DIST libgd-2.2.4.tar.xz 2478528 SHA256 137f13a7eb93ce72e32ccd7cebdab6874f8cf7ddf31d3a455a68e016ecd9e4e6 SHA512 07903f322c4f6ab392508b0f60c38ca133699111ea92995dc6cd9379210d598bcb24a46c19657884d9e252f8663d0ee8c89c600e3a382a5ae598198c190f39b5 WHIRLPOOL eb00e684e8db02e649b3e6e2e76e7eff1e7aaa08995d78cef429b2b2053798aa1a44cd5b5eed5d3bc042394e72096d90ccc238ab3759e11fd543c80b697d0d91
+DIST libgd-2.2.5.tar.xz 2594092 SHA256 8c302ccbf467faec732f0741a859eef4ecae22fea2d2ab87467be940842bde51 SHA512 e4598e17a277a75e02255402182cab139cb3f2cffcd68ec05cc10bbeaf6bc7aa39162c3445cd4a7efc1a26b72b9152bbedb187351e3ed099ea51767319997a6b WHIRLPOOL 0ca5f05ebf03ec38caa028862379c3ad78da0a28b933a150b7635135807aa0a7d6bb85f4e9c206dd0ba0d3ce8ef64cc1ba1a3d929f0aad737a6b48d4453e33ef
diff --git a/media-libs/gd/gd-2.2.5.ebuild b/media-libs/gd/gd-2.2.5.ebuild
new file mode 100644
index 00000000000..3db0e012734
--- /dev/null
+++ b/media-libs/gd/gd-2.2.5.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit libtool ltprune 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 ~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.
+ local myeconfargs=(
+ --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)
+ )
+ ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+ dodoc README.md
+ prune_libtool_files
+}
next reply other threads:[~2017-09-01 20:54 UTC|newest]
Thread overview: 139+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-01 20:54 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-12-01 13:44 [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/ Arthur Zamarin
2023-10-27 15:20 Michał Górny
2023-09-28 5:12 Sam James
2023-09-28 4:21 Sam James
2023-09-27 4:58 Sam James
2023-09-27 4:50 Sam James
2023-09-27 4:49 Sam James
2023-09-27 4:49 Sam James
2022-07-29 13:21 Arthur Zamarin
2022-07-16 8:59 Agostino Sarubbo
2022-07-16 8:56 Agostino Sarubbo
2022-07-16 7:17 Arthur Zamarin
2022-07-16 7:17 Arthur Zamarin
2022-07-15 18:51 Arthur Zamarin
2022-07-15 18:46 Arthur Zamarin
2022-07-15 18:46 Arthur Zamarin
2022-05-14 10:30 WANG Xuerui
2021-11-07 23:08 Sam James
2021-09-12 23:57 Sam James
2021-09-12 21:29 Sam James
2021-09-07 3:05 Sam James
2021-09-07 3:03 Sam James
2021-05-23 23:07 Thomas Deutschmann
2021-05-16 20:00 Sam James
2021-04-25 9:32 Sam James
2021-04-25 9:18 Sergei Trofimovich
2021-04-23 13:33 Sam James
2021-04-23 13:33 Sam James
2021-03-11 17:26 Sam James
2021-03-11 17:26 Sam James
2021-03-06 23:05 Sam James
2021-03-03 23:03 Sam James
2021-03-03 18:59 Sam James
2021-03-02 19:08 Sergei Trofimovich
2021-03-02 3:15 Sam James
2021-03-02 1:40 Sam James
2021-03-01 23:45 Sam James
2021-03-01 23:44 Sam James
2021-03-01 23:44 Sam James
2021-03-01 23:42 Sam James
2021-01-30 21:22 Sam James
2021-01-26 17:21 Sam James
2021-01-26 15:44 Sam James
2021-01-26 15:42 Sam James
2020-12-27 17:47 Fabian Groffen
2020-06-25 11:28 Joonas Niilola
2020-05-16 19:47 Sergei Trofimovich
2020-05-14 8:03 Agostino Sarubbo
2020-05-13 21:07 Mart Raudsepp
2020-05-13 17:14 Agostino Sarubbo
2020-05-13 17:12 Agostino Sarubbo
2020-05-13 17:11 Agostino Sarubbo
2020-05-13 14:52 Agostino Sarubbo
2020-05-13 13:18 Agostino Sarubbo
2020-05-13 11:30 Agostino Sarubbo
2019-08-02 0:47 Aaron Bauman
2019-06-05 7:12 Agostino Sarubbo
2019-04-28 13:03 Sergei Trofimovich
2019-04-06 13:39 Mikle Kolyada
2019-04-02 19:20 Sergei Trofimovich
2019-03-16 14:13 Mikle Kolyada
2019-03-15 23:24 Mikle Kolyada
2019-03-14 21:14 Agostino Sarubbo
2019-03-11 16:16 Mart Raudsepp
2019-03-09 20:15 Thomas Deutschmann
2019-03-09 19:18 Thomas Deutschmann
2019-03-09 18:18 Thomas Deutschmann
2019-03-08 19:52 Sergei Trofimovich
2019-03-04 12:33 Lars Wendler
2019-01-18 13:22 Mikle Kolyada
2019-01-18 13:22 Mikle Kolyada
2018-12-30 19:40 Matt Turner
2018-10-14 22:33 Sergei Trofimovich
2018-10-11 12:45 Tobias Klausmann
2018-10-06 16:48 Matt Turner
2018-09-30 22:30 Mart Raudsepp
2018-09-24 18:17 Markus Meier
2018-09-19 19:51 Sergei Trofimovich
2018-09-19 17:35 Thomas Deutschmann
2018-09-19 7:44 Mikle Kolyada
2018-09-14 19:16 Andreas Sturmlechner
2018-06-22 10:15 Mikle Kolyada
2018-05-29 11:58 Mart Raudsepp
2018-04-22 21:11 Aaron Bauman
2018-04-22 19:25 Matt Turner
2018-04-20 19:01 Sergei Trofimovich
2018-04-08 10:55 Markus Meier
2018-03-31 14:17 Tobias Klausmann
2018-03-25 12:45 Sergei Trofimovich
2018-03-24 21:37 Sergei Trofimovich
2018-03-24 21:07 Mikle Kolyada
2017-08-07 6:55 Lars Wendler
2017-08-07 6:55 Lars Wendler
2017-03-13 12:55 Lars Wendler
2017-02-21 11:54 Tobias Klausmann
2017-02-18 14:44 Agostino Sarubbo
2017-02-17 10:56 Agostino Sarubbo
2017-02-12 20:11 Markus Meier
2017-02-12 17:01 Agostino Sarubbo
2017-02-12 15:44 Agostino Sarubbo
2017-02-04 15:21 Agostino Sarubbo
2017-02-01 22:34 Jeroen Roovers
2017-02-01 22:29 Jeroen Roovers
2017-01-30 22:04 Lars Wendler
2016-09-29 13:28 Agostino Sarubbo
2016-09-29 9:35 Agostino Sarubbo
2016-09-29 8:40 Agostino Sarubbo
2016-09-24 19:17 Markus Meier
2016-09-10 12:48 Agostino Sarubbo
2016-09-03 9:23 Jeroen Roovers
2016-09-02 19:15 Tobias Klausmann
2016-07-22 6:05 Mike Frysinger
2016-07-22 6:05 Mike Frysinger
2016-07-08 12:02 Agostino Sarubbo
2016-07-08 7:53 Agostino Sarubbo
2016-07-05 20:46 Markus Meier
2016-07-02 9:05 Jeroen Roovers
2016-07-01 8:30 Agostino Sarubbo
2016-07-01 8:29 Agostino Sarubbo
2016-06-30 8:04 Tobias Klausmann
2016-06-24 8:02 Mike Frysinger
2016-05-20 14:48 Mike Frysinger
2016-05-20 8:36 Lars Wendler
2016-05-20 2:57 Mike Frysinger
2016-03-12 12:32 Markus Meier
2016-02-06 7:03 Jeroen Roovers
2016-02-02 15:48 Tobias Klausmann
2016-01-20 20:32 Mike Frysinger
2016-01-20 20:32 Mike Frysinger
2016-01-11 9:07 Agostino Sarubbo
2016-01-10 10:34 Agostino Sarubbo
2016-01-07 20:20 Markus Meier
2015-12-27 9:59 Mikle Kolyada
2015-12-26 10:36 Agostino Sarubbo
2015-12-17 9:10 Jeroen Roovers
2015-12-16 8:46 Agostino Sarubbo
2015-12-16 8:45 Agostino Sarubbo
2015-12-03 22:40 Michał Górny
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1504299269.102baa282bb124e37febc17d24e9b84767272fc4.polynomial-c@gentoo \
--to=polynomial-c@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox