mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
34 lines
773 B
Bash
34 lines
773 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_P="${PN}-v${PV}"
|
|
DESCRIPTION="Command line based, SMTP email agent"
|
|
HOMEPAGE="http://caspian.dotconf.net/menu/Software/SendEmail/"
|
|
SRC_URI="http://caspian.dotconf.net/menu/Software/SendEmail/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc x86"
|
|
IUSE="ssl"
|
|
|
|
RDEPEND="
|
|
dev-lang/perl
|
|
ssl? ( dev-perl/IO-Socket-SSL )
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PV}-overzealous-version-check.patch
|
|
"${FILESDIR}"/${PV}-overzealous-verify-mode-check.patch
|
|
"${FILESDIR}"/${PV}-openssl-1.1.patch
|
|
"${FILESDIR}"/${PV}-openssl-3.patch
|
|
"${FILESDIR}"/${PV}-verify-mode.patch
|
|
)
|
|
|
|
src_install() {
|
|
dobin sendEmail
|
|
dodoc CHANGELOG README TODO
|
|
}
|