blob: f968453c2e6cd358168b7f55d861bd3a5433fe7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
MY_P="${P}a"
DESCRIPTION="A s-lang based newsreader"
HOMEPAGE="
https://slrn.sourceforge.net/
https://github.com/jedsoft/slrn
"
SRC_URI="https://jedsoft.org/releases/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
IUSE="canlock nls selinux ssl uudeview"
RDEPEND="app-arch/sharutils
>=sys-libs/slang-2.2.3
virtual/mta
canlock? ( net-libs/canlock:=[legacy(+)] )
ssl? (
dev-libs/openssl:0=
)
uudeview? ( dev-libs/uulib )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
RDEPEND+=" selinux? ( sec-policy/selinux-slrnpull )"
PATCHES=(
"${FILESDIR}"/${PN}-1.0.2-make.patch
"${FILESDIR}"/${P}-configure.patch
)
src_configure() {
econf \
--with-docdir="${EPREFIX}"/usr/share/doc/${PF} \
--with-slrnpull \
$(use_with canlock canlock /usr) \
$(use_enable nls) \
$(use_with ssl) \
$(use_with uudeview uu)
}
|