blob: eac4e6562480c0d6e8bb55fd860aea1b1cbb5f74 (
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
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="4"
AUTOTOOLS_AUTORECONF=1
AUTOTOOLS_IN_SOURCE_BUILD=1
inherit eutils autotools-utils
DESCRIPTION="DomainKeys Identified Mail library from Alt-N Inc"
HOMEPAGE="http://libdkim.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
LICENSE="Apache-2.0 yahoo-patent-license-1.2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="dev-libs/openssl
app-arch/unzip"
RDEPEND="!mail-filter/libdkim-exim
dev-libs/openssl"
S="${WORKDIR}/${PN}/src"
src_prepare() {
ecvs_clean
cp "${FILESDIR}"/debianize/* "${S}"
epatch "${FILESDIR}"/patches/*.patch
epatch "${FILESDIR}"/libdkim-extra-options.patch
autotools-utils_src_prepare
}
src_install() {
autotools-utils_src_install
dodoc ../README
}
|