2021-12-05 03:30:15 +01:00
|
|
|
# Copyright 1999-2022 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
2023-01-13 10:24:39 +01:00
|
|
|
inherit meson xdg-utils
|
2021-12-05 03:30:15 +01:00
|
|
|
|
|
|
|
MY_PN="news_flash_gtk"
|
2022-11-18 00:54:29 +01:00
|
|
|
MY_PV="v.${PV}"
|
|
|
|
MY_P="${MY_PN}-${MY_PV}"
|
2021-12-05 03:30:15 +01:00
|
|
|
|
2022-09-20 16:22:42 +02:00
|
|
|
DESCRIPTION="Simple News Feed Reader for feeds aggregated by an online RSS reader account."
|
2021-12-05 03:30:15 +01:00
|
|
|
HOMEPAGE="https://gitlab.com/news-flash/news_flash_gtk"
|
2022-11-18 00:54:29 +01:00
|
|
|
SRC_URI="https://gitlab.com/${PN}/${MY_PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2 -> ${P}.tar.bz2"
|
2021-12-05 03:30:15 +01:00
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64"
|
|
|
|
|
2023-01-11 01:00:44 +01:00
|
|
|
RESTRICT="mirror network-sandbox"
|
2021-12-05 03:30:15 +01:00
|
|
|
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-db/sqlite
|
|
|
|
dev-lang/rust
|
|
|
|
dev-libs/openssl
|
2024-03-27 01:11:47 +01:00
|
|
|
dev-build/meson
|
2021-12-05 03:30:15 +01:00
|
|
|
gui-libs/libhandy
|
2023-05-24 10:10:06 +02:00
|
|
|
net-libs/webkit-gtk:6
|
2021-12-05 03:30:15 +01:00
|
|
|
sys-devel/gettext
|
2023-05-24 10:10:06 +02:00
|
|
|
gui-libs/gtk:4
|
2021-12-05 03:30:15 +01:00
|
|
|
x11-misc/xdg-utils"
|
|
|
|
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
2023-01-13 10:14:02 +01:00
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
xdg_icon_cache_update
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
|
|
|
xdg_icon_cache_update
|
|
|
|
}
|