mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-17 07:28:38 +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>
30 lines
678 B
Bash
30 lines
678 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Attach/detach from interactive processes across the network"
|
|
HOMEPAGE="https://github.com/cosmos72/detachtty"
|
|
SRC_URI="https://github.com/cosmos72/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc ~sparc x86"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-sparc.patch"
|
|
"${FILESDIR}/${P}-clang16-build-fix.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
dobin attachtty detachtty
|
|
doman "${PN}.1"
|
|
dosym detachtty.1 /usr/share/man/man1/attachtty.1
|
|
einstalldocs
|
|
}
|