From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1107847-garchives=archives.gentoo.org@lists.gentoo.org> 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 4C44E138334 for <garchives@archives.gentoo.org>; Wed, 28 Aug 2019 08:19:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 59011E0864; Wed, 28 Aug 2019 08:19:53 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60664E0857 for <gentoo-commits@lists.gentoo.org>; Wed, 28 Aug 2019 08:19:51 +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 E05C034A4CA for <gentoo-commits@lists.gentoo.org>; Wed, 28 Aug 2019 08:19:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2DEAF779 for <gentoo-commits@lists.gentoo.org>; Wed, 28 Aug 2019 08:19:49 +0000 (UTC) From: "David Seifert" <soap@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" <soap@gentoo.org> Message-ID: <1566980323.41f2a2f94fb9a6f8c259dc59c356f51ee904fe1b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/dcraw/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/dcraw/dcraw-9.28.0-r1.ebuild X-VCS-Directories: media-gfx/dcraw/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 41f2a2f94fb9a6f8c259dc59c356f51ee904fe1b X-VCS-Branch: master Date: Wed, 28 Aug 2019 08:19:49 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 60357db0-80e1-4afc-bf02-7d9ab4a73925 X-Archives-Hash: a1998fab0273d0566cb4b0d13a135489 commit: 41f2a2f94fb9a6f8c259dc59c356f51ee904fe1b Author: David Seifert <soap <AT> gentoo <DOT> org> AuthorDate: Wed Aug 28 08:18:43 2019 +0000 Commit: David Seifert <soap <AT> gentoo <DOT> org> CommitDate: Wed Aug 28 08:18:43 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41f2a2f9 media-gfx/dcraw: [QA] Remove media-libs/jasper dep Bug: https://bugs.gentoo.org/689784 Package-Manager: Portage-2.3.68, Repoman-2.3.16 Signed-off-by: David Seifert <soap <AT> gentoo.org> media-gfx/dcraw/dcraw-9.28.0-r1.ebuild | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/media-gfx/dcraw/dcraw-9.28.0-r1.ebuild b/media-gfx/dcraw/dcraw-9.28.0-r1.ebuild index 0ec0faab0d9..6f0ec1521e6 100644 --- a/media-gfx/dcraw/dcraw-9.28.0-r1.ebuild +++ b/media-gfx/dcraw/dcraw-9.28.0-r1.ebuild @@ -14,12 +14,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-solaris" LANGS=" ca cs de da eo es fr hu it nl pl pt ru sv zh_CN zh_TW" -IUSE="nls gimp jpeg jpeg2k lcms" +IUSE="nls gimp jpeg lcms" COMMON_DEPEND=" jpeg? ( virtual/jpeg:0 ) lcms? ( media-libs/lcms:2 ) - jpeg2k? ( media-libs/jasper:= ) gimp? ( media-gfx/gimp ) " DEPEND="${COMMON_DEPEND}" @@ -61,12 +60,11 @@ src_prepare() { } src_compile() { - local ECFLAGS="-O2" # Without optimisation build fails + local ECFLAGS="-O2 -DNO_JASPER=yes" # Without optimisation build fails local ELIBS="-lm" use lcms && ELIBS="-llcms2 ${ELIBS}" || ECFLAGS+=" -DNO_LCMS=yes" use jpeg && ELIBS="-ljpeg ${ELIBS}" || ECFLAGS+=" -DNO_JPEG=yes" - use jpeg2k && ELIBS="-ljasper ${ELIBS}" || ECFLAGS+=" -DNO_JASPER=yes" use nls && ECFLAGS+=" -DLOCALEDIR=\"/usr/share/locale/\"" run_build $(tc-getCC) ${ECFLAGS} ${CFLAGS} ${LDFLAGS} -o dcraw dcraw.c ${ELIBS}