blob: 7c203487939e1fa2dd10e2e9ae71b8613fc095f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic
DESCRIPTION="This is p0f version 3 dlfunc library for Exim"
HOMEPAGE="https://dist.epipe.com/exim/"
SRC_URI="https://dist.epipe.com/exim/exim-p0f3-dlfunc-${PV}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="mail-mta/exim[dlfunc]"
RDEPEND=">=net-analyzer/p0f-3.05_beta
${DEPEND}"
S="${WORKDIR}/exim-p0f3-dlfunc-${PV}"
src_configure() {
append-cppflags "-I/usr/include/exim -DDLFUNC_IMPL"
econf
}
src_install() {
default
find "${D}" -name '*.la' -delete || die "Failed to prune libtool files"
}
|