diff options
author | Eray Aslan <eras@gentoo.org> | 2017-06-23 12:14:44 +0300 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2017-06-23 12:14:44 +0300 |
commit | 6e0a8ece544373196587ff3e159687428a2b4ee9 (patch) | |
tree | 08f5088d8a7d1cc447334c3e2419bf43c579d88a /mail-client/cone/cone-0.95.ebuild | |
parent | net-misc/hotot: amd64 stable wrt bug #608606 (diff) | |
download | gentoo-6e0a8ece544373196587ff3e159687428a2b4ee9.tar.gz gentoo-6e0a8ece544373196587ff3e159687428a2b4ee9.tar.bz2 gentoo-6e0a8ece544373196587ff3e159687428a2b4ee9.zip |
mail-client/cone: bump to 0.95
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'mail-client/cone/cone-0.95.ebuild')
-rw-r--r-- | mail-client/cone/cone-0.95.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/mail-client/cone/cone-0.95.ebuild b/mail-client/cone/cone-0.95.ebuild new file mode 100644 index 000000000000..6cd1e1d5ba54 --- /dev/null +++ b/mail-client/cone/cone-0.95.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit eutils autotools + +DESCRIPTION="CONE: COnsole News reader and Emailer" +HOMEPAGE="http://www.courier-mta.org/cone/" +SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="crypt fam gnutls idn ipv6 ldap" + +RDEPEND=">=dev-libs/openssl-0.9.6:* + dev-libs/libxml2 + sys-libs/ncurses:= + >=net-libs/courier-unicode-1.2 + app-text/aspell + crypt? ( >=app-crypt/gnupg-1.0.4 ) + fam? ( virtual/fam ) + gnutls? ( net-libs/gnutls ) + idn? ( net-dns/libidn ) + ipv6? ( net-dns/libidn ) + ldap? ( net-nds/openldap )" +DEPEND="${RDEPEND} + dev-lang/perl" + +src_prepare() { + # move local macro to m4 and run eautoreconf + mkdir "${S}/m4" + sed -n -e '/# AC_PROG_SYSCONFTOOL/,+33 p' "${S}"/aclocal.m4 > \ + m4/sysconftool.m4 || die + sed -i -e '/^SUBDIRS/i ACLOCAL_AMFLAGS = -I m4' "${S}"/Makefile.am || die + eautoreconf +} + +src_configure() { + econf \ + --with-spellcheck=aspell \ + $(use_with ldap ldapaddressbook) \ + $(use_with gnutls) \ + $(use_with idn libidn) \ + $(use_with ipv6) +} + +src_install() { + default + emake DESTDIR="${D}" install-configure +} |