diff options
author | Sascha Lucas <sascha_lucas@web.de> | 2008-11-16 11:15:06 +0100 |
---|---|---|
committer | Sascha Lucas <sascha_lucas@web.de> | 2008-11-16 11:15:06 +0100 |
commit | c79c5d0d9dd6a45e62de2d72fdad5e145a75a7d0 (patch) | |
tree | 94d844fc78096d7ed2e59f7779708a5e978882f9 | |
parent | Revert "added mail-client/topal; fixed various issues with" (diff) | |
download | net-mail-c79c5d0d9dd6a45e62de2d72fdad5e145a75a7d0.tar.gz net-mail-c79c5d0d9dd6a45e62de2d72fdad5e145a75a7d0.tar.bz2 net-mail-c79c5d0d9dd6a45e62de2d72fdad5e145a75a7d0.zip |
added mail-client/topal and alpine/metadata.xml
-rw-r--r-- | mail-client/alpine/metadata.xml | 16 | ||||
-rw-r--r-- | mail-client/topal/Manifest | 2 | ||||
-rw-r--r-- | mail-client/topal/topal-64.ebuild | 25 |
3 files changed, 43 insertions, 0 deletions
diff --git a/mail-client/alpine/metadata.xml b/mail-client/alpine/metadata.xml new file mode 100644 index 0000000..35e8ae2 --- /dev/null +++ b/mail-client/alpine/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<use> + <flag name='chappa'>enhance alpine by appling Eduardo Chappa's + patches</flag> + <flag name='onlyalpine'>installs only the alpine binary, so it does + not collied with <pkg>app-editors/pico</pkg> and/or + <pkg>mail-client/pine</pkg></flag> + <flag name='passfile'>Adds support for caching passwords into a file + between sessions</flag> + <flag name='smime'>Enable support for S/MIME</flag> + <flag name='topal'>Enable support for <pkg>mail-client/topal</pkg></flag> +</use> +</pkgmetadata> diff --git a/mail-client/topal/Manifest b/mail-client/topal/Manifest new file mode 100644 index 0000000..36173d5 --- /dev/null +++ b/mail-client/topal/Manifest @@ -0,0 +1,2 @@ +DIST topal-package-64.tgz 170401 RMD160 69e5bdd0b2956fc4ead3815304d7e4def4f99292 SHA1 e2939bcff099e8d32e30dc1eef025f9b29b1053a SHA256 e44b879a8e8d96d5f0cad9e2b68056ba05fe4267a6f4d2d50325164be3f48cd5 +EBUILD topal-64.ebuild 634 RMD160 2bd2e0d527982f915118603e07f70b30fb8d8cf6 SHA1 012c665b7e2b35ea7d2b3ba1de08255658b9b5f9 SHA256 1d5fb2561ee46ac9dc5bb55ee94befef36f11d69616082fc1a347319bf4c65d7 diff --git a/mail-client/topal/topal-64.ebuild b/mail-client/topal/topal-64.ebuild new file mode 100644 index 0000000..7d45e24 --- /dev/null +++ b/mail-client/topal/topal-64.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit eutils +DESCRIPTION="Topal is a \'glue\' program that links GnuPG and Pine/Alpine." +HOMEPAGE="http://homepage.ntlworld.com/phil.brooke/topal/" +SRC_URI="http://homepage.ntlworld.com/phil.brooke/topal/rel-${PV}/topal-package-${PV}.tgz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND=">=virtual/gnat-4.2" +RDEPEND=">=app-crypt/gnupg-2.0.7-r1 + net-mail/metamail" + +src_compile() { + emake -j1 || die "make failed" +} + +src_install() { + emake install INSTALLPATH="${D}"/usr || die "make install failed" +} + |