# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.6 2002/05/07 03:58:19 drobbins Exp DESCRIPTION="GUI app 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/" LICENSE="GPL-2" DEPEND=">=dev-libs/libtrain-0.9b" src_compile() { if [ -z "`use nls`" ] ; then NLS_OPTION="--disable-nls" fi ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ ${NLS_OPTION} || die "./configure failed" emake || die } src_install () { make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die }