From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8399B138262 for ; Fri, 20 May 2016 08:36:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7AC0E06CC; Fri, 20 May 2016 08:36:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C8E3E06CC for ; Fri, 20 May 2016 08:36:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id AD64E340B46 for ; Fri, 20 May 2016 08:36:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCD1A332 for ; Fri, 20 May 2016 08:36:39 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1463733396.c178047c87437a3205df2ac72cf5924584c990b0.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/gd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/gd/gd-2.2.0.ebuild X-VCS-Directories: media-libs/gd/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c178047c87437a3205df2ac72cf5924584c990b0 X-VCS-Branch: master Date: Fri, 20 May 2016 08:36:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 88117e76-0774-45e7-88f0-e77ac58bcd9b X-Archives-Hash: c612bb3b78edf14261e4261d7868fae0 commit: c178047c87437a3205df2ac72cf5924584c990b0 Author: Lars Wendler gentoo org> AuthorDate: Fri May 20 08:33:44 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Fri May 20 08:36:36 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c178047c media-libs/gd: Fixed SRC_URI (bug #583548) and EAPI-6 bump. Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> media-libs/gd/gd-2.2.0.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/media-libs/gd/gd-2.2.0.ebuild b/media-libs/gd/gd-2.2.0.ebuild index 3a697e3..fb7d126 100644 --- a/media-libs/gd/gd-2.2.0.ebuild +++ b/media-libs/gd/gd-2.2.0.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2016 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 -inherit libtool multilib-minimal +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://bitbucket.org/libgd/gd-libgd/downloads/lib${P}.tar.xz" +SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz" LICENSE="gd IJG HPND BSD" SLOT="2/3" @@ -31,6 +31,7 @@ DEPEND="${RDEPEND} S="${WORKDIR}/lib${P}" src_prepare() { + default elibtoolize # for shared library on Solaris }