blob: dc67c722c9f834caae08c4cb7155fefab8d92eb9 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/smtptools/smtptools-0.2.3.ebuild,v 1.2 2004/12/13 23:24:16 ticho Exp $
DESCRIPTION="A collection of tools to send or receive mails with SMTP"
SRC_URI="ftp://ftp.ohse.de/uwe/releases/${P}.tar.gz"
HOMEPAGE="http://www.ohse.de/uwe/software/${PN}.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc"
src_compile() {
econf || die "configure failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die "Installer failed"
dodoc AUTHORS COPYING README README.cvs README.smtpblast \
README.tomaildir README.usmtpd TODO
}
|