mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00: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>
75 lines
1.4 KiB
Bash
75 lines
1.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
AT_M4DIR=${S}
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Motif-based widget to display a grid of cells as a spreadsheet"
|
|
HOMEPAGE="https://xbae.sourceforge.net/"
|
|
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 ~hppa ppc ppc64 ~sparc x86 ~amd64-linux ~x86-linux"
|
|
IUSE="doc examples"
|
|
# tests need X display
|
|
# and are interactive so virtualx will not help
|
|
RESTRICT="test"
|
|
|
|
RDEPEND="
|
|
x11-libs/motif:0
|
|
x11-libs/libXau
|
|
x11-libs/libXdmcp
|
|
x11-libs/libXext
|
|
x11-libs/libXmu
|
|
x11-libs/libXpm
|
|
x11-libs/libXt"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-tmpl.patch
|
|
"${FILESDIR}"/${P}-lxmp.patch
|
|
"${FILESDIR}"/${P}-Makefile.in.patch
|
|
# https://sourceforge.net/p/xbae/patches/3/
|
|
"${FILESDIR}"/${P}-configure-c99.patch
|
|
"${FILESDIR}"/${P}-modern-autotools.patch
|
|
"${FILESDIR}"/${P}-c99.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf --enable-production
|
|
}
|
|
|
|
src_test() {
|
|
emake -C examples
|
|
emake -C examples/testall clean
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
insinto /usr/share/aclocal
|
|
doins ac_find_xbae.m4
|
|
|
|
if use examples; then
|
|
find examples -name '*akefile*' -delete || die
|
|
rm examples/{testall,extest} || die
|
|
dodoc -r examples
|
|
fi
|
|
if use doc; then
|
|
rm doc/{,images/}Makefile* || die
|
|
docinto html
|
|
dodoc -r doc/.
|
|
fi
|
|
|
|
# no static archives
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|