summaryrefslogtreecommitdiff
blob: 852ac02bb8e358cda473122cad8cc01b40586af7 (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
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-mta/nbsmtp/nbsmtp-0.92.ebuild,v 1.1 2004/05/31 06:08:37 g2boojum Exp $

DESCRIPTION="The No-Brainer SMTP"
SRC_URI="http://www.gentoo-es.org/~ferdy/${P}.tar.bz2"
HOMEPAGE="http://nbsmtp.ferdyx.org"

SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~hppa"
LICENSE="GPL-2"
IUSE="ssl"

DEPEND="virtual/glibc
	ssl? ( dev-libs/openssl )"

src_compile() {
	myconf="$(use_enable ssl)"
	econf || die "Configure failed"
	emake || die "Make failed"
}

src_install() {
	dobin nbsmtp
	dodoc INSTALL DOCS COPYING
}