| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 2025.01.26 | 8 | ~amd64 ~x86 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit webapp vcs-snapshot
MY_PV="$(ver_rs 1- -)"
if [[ ${MY_PV} = 9999 ]]; then
inherit git-r3
fi
DESCRIPTION="The RSS feed for websites missing it "
HOMEPAGE="https://github.com/RSS-Bridge/rss-bridge"
LICENSE="Unlicense"
if [[ ${MY_PV} = 9999 ]]; then
EGIT_REPO_URI="https://github.com/RSS-bridge/${PN}.git"
EGIT_BOOTSTRAP=""
else
SRC_URI="https://github.com/RSS-bridge/${PN}/archive/${MY_PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_PV}"
fi
IUSE="sqlite"
DEPEND="
dev-lang/php[ssl,xml,unicode,simplexml,curl,filter,zip,sqlite?]
virtual/httpd-php:*
"
RDEPEND="${DEPEND}"
need_httpd_cgi # From webapp.eclass
src_install() {
if [[ ${MY_PV} = 9999 ]]; then
# Cleanup of files
rm -rf .github tests .git
rm -f .dockerignore .gitattributes .gitignore Dockerfile composer.* \
docker* php* scalingo.json
fi
rm -rf composer.* docker-* app.json
webapp_src_preinst
insinto "/${MY_HTDOCSDIR}"
doins -r ./*
webapp_postinst_txt en "${FILESDIR}"/post-install.txt
webapp_src_install
}
pkg_postinst() {
elog "See documentation for installation instructions"
elog "https://github.com/rss-bridge/rss-bridge/wiki/For-hosts"
elog "Make cache dir read- and writeable by the PHP user running rss-bridge."
elog "2023-09-24 introduces a new caching mechanism and n ./cache/"
elog "(e.g. cache/server and cache/pages) are no longer in use."
webapp_pkg_postinst
}
dev-lang/php[ssl,xml,unicode,simplexml,curl,filter,zip,sqlite?] virtual/httpd-php:*
dev-lang/php[ssl,xml,unicode,simplexml,curl,filter,zip,sqlite?] virtual/httpd-php:*