Ticket #280: shr-launcher-9999.ebuild

File shr-launcher-9999.ebuild, 0.8 KB (added by jc, 3 years ago)
Line 
1# Copyright 2008-2008 Gentoo Foundation
2# Distributed under the terms of the GNU General Public License v2
3# $Header: $
4
5inherit eutils toolchain-funcs autotools subversion flag-o-matic
6
7DESCRIPTION="Alternate launcher and notification tool for illume"
8IUSE=""
9#extras arctic2 collie corgi h3600 linear-h2200 mk712 ucb1x00"
10DEPEND=""
11RDEPEND=""
12HOMEPAGE="http://code.google.com/p/shr-launcher"
13ESVN_REPO_URI="http://shr-launcher.googlecode.com/svn/trunk/"
14SLOT="0"
15LICENSE="LGPL-2"
16KEYWORDS="~arm"
17
18src_unpack() {
19        subversion_src_unpack
20
21        cd "${S}"
22
23        eautoreconf
24}
25
26src_compile() {
27        append-flags -D_FORTIFY_SOURCE=0
28        econf --disable-debug || die "Configure failed"
29
30        emake || die "emake failed"
31}
32
33src_install() {
34        emake DESTDIR="${D}" install || die "emake install failed"
35        dodoc AUTHORS NEWS README
36}