diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-12-15 21:52:27 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-12-15 21:52:27 +0000 |
commit | 0bb8548ef9fb6e2f2ca4f0a9a82d6fecd792bec6 (patch) | |
tree | f41656046723db06e3b2054977b24fc5a4fe2b90 /net-p2p | |
parent | new package to control xmms from the cli (diff) | |
download | gentoo-2-0bb8548ef9fb6e2f2ca4f0a9a82d6fecd792bec6.tar.gz gentoo-2-0bb8548ef9fb6e2f2ca4f0a9a82d6fecd792bec6.tar.bz2 gentoo-2-0bb8548ef9fb6e2f2ca4f0a9a82d6fecd792bec6.zip |
new version
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/nap/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/nap/files/digest-nap-1.5.1 | 1 | ||||
-rw-r--r-- | net-p2p/nap/nap-1.5.1.ebuild | 25 |
3 files changed, 32 insertions, 1 deletions
diff --git a/net-p2p/nap/ChangeLog b/net-p2p/nap/ChangeLog index fe37c435c56a..b3ea97d599c2 100644 --- a/net-p2p/nap/ChangeLog +++ b/net-p2p/nap/ChangeLog @@ -1,6 +1,11 @@ # 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.3 2002/07/26 05:05:10 gerk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nap/ChangeLog,v 1.4 2002/12/15 21:52:27 rphillips Exp $ + +*nap-1.5.1 (15 Dec 2002) + + 15 Dec 2002; Ryan Phillips <rphillips@gentoo.org> : + New version *nap-1.5.0 (21 Jun 2002) diff --git a/net-p2p/nap/files/digest-nap-1.5.1 b/net-p2p/nap/files/digest-nap-1.5.1 new file mode 100644 index 000000000000..09d741ea6f1b --- /dev/null +++ b/net-p2p/nap/files/digest-nap-1.5.1 @@ -0,0 +1 @@ +MD5 554753d5d6154bdf5057156cc60d0658 nap-1.5.1.tar.gz 284054 diff --git a/net-p2p/nap/nap-1.5.1.ebuild b/net-p2p/nap/nap-1.5.1.ebuild new file mode 100644 index 000000000000..ce51dd974516 --- /dev/null +++ b/net-p2p/nap/nap-1.5.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/nap/nap-1.5.1.ebuild,v 1.1 2002/12/15 21:52:27 rphillips Exp $ + +S="${WORKDIR}/${P}" +DESCRIPTION="Console Napster/OpenNap client" +HOMEPAGE="http://quasar.mathstat.uottawa.ca/~selinger/nap/" +SRC_URI="http://quasar.mathstat.uottawa.ca/~selinger/nap/${P}.tar.gz" +LICENSE="as-is" + +RDEPEND="virtual/glibc" +DEPEND="${RDEPEND}" +SLOT="0" +KEYWORDS="~x86 ~ppc" + +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 +} |