mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
28 lines
645 B
Bash
28 lines
645 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DIST_AUTHOR=CINE
|
|
DIST_VERSION=1.01
|
|
inherit perl-module
|
|
|
|
DESCRIPTION="Porters stemming algorithm for Denmark"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ppc ~sparc x86"
|
|
|
|
src_install() {
|
|
perl-module_src_install
|
|
|
|
if [[ -f ${D}/${VENDOR_LIB}/Lingua/Stem/Snowball/stemmer.pl ]] ; then
|
|
mv "${D}"/${VENDOR_LIB}/Lingua/Stem/Snowball/{,da-}stemmer.pl || die
|
|
fi
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "The stemmer.pl that ships with this distribution has been renamed to"
|
|
elog "da-stemmer.pl to avoid collisions with other Lingua::Stem packages."
|
|
}
|