| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit flag-o-matic autotools multilib toolchain-funcs git-r3
DESCRIPTION="An easy to use text-based based mail and news client"
HOMEPAGE="https://alpineapp.email/"
EGIT_REPO_URI="https://repo.or.cz/alpine.git"
LICENSE="Apache-2.0"
SLOT="0"
IUSE="doc ipv6 kerberos ldap nls passfile smime spell ssl threads"
DEPEND="sys-libs/pam
>=net-libs/c-client-2007f-r4
sys-libs/ncurses:0
>=dev-libs/openssl-1.0.1c
ldap? ( net-nds/openldap )
kerberos? ( app-crypt/mit-krb5 )
spell? ( app-text/aspell )"
RDEPEND="${DEPEND}
app-misc/mime-types
!<=net-mail/uw-imap-2004g"
src_prepare() {
eautoreconf
default
tc-export CC RANLIB AR
export CC_FOR_BUILD="$(tc-getBUILD_CC)"
}
src_configure() {
myconf="--without-tcl
--with-pthread
--with-system-pinerc="${EPREFIX}"/etc/pine.conf
--with-system-fixed-pinerc="${EPREFIX}"/etc/pine.conf.fixed"
#--disable-debug"
# fixme
# --with-system-mail-directory=DIR?
if use ssl; then
myconf+=" --with-ssl
--with-ssl-include-dir=/usr/include/openssl
--with-ssl-lib-dir=/usr/$(get_libdir)
--with-ssl-certs-dir=/etc/ssl/certs"
else
myconf+="--without-ssl"
fi
econf \
$(use_with ldap) \
$(use_with ssl) \
$(use_with passfile passfile .pinepwd) \
$(use_with kerberos krb5) \
$(use_with threads pthread) \
$(use_with spell interactive-spellcheck /usr/bin/aspell) \
$(use_enable nls) \
$(use_with ipv6) \
$(use_with smime) \
${myconf}
}
src_compile() {
emake -j1 --shuffle=none AR="$(tc-getAR)" c-client
emake AR="$(tc-getAR)"
}
src_install() {
emake DESTDIR="${D}" install
doman doc/man1/*.1
dodoc NOTICE README*
if use doc ; then
dodoc doc/brochure.txt
docinto html/tech-notes
dodoc -r doc/tech-notes/
fi
}
# dohtml -r doc/tech-notes/
sys-libs/pam >=net-libs/c-client-2007f-r4 sys-libs/ncurses:0 >=dev-libs/openssl-1.0.1c ldap? ( net-nds/openldap ) kerberos? ( app-crypt/mit-krb5 ) spell? ( app-text/aspell )
sys-libs/pam >=net-libs/c-client-2007f-r4 sys-libs/ncurses:0 >=dev-libs/openssl-1.0.1c ldap? ( net-nds/openldap ) kerberos? ( app-crypt/mit-krb5 ) spell? ( app-text/aspell ) app-misc/mime-types !<=net-mail/uw-imap-2004g