Install this version:
emerge -a =net-news/newsraft-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =net-news/newsraft-9999
Or alternatively:
emerge --autounmask-write -a =net-news/newsraft-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 | 0 |
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs xdg-utils
DESCRIPTION="A lightweight feed reader with ncurses user interface inspired by Newsboat."
HOMEPAGE="https://codeberg.org/newsraft/newsraft"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/newsraft/newsraft.git"
else
SRC_URI="https://codeberg.org/newsraft/newsraft/archive/${P}.tar.gz"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}"
fi
LICENSE="ISC"
SLOT="0"
DEPEND="
dev-db/sqlite:3
dev-libs/expat
dev-libs/gumbo:=
net-misc/curl
"
RDEPEND="${DEPEND}"
BDEPEND="
app-text/scdoc
virtual/pkgconfig
"
src_prepare() {
default
sed -i -e '/CC *=/s;=;?=;' makefile || die
}
src_compile(){
tc-export CC
emake LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}"
}
src_install() {
emake PREFIX="/usr" DESTDIR="${D}" install
einstalldocs
}
pkg_postinst() {
xdg_icon_cache_update
}
pkg_postrm() {
xdg_icon_cache_update
}
dev-db/sqlite:3 dev-libs/expat dev-libs/gumbo:= net-misc/curl
dev-db/sqlite:3 dev-libs/expat dev-libs/gumbo:= net-misc/curl
app-text/scdoc virtual/pkgconfig