mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-25 07:08:13 -07: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>
37 lines
764 B
Bash
37 lines
764 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit toolchain-funcs flag-o-matic
|
|
|
|
DESCRIPTION="A utility to set the framebuffer videomode"
|
|
HOMEPAGE="http://users.telenet.be/geertu/Linux/fbdev/"
|
|
SRC_URI="http://users.telenet.be/geertu/Linux/fbdev/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
IUSE="static"
|
|
|
|
BDEPEND="app-alternatives/yacc
|
|
app-alternatives/lex"
|
|
RDEPEND=""
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-build.patch"
|
|
"${FILESDIR}/${P}-add-linux-types-h.patch"
|
|
)
|
|
|
|
src_compile() {
|
|
use static && append-ldflags -static
|
|
tc-export CC
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
dobin fbset modeline2fb
|
|
doman *.[58]
|
|
dodoc etc/fb.modes.* INSTALL
|
|
}
|