commit: 79b7d1157a89c9ad6a65f5f9642d88adb06fe13a Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at> AuthorDate: Sun Mar 31 18:03:50 2024 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Thu Apr 11 15:38:21 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79b7d115
www-apps/mythweb: EAPI8 bump, add missing || die Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/36022 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> .../{mythweb-0.28.1-r1.ebuild => mythweb-0.28.1-r2.ebuild} | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/www-apps/mythweb/mythweb-0.28.1-r1.ebuild b/www-apps/mythweb/mythweb-0.28.1-r2.ebuild similarity index 96% rename from www-apps/mythweb/mythweb-0.28.1-r1.ebuild rename to www-apps/mythweb/mythweb-0.28.1-r2.ebuild index e02c6dd25c0a..6f6fcae78019 100644 --- a/www-apps/mythweb/mythweb-0.28.1-r1.ebuild +++ b/www-apps/mythweb/mythweb-0.28.1-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 inherit webapp @@ -12,10 +12,10 @@ MY_P="mythweb-${MY_PV}" DESCRIPTION="PHP scripts intended to manage MythTV from a web browser" HOMEPAGE="https://www.mythtv.org" SRC_URI="https://github.com/MythTV/mythweb/archive/v${MY_PV}.tar.gz -> mythweb-${MY_PV}.tar.gz" +S="${WORKDIR}/${MY_P}" LICENSE="GPL-2" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" RDEPEND=" dev-lang/php:*[json(+),mysql,session,posix] @@ -29,8 +29,6 @@ DEPEND="${RDEPEND}" need_httpd_cgi -S="${WORKDIR}/${MY_P}" - src_configure() { : } @@ -43,7 +41,7 @@ src_install() { webapp_src_preinst # Install docs - cd "${S}" + cd "${S}" || die dodoc README INSTALL # Install htdocs files
