blob: 163842140746731c4028d150357dd7633849b1be (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/rwbs/rwbs-0.27-r1.ebuild,v 1.3 2012/11/21 18:01:27 ago Exp $
EAPI=4
DESCRIPTION="Roger Wilco base station"
HOMEPAGE="http://rogerwilco.gamespy.com/"
SRC_URI="http://games.gci.net/pub/VoiceOverIP/RogerWilco/rwbs_Linux_0_27.tar.gz"
SLOT="0"
LICENSE="Resounding GPL-2"
KEYWORDS="~amd64 x86"
IUSE=""
# Everything is statically linked
DEPEND=""
S=${WORKDIR}
src_install() {
dodoc README.TXT CHANGES.TXT
exeinto /opt/bin
doexe rwbs run_rwbs
# Put distribution into /usr/share/rwbs
insinto /usr/share/rwbs/
doins "${S}"/anotherpersonjoined "${S}"/helloandwelcome \
"${S}"/ifucanhearthis "${S}"/invitetestxmit "${S}"/join?.rwc \
"${S}"/plsstartagame "${S}"/thisisatestmsg
newconfd "${FILESDIR}"/rwbs.conf rwbs
newinitd "${FILESDIR}"/rwbs.rc rwbs
}
|