summaryrefslogtreecommitdiff
blob: 0c72e2da8932f57f3062324dadd87118a118fdc8 (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
41
42
43
44
45
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit eutils

DESCRIPTION="fetch, filter and deliver mail"
HOMEPAGE="http://fdm.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE="pcre tdb"

DEPEND="dev-libs/openssl
	pcre? ( dev-libs/libpcre )
	tdb? ( dev-libs/tdb )"
RDEPEND="${DEPEND}"

src_compile() {
	if use tdb; then
		vars="DB=1"
	fi

	if use pcre; then
		vars="$vars PCRE=1"
	fi

	emake $vars
}

src_install() {
	dobin fdm || die "installing binary failed"
	doman fdm.1 fdm.conf.5 || die "Installing man pages failed"

	dodoc CHANGES MANUAL README TODO || die "Installing documentation failed"

	docinto examples
	dodoc examples/* || die "Installing documentation failed"
}

pkg_postinst() {
	enewuser _fdm
}