2012-07-01 15:57:36 +04:00
|
|
|
# Copyright 1999-2012 Gentoo Foundation
|
2012-02-06 16:39:49 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2012-07-01 15:57:36 +04:00
|
|
|
EAPI=4
|
|
|
|
|
|
|
|
AUTOTOOLS_AUTORECONF=yes
|
|
|
|
|
|
|
|
inherit autotools-utils
|
2012-02-06 16:39:49 +04:00
|
|
|
|
|
|
|
DESCRIPTION="Library for calculating fastest train routes"
|
|
|
|
SRC_URI="http://www.on.rim.or.jp/~katamuki/software/train/${P}.tar.gz"
|
|
|
|
HOMEPAGE="http://www.on.rim.or.jp/~katamuki/software/train/"
|
|
|
|
|
|
|
|
SLOT="0"
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
KEYWORDS="~ppc sparc x86"
|
2012-07-01 15:57:36 +04:00
|
|
|
IUSE="debug static-libs "
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-07-01 15:57:36 +04:00
|
|
|
PATCHES=( "${FILESDIR}"/${P}-impl-dec.patch )
|
2012-02-06 16:39:49 +04:00
|
|
|
|
2012-07-01 15:57:36 +04:00
|
|
|
src_configure() {
|
|
|
|
local myeconfargs=( $(use_enable debug) )
|
|
|
|
autotools-utils_src_configure
|
2012-02-06 16:39:49 +04:00
|
|
|
}
|