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 4EDE258974 for ; Wed, 20 Jan 2016 20:32:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2409C21C068; Wed, 20 Jan 2016 20:32:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B002A21C068 for ; Wed, 20 Jan 2016 20:32:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 79806340813 for ; Wed, 20 Jan 2016 20:32:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 88E8BCF1 for ; Wed, 20 Jan 2016 20:32:17 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1453321906.90fc13faf6754d1029d12c05cec69cd8495943eb.vapier@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.1.1-r1.ebuild X-VCS-Directories: media-libs/gd/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 90fc13faf6754d1029d12c05cec69cd8495943eb X-VCS-Branch: master Date: Wed, 20 Jan 2016 20:32:17 +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: 07419381-a478-4856-8afe-cbb6df56d5e1 X-Archives-Hash: 3abc1ece51bc5e29dda8d9653fc7d6d3 commit: 90fc13faf6754d1029d12c05cec69cd8495943eb Author: Michael Scholl core-networks de> AuthorDate: Wed Jan 20 20:20:53 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Wed Jan 20 20:31:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fc13fa media-libs/gd: add USE=tiff support #572450 media-libs/gd/gd-2.1.1-r1.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/media-libs/gd/gd-2.1.1-r1.ebuild b/media-libs/gd/gd-2.1.1-r1.ebuild index d124e6d..10d5e5c 100644 --- a/media-libs/gd/gd-2.1.1-r1.ebuild +++ b/media-libs/gd/gd-2.1.1-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://bitbucket.org/libgd/gd-libgd/downloads/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 truetype webp xpm zlib" +IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib" # fontconfig has prefixed font paths, details see bug #518970 REQUIRED_USE="prefix? ( fontconfig )" @@ -21,6 +21,7 @@ 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}] ) @@ -49,6 +50,7 @@ multilib_src_configure() { $(use_enable static-libs static) \ $(use_with fontconfig) \ $(use_with png) \ + $(use_with tiff) \ $(use_with truetype freetype) \ $(use_with jpeg) \ $(use_with webp) \