mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-24 00:05:26 +03: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>
33 lines
709 B
Bash
33 lines
709 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Library with low-level data structures which are helpful for writing compilers"
|
|
HOMEPAGE="https://dict.org/"
|
|
SRC_URI="https://downloads.sourceforge.net/dict/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc x86 ~amd64-linux ~x86-linux"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-libtool.patch # 778464
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
dodoc doc/libmaa.600dpi.ps
|
|
|
|
# don't want static or libtool archives, #401935
|
|
find "${D}" \( -name '*.a' -o -name '*.la' \) -delete || die
|
|
}
|