blob: ecf68baaf185e6e80d878b2ffa5e96c384728de2 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/newsboat/newsboat.git"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="https://newsboat.org/releases/${PV}/${P}.tar.xz"
fi
inherit toolchain-funcs
DESCRIPTION="An RSS/Atom feed reader for text terminals"
HOMEPAGE="https://newsboat.org/ https://github.com/newsboat/newsboat"
LICENSE="MIT"
SLOT="0"
IUSE="test"
RDEPEND="
>=dev-db/sqlite-3.5:3
>=dev-libs/stfl-0.21
>=net-misc/curl-7.18.0
>=dev-libs/json-c-0.11:=
dev-libs/libxml2
sys-libs/ncurses:0=[unicode]
"
DEPEND="${RDEPEND}
app-text/asciidoc
virtual/pkgconfig
sys-devel/gettext
test? ( >=dev-cpp/catch-2 )
"
PATCHES=(
"${FILESDIR}"/${P}-flags.patch
)
src_prepare() {
default
# use system catch
sed -i 's#"3rd-party/catch.hpp"#<catch/catch.hpp>#' test/*.cpp || die
rm 3rd-party/catch.hpp || die
}
src_configure() {
./config.sh || die
}
src_compile() {
# update object build deps to use system catch
echo > mk/mk.deps || die
emake depslist
emake prefix="/usr" CXX="$(tc-getCXX)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)"
}
src_test() {
# tests require UTF-8 locale
emake test
# Tests fail if in ${S} rather than in ${S}/test
cd "${S}"/test || die
./test || die
}
src_install() {
emake DESTDIR="${D}" prefix="/usr" docdir="/usr/share/doc/${PF}" install
dodoc CHANGELOG.md README.md TODO
}
|