# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit toolchain-funcs DESCRIPTION="Tools to manage LEDs on Alix board" HOMEPAGE="http://git.1wt.eu/pub" SRC_URI="http://git.1wt.eu/pub/${P}.tgz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" IUSE="" PATCHES=( "${FILESDIR}/${P}-nostrip.diff" "${FILESDIR}/${P}-libc.diff" ) src_prepare() { default sed -ri \ -e "/^CFLAGS/ s:-Os -mpreferred-stack-boundary=2:${CFLAGS}:" \ -e "/^LDFLAGS/ s:=:=${LDFLAGS}:" \ "${S}/Makefile" } src_compile() { emake alix-leds \ CC="$(tc-getCC)" \ OBJDUMP="$(tc-getPROG OBJDUMP objdump ${CHOST})" \ STRIP="$(tc-getSTRIP)" \ SSTRIP= \ DIET= } src_install() { dosbin alix-leds dodoc contrib/startup.rc }