blob: 3254f2a908e94e5f0554a8971f853cad8cdfc26d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/overnet/overnet-0.51.2.ebuild,v 1.7 2004/07/01 09:38:57 squinky86 Exp $
IUSE=""
MY_P="${P/-/}"
S="${WORKDIR}"
DESCRIPTION="Overnet is the successor of eDonkey2000 that allows you to share files with millions of other people across the globe."
HOMEPAGE="http://www.overnet.com"
SRC_URI="http://download.overnet.com/${MY_P}.tar.gz"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ~amd64"
DEPEND="virtual/libc"
src_compile() {
einfo "Distributed in binary. No compilation required."
}
src_install () {
exeinto /usr/bin
newexe ${MY_P} ${PN}
dodoc README
}
|