summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Bangert <bangert@gentoo.org>2002-06-25 10:26:11 +0000
committerThilo Bangert <bangert@gentoo.org>2002-06-25 10:26:11 +0000
commit07a2e481814af85e47e5af94fa20544a0f4c63d4 (patch)
tree02a5573027989d2b28469736e68d86f20955bc7f /net-p2p/mutella
parentnew version, compiles with gcc 3.1 (diff)
downloadhistorical-07a2e481814af85e47e5af94fa20544a0f4c63d4.tar.gz
historical-07a2e481814af85e47e5af94fa20544a0f4c63d4.tar.bz2
historical-07a2e481814af85e47e5af94fa20544a0f4c63d4.zip
initial commit for net-p2p - these are all the p2p ebuilds listed in my mail. Note: they have not yet been removed from net-misc or media-sound
Diffstat (limited to 'net-p2p/mutella')
-rw-r--r--net-p2p/mutella/ChangeLog13
-rw-r--r--net-p2p/mutella/files/digest-mutella-0.3.31
-rw-r--r--net-p2p/mutella/mutella-0.3.3.ebuild29
3 files changed, 43 insertions, 0 deletions
diff --git a/net-p2p/mutella/ChangeLog b/net-p2p/mutella/ChangeLog
new file mode 100644
index 000000000000..ee1ef857f0a9
--- /dev/null
+++ b/net-p2p/mutella/ChangeLog
@@ -0,0 +1,13 @@
+# ChangeLog for net-p2p/mutella
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mutella/ChangeLog,v 1.1 2002/06/25 10:26:11 bangert Exp $
+
+*mutella-0.3.3 (1 Feb 2002)
+
+ 1 Feb 2002; G.Bevin <gbevin@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/net-p2p/mutella/files/digest-mutella-0.3.3 b/net-p2p/mutella/files/digest-mutella-0.3.3
new file mode 100644
index 000000000000..96fd261c9f13
--- /dev/null
+++ b/net-p2p/mutella/files/digest-mutella-0.3.3
@@ -0,0 +1 @@
+MD5 ea797048bb4bb6a35b677b1152d84ce2 mutella-0.3.3.tar.gz 310907
diff --git a/net-p2p/mutella/mutella-0.3.3.ebuild b/net-p2p/mutella/mutella-0.3.3.ebuild
new file mode 100644
index 000000000000..549d58457ce7
--- /dev/null
+++ b/net-p2p/mutella/mutella-0.3.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-p2p/mutella/mutella-0.3.3.ebuild,v 1.1 2002/06/25 10:26:11 bangert Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="Text-mode gnutella client."
+SRC_URI="http://telia.dl.sourceforge.net/sourceforge/mutella/mutella-0.3.3.tar.gz"
+HOMEPAGE="http://mutella.sourceforge.net"
+
+DEPEND="virtual/glibc sys-libs/readline"
+RDEPEND="$DEPEND"
+SLOT=0
+LICENSE="GPL-2"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die "compile problem"
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS ChangeLog COPYING INSTALL KNOWN-BUGS README TODO
+}
+
+