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