diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-30 10:44:13 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-09-30 10:44:13 +0000 |
commit | 83c0c16157d6dc0c7ff63559a97e4fef44e8284d (patch) | |
tree | 6c8c1bc0facc53b8619b103ead724beb4bece759 /games-emulation/dosbox | |
parent | Stable on alpha. (Manifest recommit) (diff) | |
download | gentoo-2-83c0c16157d6dc0c7ff63559a97e4fef44e8284d.tar.gz gentoo-2-83c0c16157d6dc0c7ff63559a97e4fef44e8284d.tar.bz2 gentoo-2-83c0c16157d6dc0c7ff63559a97e4fef44e8284d.zip |
version bump
Diffstat (limited to 'games-emulation/dosbox')
-rw-r--r-- | games-emulation/dosbox/ChangeLog | 7 | ||||
-rw-r--r-- | games-emulation/dosbox/Manifest | 14 | ||||
-rw-r--r-- | games-emulation/dosbox/dosbox-0.62.ebuild | 50 | ||||
-rw-r--r-- | games-emulation/dosbox/files/digest-dosbox-0.62 | 1 |
4 files changed, 65 insertions, 7 deletions
diff --git a/games-emulation/dosbox/ChangeLog b/games-emulation/dosbox/ChangeLog index 124d127737b5..5bde8271ae0f 100644 --- a/games-emulation/dosbox/ChangeLog +++ b/games-emulation/dosbox/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-emulation/dosbox # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/ChangeLog,v 1.11 2004/06/24 22:25:37 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/ChangeLog,v 1.12 2004/09/30 10:44:13 mr_bones_ Exp $ + +*dosbox-0.62 (30 Sep 2004) + + 30 Sep 2004; Michael Sterrett <mr_bones_@gentoo.org> +dosbox-0.62.ebuild: + version bump 21 Jun 2004; Michael Sterrett <mr_bones_@gentoo.org> dosbox-0.61.ebuild: Well, it works, but isn't "stable" on amd64 so back to ~ it goes. diff --git a/games-emulation/dosbox/Manifest b/games-emulation/dosbox/Manifest index 6c32d11b4727..ce44dd435c06 100644 --- a/games-emulation/dosbox/Manifest +++ b/games-emulation/dosbox/Manifest @@ -1,10 +1,12 @@ -MD5 0ef2fd60dc5781d72b1a290452945642 dosbox-0.61.ebuild 1084 -MD5 7bb8a8751ef2fb0617d00126797e60f7 dosbox-0.60.ebuild 880 -MD5 6e4c88905ec735ea32946271c5bf5896 dosbox-0.58.ebuild 692 MD5 ac3752ed790fa15ed10c22ac25d02fe1 ChangeLog 1699 MD5 95e2b5bfd7767aeae061c77f7e1a055e metadata.xml 221 -MD5 f4257165581f9c2cb8e2a428f2ebeaae files/0.60-alsa-1.0.0.patch 721 -MD5 3df3072eb03de57f9e5aebcfb47f35a0 files/dosbox_gcc34.gz 655 +MD5 7bb8a8751ef2fb0617d00126797e60f7 dosbox-0.60.ebuild 880 +MD5 0ef2fd60dc5781d72b1a290452945642 dosbox-0.61.ebuild 1084 +MD5 6e4c88905ec735ea32946271c5bf5896 dosbox-0.58.ebuild 692 +MD5 830269e87f6676b451c1e463f80efc49 dosbox-0.62.ebuild 1085 +MD5 6c3131692034dda3f27046c037aabc58 files/digest-dosbox-0.61 63 MD5 709911d69c3fb90908508f4c3116a07f files/digest-dosbox-0.58 63 MD5 a15acc3d9f2a2d55bde29cf697f86297 files/digest-dosbox-0.60 63 -MD5 6c3131692034dda3f27046c037aabc58 files/digest-dosbox-0.61 63 +MD5 f4257165581f9c2cb8e2a428f2ebeaae files/0.60-alsa-1.0.0.patch 721 +MD5 3df3072eb03de57f9e5aebcfb47f35a0 files/dosbox_gcc34.gz 655 +MD5 6dc808f58930f5161dd3c2644f2e8d59 files/digest-dosbox-0.62 63 diff --git a/games-emulation/dosbox/dosbox-0.62.ebuild b/games-emulation/dosbox/dosbox-0.62.ebuild new file mode 100644 index 000000000000..6c03a1c44b10 --- /dev/null +++ b/games-emulation/dosbox/dosbox-0.62.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-emulation/dosbox/dosbox-0.62.ebuild,v 1.1 2004/09/30 10:44:13 mr_bones_ Exp $ + +inherit eutils games + +DESCRIPTION="DOS emulator" +HOMEPAGE="http://dosbox.sourceforge.net/" +SRC_URI="mirror://sourceforge/dosbox/${P}.tar.gz" + +KEYWORDS="x86 ~amd64 ~ppc" +LICENSE="GPL-2" +SLOT="0" +IUSE="alsa opengl" + +DEPEND="virtual/libc + alsa? ( media-libs/alsa-lib ) + opengl? ( virtual/opengl ) + media-libs/libpng + sys-libs/zlib + >=media-libs/libsdl-1.2.0 + media-libs/sdl-net + media-libs/sdl-sound" + +src_unpack() { + unpack ${A} + sed -i \ + -e 's/: install-docDATA/:/' "${S}/Makefile.in" \ + || die "sed failed" +} + +src_compile() { + local myconf= + + if ! use alsa ; then + myconf="--without-alsa-prefix --without-alsa-inc-prefix --disable-alsatest" + fi + egamesconf \ + --disable-dependency-tracking \ + ${myconf} \ + $(use_enable opengl) \ + || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog INSTALL NEWS README THANKS + prepgamesdirs +} diff --git a/games-emulation/dosbox/files/digest-dosbox-0.62 b/games-emulation/dosbox/files/digest-dosbox-0.62 new file mode 100644 index 000000000000..9b7e81dc02de --- /dev/null +++ b/games-emulation/dosbox/files/digest-dosbox-0.62 @@ -0,0 +1 @@ +MD5 80b10f438119f9d83b44dcf175493dcb dosbox-0.62.tar.gz 633259 |