games-emulation/dosbox: add snapshot ebuild from upstream svn to provide a non-moving...
authorMichael Sterrett <mr_bones_@gentoo.org>
Tue, 28 Jun 2016 15:49:27 +0000 (11:49 -0400)
committerMichael Sterrett <mr_bones_@gentoo.org>
Tue, 28 Jun 2016 17:33:01 +0000 (13:33 -0400)
Package-Manager: portage-2.2.28

games-emulation/dosbox/Manifest
games-emulation/dosbox/dosbox-3989.ebuild [new file with mode: 0644]

index aa7079d0e759afc14bf56eb775a297e8de872ead..539ba17f77d7be8cdcba290eb462f4586ab7b6e1 100644 (file)
@@ -1 +1,2 @@
 DIST dosbox-0.74.tar.gz 1265711 SHA256 13f74916e2d4002bad1978e55727f302ff6df3d9be2f9b0e271501bd0a938e05 SHA512 4a6ff4c658997a495119d200ec6ad37649da940814a4b14fca0dd29a99142026e324695b7aa9d2946efc2abf9067a819d911e43778efe905ed10ddf9b9f2dd3d WHIRLPOOL abc94770c732f8b73bedffbcca778f249c2fdc09353c3f484e2fc23f910602cc60b3abfcc22a9dbf3d3c4e77535fc488cd476217fe6498cab786a8024a257ff3
+DIST dosbox-code-0-3989-dosbox-trunk.zip 1327592 SHA256 32f2cfff1be9f9bd2b0e246f9c0486f050714fdaba0bc47b66f3983eb7f55965 SHA512 625eacc1a1190d87d56713f7af54e6a7886e7666ba9f7f0b1d553c96a2eb02ec7810ac2da73d014d5ea3b69f2a7658bdd445532abe030e7f6ef85a3c20bdd3c7 WHIRLPOOL 1272c5a8d8480fa0dede2e78941a1cc78938407ab86d3720e18762fe2c749de89eea3db2811426f43eb57efa762a4ff55aa44d8e624c05bcb82b2404dad86f49
diff --git a/games-emulation/dosbox/dosbox-3989.ebuild b/games-emulation/dosbox/dosbox-3989.ebuild
new file mode 100644 (file)
index 0000000..50488ee
--- /dev/null
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils games
+
+PATCH=3989
+DESCRIPTION="DOS emulator"
+HOMEPAGE="http://dosbox.sourceforge.net/"
+SRC_URI="mirror://gentoo/dosbox-code-0-${PATCH}-dosbox-trunk.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="alsa debug hardened opengl"
+
+RDEPEND="alsa? ( media-libs/alsa-lib )
+       opengl? ( virtual/glu virtual/opengl )
+       debug? ( sys-libs/ncurses:0 )
+       media-libs/libpng:0
+       media-libs/libsdl[joystick,video,X]
+       media-libs/sdl-net
+       media-libs/sdl-sound"
+DEPEND="${RDEPEND}
+       app-arch/unzip"
+
+S=${WORKDIR}/${PN}-code-0-${PATCH}-dosbox-trunk
+
+src_prepare() {
+       eautoreconf
+}
+
+src_configure() {
+       egamesconf \
+               $(use_enable alsa alsa-midi) \
+               $(use_enable !hardened dynamic-core) \
+               $(use_enable !hardened dynamic-x86) \
+               $(use_enable debug) \
+               $(use_enable opengl)
+}
+
+src_install() {
+       default
+       make_desktop_entry dosbox DOSBox /usr/share/pixmaps/dosbox.ico
+       doicon src/dosbox.ico
+       prepgamesdirs
+}