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 81EE7139085 for ; Tue, 3 Jan 2017 15:09:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20BDFE0CAB; Tue, 3 Jan 2017 15:09:32 +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 ED454E0CAB for ; Tue, 3 Jan 2017 15:09:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 219DC340DC7 for ; Tue, 3 Jan 2017 15:09:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B376424E8 for ; Tue, 3 Jan 2017 15:09:29 +0000 (UTC) From: "Dirkjan Ochtman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dirkjan Ochtman" Message-ID: <1483456159.073fef1eab203c875e835b929ef36520189f4125.djc@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/rspamd/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/rspamd/rspamd-9999.ebuild X-VCS-Directories: mail-filter/rspamd/ X-VCS-Committer: djc X-VCS-Committer-Name: Dirkjan Ochtman X-VCS-Revision: 073fef1eab203c875e835b929ef36520189f4125 X-VCS-Branch: master Date: Tue, 3 Jan 2017 15:09:29 +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: f54790c1-4f96-46bc-9a7a-6e856853c7e5 X-Archives-Hash: 9f1984b2d388eeaccd904703acba9b5f commit: 073fef1eab203c875e835b929ef36520189f4125 Author: Dirkjan Ochtman gentoo org> AuthorDate: Tue Jan 3 15:08:31 2017 +0000 Commit: Dirkjan Ochtman gentoo org> CommitDate: Tue Jan 3 15:09:19 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=073fef1e mail-filter/rspamd: add gd dependency for 9999 version (fixes bug 601856) Package-Manager: Portage-2.3.0, Repoman-2.3.1 mail-filter/rspamd/rspamd-9999.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/mail-filter/rspamd/rspamd-9999.ebuild b/mail-filter/rspamd/rspamd-9999.ebuild index 97b9652..109bc72 100644 --- a/mail-filter/rspamd/rspamd-9999.ebuild +++ b/mail-filter/rspamd/rspamd-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -13,7 +13,7 @@ EGIT_REPO_URI="https://github.com/vstakhov/rspamd.git" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="" -IUSE="fann +jit libressl" +IUSE="fann +gd +jit libressl" RDEPEND="!libressl? ( dev-libs/openssl:0[-bindist] ) libressl? ( dev-libs/libressl:0 ) @@ -32,7 +32,8 @@ RDEPEND="!libressl? ( dev-libs/openssl:0[-bindist] ) dev-libs/gmime dev-util/ragel sys-apps/file - virtual/libiconv" + virtual/libiconv + gd? ( media-libs/gd[jpeg] )" DEPEND="dev-util/ragel ${RDEPEND}" @@ -49,6 +50,7 @@ src_configure() { -DLOGDIR=/var/log/rspamd -DENABLE_LUAJIT=$(usex jit ON OFF) -DENABLE_FANN=$(usex fann ON OFF) + -DENABLE_GD=$(usex gd ON OFF) ) cmake-utils_src_configure }