40 lines
964 B
Bash
40 lines
964 B
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-nntp/slrn/slrn-1.0.1.ebuild,v 1.4 2013/07/11 19:04:41 vincent Exp $
|
|
|
|
EAPI=5
|
|
inherit eutils
|
|
|
|
MY_P="${PN}_${PV/_/~}"
|
|
|
|
DESCRIPTION="A s-lang based newsreader"
|
|
HOMEPAGE="http://slrn.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
|
|
IUSE="canlock nls ssl uudeview"
|
|
|
|
RDEPEND="virtual/mta
|
|
app-arch/sharutils
|
|
>=sys-libs/slang-2.1.3
|
|
canlock? ( net-libs/canlock )
|
|
ssl? ( dev-libs/openssl )
|
|
uudeview? ( dev-libs/uulib )"
|
|
DEPEND="${RDEPEND}
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${PN}-1.0.0_pre18-make.patch
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--with-docdir="${EPREFIX}"/usr/share/doc/${PF} \
|
|
--with-slrnpull \
|
|
$(use_with canlock) \
|
|
$(use_with uudeview uu) \
|
|
$(use_enable nls) \
|
|
$(use_with ssl)
|
|
}
|