23 lines
690 B
Bash
23 lines
690 B
Bash
# Copyright 1999-2009 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-mail/sendEmail/sendEmail-1.55.ebuild,v 1.5 2009/09/12 04:43:24 mrness Exp $
|
|
|
|
DESCRIPTION="Command line based, SMTP email agent"
|
|
HOMEPAGE="http://caspian.dotconf.net/menu/Software/SendEmail/"
|
|
SRC_URI="http://caspian.dotconf.net/menu/Software/SendEmail/${PN}-v${PV}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc x86"
|
|
IUSE="ssl"
|
|
|
|
DEPEND=""
|
|
RDEPEND="dev-lang/perl
|
|
ssl? ( dev-perl/IO-Socket-SSL )"
|
|
|
|
S="${WORKDIR}/${PN}-v${PV}"
|
|
|
|
src_install() {
|
|
dobin sendEmail || die "failed to install sendEmail script"
|
|
dodoc CHANGELOG README TODO
|
|
}
|