summaryrefslogtreecommitdiff
blob: 71245ad24fa1db24f103e39eafe7ba602639fd74 (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-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=""

DEPEND="dev-libs/openssl"
RDEPEND="${DEPEND}"

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
}