From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C1543139694 for ; Sat, 15 Apr 2017 15:11:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9726E0BF6; Sat, 15 Apr 2017 15:11:39 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A708BE0BF6 for ; Sat, 15 Apr 2017 15:11:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4B52234162D for ; Sat, 15 Apr 2017 15:11:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82FC67410 for ; Sat, 15 Apr 2017 15:11:35 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1492269078.0d0592550d27c8d666bc9e8abf22c84f49ec9386.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/lcms/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/lcms/lcms-2.8-r2.ebuild X-VCS-Directories: media-libs/lcms/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 0d0592550d27c8d666bc9e8abf22c84f49ec9386 X-VCS-Branch: master Date: Sat, 15 Apr 2017 15:11:35 +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: 70fe6758-ff17-414d-b676-d02819d7ba9c X-Archives-Hash: 5f6240a5aed4cd5fe69bfc67b61d9683 commit: 0d0592550d27c8d666bc9e8abf22c84f49ec9386 Author: i.Dark_Templar dark-templar-archives net> AuthorDate: Sun Apr 2 12:46:27 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Apr 15 15:11:18 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d059255 media-libs/lcms: Fix USE=static-libs Closes: https://github.com/gentoo/gentoo/pull/4344 media-libs/lcms/lcms-2.8-r2.ebuild | 51 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/media-libs/lcms/lcms-2.8-r2.ebuild b/media-libs/lcms/lcms-2.8-r2.ebuild new file mode 100644 index 00000000000..bca90ecc304 --- /dev/null +++ b/media-libs/lcms/lcms-2.8-r2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +AUTOTOOLS_PRUNE_LIBTOOL_FILES="modules" +inherit eutils multilib-minimal + +DESCRIPTION="A lightweight, speed optimized color management engine" +HOMEPAGE="http://www.littlecms.com/" +SRC_URI="mirror://sourceforge/${PN}/lcms2-${PV}.tar.gz" + +LICENSE="MIT" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris ~x86-solaris" +IUSE="doc jpeg static-libs +threads test tiff zlib" + +RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) + tiff? ( >=media-libs/tiff-4.0.3-r6:0=[${MULTILIB_USEDEP}] ) + zlib? ( >=sys-libs/zlib-1.2.8-r1:=[${MULTILIB_USEDEP}] ) + abi_x86_32? ( + !<=app-emulation/emul-linux-x86-baselibs-20130224-r10 + !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] + )" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/lcms2-${PV} + +PATCHES=( + "${FILESDIR}/${P}-CVE-2016-10165.patch" +) + +multilib_src_configure() { + local myeconfargs=( + $(use_with jpeg) + $(use_enable static-libs static) + $(use_with tiff) + $(use_with zlib) + $(use_with threads) + ) + ECONF_SOURCE="${S}" \ + econf ${myeconfargs[@]} +} + +multilib_src_install_all() { + find "${ED}" -name "*.la" -delete || die + + if use doc; then + docinto pdf + dodoc doc/*.pdf + fi +}