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 | f132efd31fe00f3eab6b9ef104f8eb3b1557647b (patch) | |
tree | e5c1345296371ee581ad97633cebbef9b0e20d93 /net-p2p | |
parent | Bump (diff) | |
download | gentoo-2-f132efd31fe00f3eab6b9ef104f8eb3b1557647b.tar.gz gentoo-2-f132efd31fe00f3eab6b9ef104f8eb3b1557647b.tar.bz2 gentoo-2-f132efd31fe00f3eab6b9ef104f8eb3b1557647b.zip |
Bump
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/gift/ChangeLog | 7 | ||||
-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 |
4 files changed, 59 insertions, 3 deletions
diff --git a/net-p2p/gift/ChangeLog b/net-p2p/gift/ChangeLog index 71cbad719f53..9202c0f76b38 100644 --- a/net-p2p/gift/ChangeLog +++ b/net-p2p/gift/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-p2p/gift # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift/ChangeLog,v 1.31 2003/07/14 20:27:57 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift/ChangeLog,v 1.32 2003/08/01 01:56:49 lostlogic Exp $ + +*gift-0.11.3 (31 Jul 2003) + + 31 Jul 2003; Brandon Low <lostlogic@gentoo.org> gift-0.11.3.ebuild: + Bump, no longer comes with any plugins, so install them separately *gift-cvs-0.11.1 (14 Jul 2003) Brandon Low <lostlogic@gentoo.org> 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" +} + |