blob: aa48dfe47c30691fb2f1edd45fcd8d4e743b645a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit autotools subversion
DESCRIPTION="Experimental driver for Garmin IMG maps"
HOMEPAGE="http://libgarmin.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
ESVN_REPO_URI="http://libgarmin.svn.sourceforge.net/svnroot/${PN}/${PN}/dev"
ESVN_PROJECT="libgarmin"
##Upstream's bootstrap runs configure, which is evil
ESVN_BOOTSTRAP="eautoreconf"
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
}
|