commit: 8dbbee583d5dbbcd9a0dbbcaa87800783a15e80a Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Fri Jun 21 08:19:10 2024 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Fri Jun 21 09:40:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dbbee58
app-i18n/scim-sayura: EAPI 6 -> 8 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> ...ra-0.3.3.ebuild => scim-sayura-0.3.3-r1.ebuild} | 25 +++++++++++++++------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/app-i18n/scim-sayura/scim-sayura-0.3.3.ebuild b/app-i18n/scim-sayura/scim-sayura-0.3.3-r1.ebuild similarity index 58% rename from app-i18n/scim-sayura/scim-sayura-0.3.3.ebuild rename to app-i18n/scim-sayura/scim-sayura-0.3.3-r1.ebuild index f04f5993a8e9..b0c142039c51 100644 --- a/app-i18n/scim-sayura/scim-sayura-0.3.3.ebuild +++ b/app-i18n/scim-sayura/scim-sayura-0.3.3-r1.ebuild @@ -1,7 +1,9 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 + +inherit autotools DESCRIPTION="Sayura Sinhala input method for SCIM" HOMEPAGE="http://www.sayura.net/im/" @@ -13,21 +15,28 @@ KEYWORDS="~amd64 ~x86" IUSE="doc" RDEPEND=">=app-i18n/scim-0.99.8" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${P}-gcc45.patch +) -PATCHES=( "${FILESDIR}"/scim-sayura-0.3.3-gcc45.patch ) +src_prepare() { + default + eautoreconf +} src_configure() { - econf --disable-static + econf } src_install() { - HTML_DOCS=( doc/{index.html,style.css} ) + local HTML_DOCS=( doc/{index.html,style.css} ) default use doc && dodoc doc/sayura.pdf # plugin module, no point in .la files - find "${D}" -name '*.la' -delete || die + find "${D}" -type f -name '*.la' -delete || die }
