summaryrefslogblamecommitdiff
path: root/sys-apps/alix-leds/alix-leds-3.0.ebuild
blob: fb82bfdf45b6a93f2f98ed32c5af8f00ac20a367 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                    
                                                                  
 
      
                       

                                                
                                

                                        
               
        
                    
       
 




                                       
               

               



                                                                               

 
               
                         


                                                                  
                         
                     

 
               


                                
# 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
}