diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-06-10 01:49:34 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-06-10 01:49:34 +0000 |
commit | 31b4e6ad959cbed06437be44d3ee6cc4ff634216 (patch) | |
tree | b4bf2bd58920e52537788e90d7725c0fab1884a0 /dev-libs/libtrain | |
parent | New package. Fixes #3152 (diff) | |
download | gentoo-2-31b4e6ad959cbed06437be44d3ee6cc4ff634216.tar.gz gentoo-2-31b4e6ad959cbed06437be44d3ee6cc4ff634216.tar.bz2 gentoo-2-31b4e6ad959cbed06437be44d3ee6cc4ff634216.zip |
New package. Fixes #3446
Diffstat (limited to 'dev-libs/libtrain')
-rw-r--r-- | dev-libs/libtrain/ChangeLog | 13 | ||||
-rw-r--r-- | dev-libs/libtrain/files/digest-libtrain-0.9b | 1 | ||||
-rw-r--r-- | dev-libs/libtrain/libtrain-0.9b.ebuild | 24 |
3 files changed, 38 insertions, 0 deletions
diff --git a/dev-libs/libtrain/ChangeLog b/dev-libs/libtrain/ChangeLog new file mode 100644 index 000000000000..8e912f404fc2 --- /dev/null +++ b/dev-libs/libtrain/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for dev-libs/libtrain +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtrain/ChangeLog,v 1.1 2002/06/10 01:49:34 rphillips Exp $ + +*libtrain-0.9b (09 June 2002) + + 09 June 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/dev-libs/libtrain/files/digest-libtrain-0.9b b/dev-libs/libtrain/files/digest-libtrain-0.9b new file mode 100644 index 000000000000..31976844cf6b --- /dev/null +++ b/dev-libs/libtrain/files/digest-libtrain-0.9b @@ -0,0 +1 @@ +MD5 d7efee7c88bc10e2879824ce64645dab libtrain-0.9b.tar.gz 167075 diff --git a/dev-libs/libtrain/libtrain-0.9b.ebuild b/dev-libs/libtrain/libtrain-0.9b.ebuild new file mode 100644 index 000000000000..6733fe9a21f1 --- /dev/null +++ b/dev-libs/libtrain/libtrain-0.9b.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtrain/libtrain-0.9b.ebuild,v 1.1 2002/06/10 01:49:34 rphillips Exp $ + +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/" +LICENSE="GPL-2" +DEPEND="virtual/glibc" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man || die "./configure failed" + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die +} + |