mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-07 05:34:45 +02:00
* Crank up TLSv1 -> TLSv3 to support newer OpenSSL (bug #954329, similar to previous bug #698322) * Verify TLS certs (https://bugs.debian.org/1041517) Bug: https://bugs.debian.org/1041517 Bug: https://bugs.gentoo.org/698322 Closes: https://bugs.gentoo.org/954329 Signed-off-by: Sam James <sam@gentoo.org>
33 lines
775 B
Bash
33 lines
775 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
|
|
}
|