blob: 54927ae48a0e65594b23c6341f24642a0b54ecc3 (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-mail/smtpclient/smtpclient-1.0.0.ebuild,v 1.2 2003/02/13 14:40:21 vapier Exp $
IUSE=""
DESCRIPTION="Minimal SMTP client"
HOMEPAGE="http://www.engelschall.com/sw/smtpclient/"
SRC_URI="http://www.engelschall.com/sw/smtpclient/distrib/smtpclient-1.0.0.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND="virtual/glibc"
src_compile() {
econf || die "configure failed"
emake || die "parallel make failed"
}
src_install () {
dobin smtpclient
doman smtpclient.1
}
|