You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-boot/sgibootcd/sgibootcd-0.13.ebuild

41 lines
1.1 KiB

# Copyright 2005-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit toolchain-funcs
DESCRIPTION="Creates burnable CD images for SGI LiveCDs"
HOMEPAGE="ftp://ftp.linux-mips.org/pub/linux/mips/people/skylark/"
SRC_URI="https://dev.gentoo.org/~kumba/distfiles/${P}.tar.xz"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="-* ~mips"
IUSE=""
RDEPEND=""
DEPEND=""
RESTRICT=""
# sgibootcd is a small utility used to build the image that is burned to a
# CD and used to boot SGI systems. Its compilation does not involve the
# external linker, 'ld', and thus this makes it difficult to reliably pass
# user LDFLAGS. See Bug #725836.
QA_FLAGS_IGNORED="/usr/bin/sgibootcd"
src_compile() {
local mycc="$(tc-getCC) ${CFLAGS}"
# There is no Makefile, so check for an existing binary
# and remove it if necessary
[[ -f "${S}/sgibootcd" ]] && rm -f "${S}"/sgibootcd
# Compile sgibootcd.c to a standalone executable.
einfo "${mycc} sgibootcd.c -o sgibootcd"
${mycc} sgibootcd.c -o sgibootcd
}
src_install() {
dobin "${S}"/sgibootcd
}