23 lines
474 B
Bash
23 lines
474 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
MODULE_AUTHOR=AWESTHOLM
|
|
MODULE_VERSION=0.12
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="A SMTP client supporting TLS and AUTH"
|
|
IUSE=""
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="dev-perl/Net-SSLeay
|
|
dev-perl/IO-Socket-SSL
|
|
virtual/perl-MIME-Base64
|
|
dev-perl/Digest-HMAC"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
SRC_TEST="do"
|
|
|
|
PATCHES=( "${FILESDIR}/${PV}-multiple-attachments-fix.patch" )
|