blob: e5057dbcc911ad97c1bd4b4ffd9819ee55a624c5 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit games
DESCRIPTION="Server for Mednafen emulator"
HOMEPAGE="http://mednafen.fobby.net/releases/"
SRC_URI="http://mednafen.fobby.net/releases/files/${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND=""
S=${WORKDIR}/${PN}
src_prepare() {
mv standard.conf standard.conf.example || die
mv run.sh run.sh.example || die
}
src_install() {
dogamesbin src/${PN}
dodoc README *.example
prepgamesdirs
}
pkg_postinst() {
games_postinst
einfo "Example config file and run file can be found in"
einfo "/usr/share/doc/${PF}/"
}
|