Gentoo Archives: gentoo-commits

From: Austin English <wizardedit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/rwbs/files/, net-misc/rwbs/
Date: Wed, 04 May 2016 01:02:35
Message-Id: 1462322182.97f09c02250fe75429e186aeabb2ddafc2e1fa25.wizardedit@gentoo
1 commit: 97f09c02250fe75429e186aeabb2ddafc2e1fa25
2 Author: Austin English <wizardedit <AT> gentoo <DOT> org>
3 AuthorDate: Wed May 4 00:36:22 2016 +0000
4 Commit: Austin English <wizardedit <AT> gentoo <DOT> org>
5 CommitDate: Wed May 4 00:36:22 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97f09c02
7
8 net-misc/rwbs: use #!/sbin/openrc-run instead of #!/sbin/runscript
9
10 Gentoo-Bug: https://bugs.gentoo.org/573846
11
12 Package-Manager: portage-2.2.26
13
14 net-misc/rwbs/files/rwbs.rc | 4 ++--
15 net-misc/rwbs/rwbs-0.27-r2.ebuild | 36 ++++++++++++++++++++++++++++++++++++
16 2 files changed, 38 insertions(+), 2 deletions(-)
17
18 diff --git a/net-misc/rwbs/files/rwbs.rc b/net-misc/rwbs/files/rwbs.rc
19 index 88528a7..58bdd20 100644
20 --- a/net-misc/rwbs/files/rwbs.rc
21 +++ b/net-misc/rwbs/files/rwbs.rc
22 @@ -1,5 +1,5 @@
23 -#!/sbin/runscript
24 -# Copyright 1999-2012 Gentoo Foundation
25 +#!/sbin/openrc-run
26 +# Copyright 1999-2016 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 # $Id$
29
30
31 diff --git a/net-misc/rwbs/rwbs-0.27-r2.ebuild b/net-misc/rwbs/rwbs-0.27-r2.ebuild
32 new file mode 100644
33 index 0000000..a70ebf6
34 --- /dev/null
35 +++ b/net-misc/rwbs/rwbs-0.27-r2.ebuild
36 @@ -0,0 +1,36 @@
37 +# Copyright 1999-2016 Gentoo Foundation
38 +# Distributed under the terms of the GNU General Public License v2
39 +# $Id$
40 +
41 +EAPI=6
42 +
43 +DESCRIPTION="Roger Wilco base station"
44 +HOMEPAGE="http://rogerwilco.gamespy.com/"
45 +SRC_URI="http://games.gci.net/pub/VoiceOverIP/RogerWilco/rwbs_Linux_0_27.tar.gz"
46 +
47 +SLOT="0"
48 +LICENSE="Resounding GPL-2"
49 +KEYWORDS="~amd64 x86"
50 +IUSE=""
51 +
52 +# Everything is statically linked
53 +DEPEND=""
54 +
55 +S="${WORKDIR}"
56 +
57 +QA_PREBUILT="opt/bin/rwbs"
58 +
59 +src_install() {
60 + dodoc README.TXT CHANGES.TXT
61 + exeinto /opt/bin
62 + doexe rwbs run_rwbs
63 +
64 + # Put distribution into /usr/share/rwbs
65 + insinto /usr/share/rwbs/
66 + doins "${S}"/anotherpersonjoined "${S}"/helloandwelcome \
67 + "${S}"/ifucanhearthis "${S}"/invitetestxmit "${S}"/join?.rwc \
68 + "${S}"/plsstartagame "${S}"/thisisatestmsg
69 +
70 + newconfd "${FILESDIR}"/rwbs.conf rwbs
71 + newinitd "${FILESDIR}"/rwbs.rc rwbs
72 +}