blob: f519d9451a623313a3e1d13377e26f4425306321 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/spampd/spampd-2.11-r1.ebuild,v 1.1 2003/11/20 10:21:34 mkennedy Exp $
DESCRIPTION="spampd is a program used within an e-mail delivery system to scan messages for possible Unsolicited Commercial E-mail content."
HOMEPAGE="http://www.worlddesign.com/index.cfm/rd/mta/spampd.htm"
SRC_URI="mirrors://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl
dev-perl/net-server
dev-perl/Mail-SpamAssassin"
S=${WORKDIR}/${P}
src_install() {
dosbin spampd
dodoc COPYING README.Gentoo changelog.txt spampd-rh-rc-script
dohtml spampd.html
exeinto /etc/init.d/
newexe ${FILESDIR}/init spampd
insinto /etc/conf.d
newins ${FILESDIR}/conf spampd
}
|