You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
1.9 KiB
79 lines
1.9 KiB
7 years ago
|
# Copyright 1999-2018 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
|
||
|
EAPI=6
|
||
|
|
||
|
inherit cmake-utils pax-utils user systemd
|
||
|
|
||
|
DESCRIPTION="Rapid spam filtering system"
|
||
|
SRC_URI="https://github.com/vstakhov/rspamd/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||
|
HOMEPAGE="https://github.com/vstakhov/rspamd"
|
||
|
|
||
|
LICENSE="Apache-2.0"
|
||
|
SLOT="0"
|
||
|
KEYWORDS="~amd64 ~x86"
|
||
|
IUSE="cpu_flags_x86_ssse3 fann gd jemalloc +jit libressl pcre2 +torch"
|
||
|
REQUIRED_USE="torch? ( jit )"
|
||
|
|
||
|
RDEPEND="!libressl? ( dev-libs/openssl:0=[-bindist] )
|
||
|
libressl? ( dev-libs/libressl:0= )
|
||
|
fann? ( sci-mathematics/fann )
|
||
|
pcre2? ( dev-libs/libpcre2[jit=] )
|
||
|
!pcre2? ( dev-libs/libpcre[jit=] )
|
||
|
jit? ( dev-lang/luajit:2 )
|
||
|
jemalloc? ( dev-libs/jemalloc )
|
||
|
dev-libs/libevent
|
||
|
dev-db/sqlite:3
|
||
|
dev-libs/glib:2
|
||
|
<dev-util/ragel-7.0
|
||
|
sys-apps/file
|
||
|
gd? ( media-libs/gd[jpeg] )
|
||
|
dev-libs/icu
|
||
|
cpu_flags_x86_ssse3? ( dev-libs/hyperscan )"
|
||
|
DEPEND="dev-util/ragel
|
||
|
${RDEPEND}"
|
||
|
|
||
|
QA_MULTILIB_PATHS="usr/lib/rspamd/.*"
|
||
|
|
||
|
pkg_setup() {
|
||
|
enewgroup rspamd
|
||
|
enewuser rspamd -1 -1 /var/lib/rspamd rspamd
|
||
|
}
|
||
|
|
||
|
src_configure() {
|
||
|
local mycmakeargs=(
|
||
|
-DCONFDIR=/etc/rspamd
|
||
|
-DRUNDIR=/var/run/rspamd
|
||
|
-DDBDIR=/var/lib/rspamd
|
||
|
-DLOGDIR=/var/log/rspamd
|
||
|
-DENABLE_LUAJIT=$(usex jit ON OFF)
|
||
|
-DENABLE_FANN=$(usex fann ON OFF)
|
||
|
-DENABLE_GD=$(usex gd ON OFF)
|
||
|
-DENABLE_PCRE2=$(usex pcre2 ON OFF)
|
||
|
-DENABLE_JEMALLOC=$(usex jemalloc ON OFF)
|
||
|
-DENABLE_HYPERSCAN=$(usex cpu_flags_x86_ssse3 ON OFF)
|
||
|
-DENABLE_TORCH=$(usex torch ON OFF)
|
||
|
)
|
||
|
cmake-utils_src_configure
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
cmake-utils_src_install
|
||
|
newinitd "${FILESDIR}/rspamd.init-r5" rspamd
|
||
|
|
||
|
# Remove mprotect for JIT support
|
||
|
if use jit; then
|
||
|
pax-mark m "${ED}"/usr/bin/rspamd-* "${ED}"/usr/bin/rspamadm-* || die
|
||
|
fi
|
||
|
|
||
|
dodir /var/lib/rspamd
|
||
|
dodir /var/log/rspamd
|
||
|
|
||
|
fowners rspamd:rspamd /var/lib/rspamd /var/log/rspamd
|
||
|
|
||
|
insinto /etc/logrotate.d
|
||
|
newins "${FILESDIR}/rspamd.logrotate" rspamd
|
||
|
|
||
|
systemd_newunit rspamd.service rspamd.service
|
||
|
}
|