mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-23 23:48:22 +02:00
Closes: https://bugs.gentoo.org/913073 Signed-off-by: Bernard Cafarelli <voyageur@gentoo.org>
35 lines
714 B
Bash
35 lines
714 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit gnustep-2
|
|
|
|
MY_P=${P/gnum/GNUM}
|
|
|
|
DESCRIPTION="Fully featured mail application for GNUstep"
|
|
HOMEPAGE="https://www.nongnu.org/gnustep-nonfsf/gnumail/"
|
|
SRC_URI="mirror://nongnu/gnustep-nonfsf/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
KEYWORDS="amd64 ppc x86"
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
|
|
IUSE="crypt"
|
|
|
|
DEPEND=">=gnustep-base/gnustep-gui-0.11.0
|
|
=gnustep-libs/pantomime-1.4*
|
|
gnustep-apps/addresses"
|
|
RDEPEND="crypt? ( app-crypt/gnupg )"
|
|
|
|
src_prepare() {
|
|
use crypt || sed -i -e 's|Bundles/PGP||' GNUmakefile || die
|
|
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
gnustep-base_src_install
|
|
dodoc "${S}"/Documentation/*
|
|
}
|