diff options
Diffstat (limited to 'net-p2p/nap')
-rw-r--r-- | net-p2p/nap/ChangeLog | 13 | ||||
-rw-r--r-- | net-p2p/nap/files/digest-nap-1.5.0 | 1 | ||||
-rw-r--r-- | net-p2p/nap/nap-1.5.0.ebuild | 22 |
3 files changed, 36 insertions, 0 deletions
diff --git a/net-p2p/nap/ChangeLog b/net-p2p/nap/ChangeLog new file mode 100644 index 000000000000..9fe008949eef --- /dev/null +++ b/net-p2p/nap/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for net-p2p/nap +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nap/ChangeLog,v 1.1 2002/06/25 10:26:11 bangert Exp $ + +*nap-1.5.0 (21 Jun 2002) + + 21 Jun 2002; Ryan Phillips <rphillips@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/nap/files/digest-nap-1.5.0 b/net-p2p/nap/files/digest-nap-1.5.0 new file mode 100644 index 000000000000..2b5d1087ba0a --- /dev/null +++ b/net-p2p/nap/files/digest-nap-1.5.0 @@ -0,0 +1 @@ +MD5 37f212b818e4d0a1674ddd63f638e1b3 nap-1.5.0.tar.gz 258340 diff --git a/net-p2p/nap/nap-1.5.0.ebuild b/net-p2p/nap/nap-1.5.0.ebuild new file mode 100644 index 000000000000..cb32c02ba785 --- /dev/null +++ b/net-p2p/nap/nap-1.5.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# Author: Maik Schreiber <bZ@iq-computing.de> +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nap/nap-1.5.0.ebuild,v 1.1 2002/06/25 10:26:11 bangert Exp $ + +S="${WORKDIR}/${P}" +DESCRIPTION="Console Napster/OpenNap client" +HOMEPAGE="http://quasar.mathstat.uottawa.ca/~selinger/nap/" +RDEPEND="virtual/glibc" +DEPEND="${RDEPEND}" +SRC_URI="http://quasar.mathstat.uottawa.ca/~selinger/nap/${P}.tar.gz" + +src_compile() { + ./configure --prefix=${D}/usr || die "configure problem" + emake || die "compile problem" +} + +src_install() { + emake install || die "install problem" + + dodoc AUTHORS COPYRIGHT COPYING ChangeLog NEWS README +} |