blob: 43a45ba0f3868c9fd4848847d5c7a048de5843ea (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/dnetc/dnetc-2.8007.458.ebuild,v 1.2 2002/11/18 13:12:04 aliz Exp $
MAJ_PV=${PV:0:6}
MIN_PV=${PV:7:9}
DESCRIPTION="distributed.net client"
HOMEPAGE="http://www.distributed.net"
SRC_URI="ppc? ( http://http.distributed.net/pub/dcti/v${MAJ_PV}/dnetc${MIN_PV}-linux-ppc-static-mt.tar.gz )
sparc? ( http://http.distributed.net/pub/dcti/v${MAJ_PV}/dnetc${MIN_PV}-linux-sparc-elf-glibc2.tar.gz )
sparc64? ( http://http.distributed.net/pub/dcti/v${MAJ_PV}/dnetc${MIN_PV}-linux-sparc-elf-glibc2.tar.gz )
alpha? ( http://http.distributed.net/pub/dcti/v${MAJ_PV}/dnetc${MIN_PV}-linux-alpha-glibc21.tar.gz )
x86? ( http://http.distributed.net/pub/dcti/v${MAJ_PV}/dnetc${MIN_PV}-linux-x86-glibc21.tar.gz )"
LICENSE="distributed.net"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~sparc64 ~alpha"
IUSE=""
DEPEND=""
#RDEPEND=""
S="${WORKDIR}"
RESTRICT="nomirror"
src_install() {
exeinto /opt/distributed.net
doexe dnetc
doman dnetc.1
dodoc docs/*
exeinto /etc/init.d ; newexe ${FILESDIR}/dnetc.init dnetc
insinto /etc/conf.d ; newins ${FILESDIR}/dnetc.conf dnetc
}
pkg_postinst() {
einfo "Either configure your email adress in /etc/conf.d/dnetc"
einfo "or create the configuration file /opt/distributed.net/dnetc.ini"
}
pkg_postrm() {
if [ -d /opt/distributed.net ]; then
einfo "All files has not been removed from /opt/distributed.net"
fi
}
|