mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
46 lines
815 B
Bash
46 lines
815 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=RJBS
|
|
DIST_VERSION=3.033
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Low-calorie MIME generator"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ppc64 x86"
|
|
IUSE="minimal"
|
|
|
|
PATCHES=( "${FILESDIR}/3.033-makefilepl.patch" )
|
|
|
|
PERL_RM_FILES=(
|
|
"t/pod.t"
|
|
"t/pod-coverage.t"
|
|
)
|
|
|
|
# MIME::QuotedPrint -> perl-MIME-Base64
|
|
# Mail::Address -> MailTools
|
|
RDEPEND="
|
|
!minimal? (
|
|
virtual/perl-MIME-Base64
|
|
>=dev-perl/MIME-Types-1.280.0
|
|
>=dev-perl/MailTools-1.620.0
|
|
)
|
|
dev-perl/Email-Date-Format
|
|
virtual/perl-File-Spec
|
|
"
|
|
BDEPEND="${RDEPEND}
|
|
virtual/perl-ExtUtils-MakeMaker
|
|
"
|
|
|
|
# Race condition in "testout" directory creation
|
|
DIST_TEST="do"
|
|
|
|
src_install() {
|
|
perl-module_src_install
|
|
insinto /usr/share/${PN}
|
|
doins -r contrib
|
|
}
|