summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@gentoo.org>2003-07-14 20:27:57 +0000
committerBrandon Low <lostlogic@gentoo.org>2003-07-14 20:27:57 +0000
commitf9bedcd4ae95a34a46607db324de79724fdbb567 (patch)
tree9dc90f1f439ccc2f6c021648bf87adc9960334b4 /net-p2p/gift-fasttrack
parentupdated (diff)
downloadhistorical-f9bedcd4ae95a34a46607db324de79724fdbb567.tar.gz
historical-f9bedcd4ae95a34a46607db324de79724fdbb567.tar.bz2
historical-f9bedcd4ae95a34a46607db324de79724fdbb567.zip
Many changes to update CVS and real versions of gift and gift-fasttrack
Diffstat (limited to 'net-p2p/gift-fasttrack')
-rw-r--r--net-p2p/gift-fasttrack/ChangeLog10
-rw-r--r--net-p2p/gift-fasttrack/Manifest3
-rw-r--r--net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.11
-rw-r--r--net-p2p/gift-fasttrack/gift-fasttrack-0.8.1.ebuild40
4 files changed, 54 insertions, 0 deletions
diff --git a/net-p2p/gift-fasttrack/ChangeLog b/net-p2p/gift-fasttrack/ChangeLog
new file mode 100644
index 000000000000..c1f479da8002
--- /dev/null
+++ b/net-p2p/gift-fasttrack/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for net-p2p/gift-fasttrack
+# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-fasttrack/ChangeLog,v 1.1 2003/07/14 20:27:57 lostlogic Exp $
+
+*gift-fasttrack-0.8.1 (14 Jul 2003)
+
+ 02 Jul 2003; Brandon Low <lostlogic@gentoo.org>
+ gift-fasttrack-0.8.1.ebiuld:
+ First version non-cvs
+
diff --git a/net-p2p/gift-fasttrack/Manifest b/net-p2p/gift-fasttrack/Manifest
new file mode 100644
index 000000000000..3c4d28e2514d
--- /dev/null
+++ b/net-p2p/gift-fasttrack/Manifest
@@ -0,0 +1,3 @@
+MD5 07d0843dc39cb7f035cd30f1bd8b8bed gift-fasttrack-0.8.1.ebuild 1056
+MD5 93f766b5bc7df5cf3b3567dcfd8c3b58 ChangeLog 371
+MD5 281932b8dc87c3c85c1b57e29c2cb6c1 files/digest-gift-fasttrack-0.8.1 72
diff --git a/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.1 b/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.1
new file mode 100644
index 000000000000..a36daf7cb433
--- /dev/null
+++ b/net-p2p/gift-fasttrack/files/digest-gift-fasttrack-0.8.1
@@ -0,0 +1 @@
+MD5 c71ceb7b2efc4476420eaf4f8d109a9c giFT-FastTrack-0.8.1.tar.gz 131336
diff --git a/net-p2p/gift-fasttrack/gift-fasttrack-0.8.1.ebuild b/net-p2p/gift-fasttrack/gift-fasttrack-0.8.1.ebuild
new file mode 100644
index 000000000000..73f441e6516a
--- /dev/null
+++ b/net-p2p/gift-fasttrack/gift-fasttrack-0.8.1.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.1.ebuild,v 1.1 2003/07/14 20:27:57 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"
+
+DEPENDS="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}/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"
+}
+