forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Bernard Cafarelli <[email protected]>
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST GNUMail-1.3.0.tar.gz 1499242 BLAKE2B 074b83fd5fc9599ccae8a9f286db77ce4d61db7bbc9c33d1fd86cef818831d05b297c598c776ec0254a379daa8fc73776857ff2578ec2e83835c5525def459f8 SHA512 9b3ccf0a2e086129d8f96cf1de38ceb16033ef4509c3fe15af2afe43c31eaad32d121c0f9cf53f3d86472067d4207736523a125162e632572c7d1aee1fbefd78 | ||
DIST GNUMail-1.4.0.tar.gz 1873175 BLAKE2B c87efb48b30c1d5fa40789d7db3165e1be2c1b9847ed3e71cca28e90fe353ee562709c93ad10a6cb6284338f66f6786286f613a398669d22abbee63da97de1e5 SHA512 c6b8b94462a5d5620586e38b50030ed8dda4a54286e9fa38f68159c54e6c72e8ad470ff63394b8dc2649da63b3164b52ff072298a794622b6e0b32b7e29de991 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
inherit gnustep-2 | ||
|
||
MY_P=${P/gnum/GNUM} | ||
|
||
S=${WORKDIR}/${MY_P} | ||
|
||
DESCRIPTION="A fully featured mail application for GNUstep" | ||
HOMEPAGE="http://www.nongnu.org/gnustep-nonfsf/gnumail/" | ||
SRC_URI="mirror://nongnu/gnustep-nonfsf/${MY_P}.tar.gz" | ||
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/* | ||
} |