mednafen server ebuild from roslin overlay

This commit is contained in:
Sergey Popov 2012-02-26 15:01:29 +04:00
parent 1876178779
commit 7fe352280a
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST mednafen-server-0.4.1.tar.bz2 115008 RMD160 ac97a24d500fcc3b6020e7c5f89bbe9d37317bda SHA1 f1cc22b13224a789d5eb0a1d9d61cceeeda79f44 SHA256 4698be178711c5f48d56d3476f7f8225c753735b0717f6acc3f4e43e624dc1f0
EBUILD mednafen-server-0.4.1.ebuild 692 RMD160 6de6e882fbafadfe9d20dedaac7d1ca51dc81a7f SHA1 14d2937edbedcb4cd65abe1a0e214de1e0965553 SHA256 242ba8cb069604fc83aa9467b88363a7f5ae57e9f88d6655df665b548135e3e8

View File

@ -0,0 +1,36 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=2
inherit games
DESCRIPTION="Server for Mednafen emulator"
HOMEPAGE="http://mednafen.sourceforge.net/"
SRC_URI="mirror://sourceforge/mednafen/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=""
DEPEND=""
S=${WORKDIR}/${PN}
src_prepare() {
mv standard.conf standard.conf.example
mv run.sh run.sh.example
}
src_install() {
dodoc README *.example || die "dodoc failed"
dogamesbin src/${PN} || die "dogamesbin failed"
prepgamesdirs
}
pkg_postinst() {
einfo "Example config file and run file can be found in"
einfo "/usr/share/doc/${P}/"
}