mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]hppa' -l | xargs ekeyword ~hppa Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
27 lines
699 B
Bash
27 lines
699 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="GNU Autoconf, Automake and Libtool"
|
|
HOMEPAGE="https://sourceware.org/autobook/"
|
|
SRC_URI="
|
|
https://sourceware.org/autobook/${P}.tar.gz
|
|
https://sourceware.org/autobook/foonly-2.0.tar.gz
|
|
https://sourceware.org/autobook/small-2.0.tar.gz
|
|
https://sourceware.org/autobook/hello-2.0.tar.gz
|
|
https://sourceware.org/autobook/convenience-2.0.tar.gz"
|
|
|
|
LICENSE="OPL"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm ~hppa ~m68k ppc ~riscv ~s390 x86"
|
|
|
|
src_install() {
|
|
local HTML_DOCS=( . )
|
|
einstalldocs
|
|
|
|
local d
|
|
for d in {convenience,foonly,hello,small}-2.0; do
|
|
dodoc -r "${WORKDIR}"/${d}
|
|
done
|
|
}
|