diff options
author | Brandon Low <lostlogic@gentoo.org> | 2003-08-01 01:56:56 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2003-08-01 01:56:56 +0000 |
commit | 1b0d3828af4470e73f9401cb474750e0e62e38fa (patch) | |
tree | 147bd29a9b1053edd23009e2128bbc2e1cdb1305 /net-p2p/gift | |
parent | Bump (diff) | |
download | historical-1b0d3828af4470e73f9401cb474750e0e62e38fa.tar.gz historical-1b0d3828af4470e73f9401cb474750e0e62e38fa.tar.bz2 historical-1b0d3828af4470e73f9401cb474750e0e62e38fa.zip |
Bump
Diffstat (limited to 'net-p2p/gift')
-rw-r--r-- | net-p2p/gift/Manifest | 4 | ||||
-rw-r--r-- | net-p2p/gift/files/digest-gift-0.11.3 | 1 | ||||
-rw-r--r-- | net-p2p/gift/gift-0.11.3.ebuild | 50 |
3 files changed, 53 insertions, 2 deletions
diff --git a/net-p2p/gift/Manifest b/net-p2p/gift/Manifest index 50e409587d86..31c316a6776a 100644 --- a/net-p2p/gift/Manifest +++ b/net-p2p/gift/Manifest @@ -1,5 +1,5 @@ MD5 22d20bcd34114de3ba2400eebfe053ee gift-0.11.1.ebuild 1559 -MD5 cd475750e0ef2291b3ec8fe9caeb55a4 gift-0.11.3.ebuild 1521 -MD5 6c1c290f3e25b197dae00921ebf31834 ChangeLog 396 +MD5 b9a053e4ddf4a1f6f720e54dd8489597 gift-0.11.3.ebuild 1420 +MD5 d894df30349fda9e46606aa9bcd419ff ChangeLog 564 MD5 93526e524a41a4a69c2bce58826b062e files/digest-gift-0.11.1 64 MD5 0a7f09549fc4bd5a00fc06c378717df0 files/digest-gift-0.11.3 64 diff --git a/net-p2p/gift/files/digest-gift-0.11.3 b/net-p2p/gift/files/digest-gift-0.11.3 new file mode 100644 index 000000000000..16548d1b9b54 --- /dev/null +++ b/net-p2p/gift/files/digest-gift-0.11.3 @@ -0,0 +1 @@ +MD5 fc93e3784224c16e96f9d8a540d9d75c gift-0.11.3.tar.bz2 345256 diff --git a/net-p2p/gift/gift-0.11.3.ebuild b/net-p2p/gift/gift-0.11.3.ebuild new file mode 100644 index 000000000000..6545006b636f --- /dev/null +++ b/net-p2p/gift/gift-0.11.3.ebuild @@ -0,0 +1,50 @@ +# 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/gift-0.11.3.ebuild,v 1.1 2003/08/01 01:56:49 lostlogic Exp $ + +DESCRIPTION="A OpenFT, Gnutella and FastTrack p2p network client" +HOMEPAGE="http://gift.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~ppc ~alpha" + +DEPENDS="virtual/glibc + !net-p2p/gift-cvs + >=sys-apps/sed-4 + >=sys-libs/zlib-1.1.4" + +S=${WORKDIR}/${P} + +src_compile() { + + econf || die "Configure failed" + emake || die "Make failed" +#CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" || die "Make failed" + +} + +src_install() { + + einstall giftconfdir=${D}/etc/giFT \ + plugindir=${D}/usr/lib/giFT \ + giftdatadir=${D}/usr/share/giFT \ + giftperldir=${D}/usr/bin \ + libgiftincdir=${D}/usr/include/libgift || die "Install failed" + + # Fix the giFT-setup executable. +# cd ${D}/usr/bin +# sed -i -e 's:$prefix/etc/giFT/:/etc/giFT/:' giFT-setup + +} + +pkg_postinst() { + einfo "First of all you need to run giFT-setup with your normal" + einfo "user account to create the giFT configuration files." + echo + einfo "If you encounter issues with this package, please contact" + einfo "us via bugs.gentoo.org rather than attempting to contact" + einfo "the upstream developers, as they are hesitant to provide" + einfo "appropriate and polite support" +} + |