Gentoo Archives: gentoo-commits

From: Dirkjan Ochtman <djc@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/rspamd/
Date: Tue, 03 Jan 2017 15:09:34
Message-Id: 1483456159.073fef1eab203c875e835b929ef36520189f4125.djc@gentoo
1 commit: 073fef1eab203c875e835b929ef36520189f4125
2 Author: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 3 15:08:31 2017 +0000
4 Commit: Dirkjan Ochtman <djc <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 3 15:09:19 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=073fef1e
7
8 mail-filter/rspamd: add gd dependency for 9999 version (fixes bug 601856)
9
10 Package-Manager: Portage-2.3.0, Repoman-2.3.1
11
12 mail-filter/rspamd/rspamd-9999.ebuild | 8 +++++---
13 1 file changed, 5 insertions(+), 3 deletions(-)
14
15 diff --git a/mail-filter/rspamd/rspamd-9999.ebuild b/mail-filter/rspamd/rspamd-9999.ebuild
16 index 97b9652..109bc72 100644
17 --- a/mail-filter/rspamd/rspamd-9999.ebuild
18 +++ b/mail-filter/rspamd/rspamd-9999.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2016 Gentoo Foundation
21 +# Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23 # $Id$
24
25 @@ -13,7 +13,7 @@ EGIT_REPO_URI="https://github.com/vstakhov/rspamd.git"
26 LICENSE="Apache-2.0"
27 SLOT="0"
28 KEYWORDS=""
29 -IUSE="fann +jit libressl"
30 +IUSE="fann +gd +jit libressl"
31
32 RDEPEND="!libressl? ( dev-libs/openssl:0[-bindist] )
33 libressl? ( dev-libs/libressl:0 )
34 @@ -32,7 +32,8 @@ RDEPEND="!libressl? ( dev-libs/openssl:0[-bindist] )
35 dev-libs/gmime
36 dev-util/ragel
37 sys-apps/file
38 - virtual/libiconv"
39 + virtual/libiconv
40 + gd? ( media-libs/gd[jpeg] )"
41 DEPEND="dev-util/ragel
42 ${RDEPEND}"
43
44 @@ -49,6 +50,7 @@ src_configure() {
45 -DLOGDIR=/var/log/rspamd
46 -DENABLE_LUAJIT=$(usex jit ON OFF)
47 -DENABLE_FANN=$(usex fann ON OFF)
48 + -DENABLE_GD=$(usex gd ON OFF)
49 )
50 cmake-utils_src_configure
51 }