diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-07-24 14:38:23 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-07-24 14:38:23 +0000 |
commit | 1343ccfbfb58a86cfd653dda6fc6ca4672b6db21 (patch) | |
tree | a7119e091d9b275348c9ac0a898e73a5c814e9fb /net-p2p | |
parent | Bump (diff) | |
download | historical-1343ccfbfb58a86cfd653dda6fc6ca4672b6db21.tar.gz historical-1343ccfbfb58a86cfd653dda6fc6ca4672b6db21.tar.bz2 historical-1343ccfbfb58a86cfd653dda6fc6ca4672b6db21.zip |
Bump
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/gift-fasttrack/Manifest | 4 | ||||
-rw-r--r-- | net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.2 | 1 | ||||
-rw-r--r-- | net-p2p/gift-fasttrack/gift-fasttrack-0.8.2.ebuild | 40 |
3 files changed, 43 insertions, 2 deletions
diff --git a/net-p2p/gift-fasttrack/Manifest b/net-p2p/gift-fasttrack/Manifest index df398b130b97..d58411db4450 100644 --- a/net-p2p/gift-fasttrack/Manifest +++ b/net-p2p/gift-fasttrack/Manifest @@ -1,5 +1,5 @@ MD5 0f015a4fdbc2a773b97bf7dc691b37c1 gift-fasttrack-0.8.1.ebuild 1209 -MD5 15a5d449c7d2639d0e682bcb1a573076 ChangeLog 628 -MD5 e0db6b0be513003d0c1f6991f5dccdd4 gift-fasttrack-0.8.2.ebuild 1230 +MD5 1f82db588ed6f449597095a49e4119ae ChangeLog 634 +MD5 b6b268aa50112a9f5ffa2c11ce304515 gift-fasttrack-0.8.2.ebuild 1236 MD5 281932b8dc87c3c85c1b57e29c2cb6c1 files/digest-gift-fasttrack-0.8.1 72 MD5 89ba3b632718dced20c9e7793a92ac05 files/digest-gift-fasttrack-0.8.2 72 diff --git a/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.2 b/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.2 new file mode 100644 index 000000000000..538d7a7456c2 --- /dev/null +++ b/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.2 @@ -0,0 +1 @@ +MD5 515e090a190fc9c18faa114a61a2b6f7 giFT-FastTrack-0.8.2.tar.gz 279055 diff --git a/net-p2p/gift-fasttrack/gift-fasttrack-0.8.2.ebuild b/net-p2p/gift-fasttrack/gift-fasttrack-0.8.2.ebuild new file mode 100644 index 000000000000..24aa099e110d --- /dev/null +++ b/net-p2p/gift-fasttrack/gift-fasttrack-0.8.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-fasttrack/gift-fasttrack-0.8.2.ebuild,v 1.1 2003/07/24 14:38:19 lostlogic Exp $ + +DESCRIPTION="FastTrack Plugin for giFT" +HOMEPAGE="https://developer.berlios.de/projects/gift-fasttrack/" +SRC_URI="http://download.berlios.de/${PN}/giFT-FastTrack-${PV}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~ppc" + +DEPEND="virtual/glibc + !net-p2p/gift-fasttrack-cvs + >=net-p2p/gift-0.11.1 + >=sys-apps/sed-4 + >=sys-libs/zlib-1.1.4" + +S=${WORKDIR}/${P/gift-fasttrack/giFT-FastTrack} + +src_compile() { +# cp /usr/share/libtool/ltmain.sh . +# ./autogen.sh --prefix=/usr --host=${CHOST} || die "FastTrack configure failed" + econf || dir "FastTrack plugin failed to configure" + emake || die "FastTrack plugin failed to build" +} + +src_install() { + make install DESTDIR="${D}" || "FastTrack plugin failed to install" + +} + +pkg_postinst() { + einfo "To run giFT with FastTrack support, run:" + einfo "giFT -p /usr/lib/giFT/libFastTrack.so" + echo + einfo "Alternatively you can add the following line to" + einfo "your ~/.giFT/gift.conf configuration file:" + einfo "plugins = OpenFT:FastTrack" +} + |