summaryrefslogtreecommitdiff
blob: 60f33bbdf92a01648a7f28845669c1ddd7d69ce4 (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
45
46
47
48
49
50
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/chessbrain/chessbrain-20407.ebuild,v 1.3 2004/06/24 21:55:17 agriffis Exp $

MY_PV=${PV}-01
DESCRIPTION="client for the ChessBrain distributed computing project"
HOMEPAGE="http://www.chessbrain.net/"
SRC_URI="http://www.chessbrain.net/client${MY_PV}-lin.tgz"

LICENSE="freedist"
IUSE=""
SLOT="0"
KEYWORDS="x86"

S=${WORKDIR}

DEPEND=""
RDEPEND="
	sys-fs/e2fsprogs
	sys-libs/lib-compat"

# no version number on this install dir since upgrades will be using same dir
# (data will be stored here too)
I=/opt/chessbrain

src_install() {
	exeinto /etc/init.d
	newexe ${FILESDIR}/cb-init.d chessbrain
	insinto /etc/conf.d
	newins ${FILESDIR}/cb-conf.d chessbrain
	echo "CHESSBRAIN_DIR=${I}">> ${D}/etc/conf.d/chessbrain

	insinto ${I}
	insopts "-m0644 -o nobody -g nogroup"
	doins cbspn.conf
	exeinto ${I}
	exeopts "-m 4755 -o nobody -g nogroup"
	doexe cbspn
}

pkg_postinst() {
	einfo "To run ChessBrain in the background at boot:"
	einfo " Edit ${I}/cbspn.conf for information relevant to ChessBrain"
	einfo "  See http://www.chessbrain.net/peernodenotes.html"
	einfo " Then just run \`/etc/init.d/chessbrain start\`"
	einfo
	einfo "Otherwise remember to cd into the directory"
	einfo "where it should keep its data files first, like so:"
	einfo " cd ${I} && ./cbspn"
}