summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Kalika <max@gentoo.org>2003-12-08 17:16:28 +0000
committerMax Kalika <max@gentoo.org>2003-12-08 17:16:28 +0000
commita51f397d7378b52cfff149c46529153015606573 (patch)
treedfca827cd7a5a366e9b38be69e80ad9278295d01 /media-plugins/mythgame
parentRemove PGP (diff)
downloadhistorical-a51f397d7378b52cfff149c46529153015606573.tar.gz
historical-a51f397d7378b52cfff149c46529153015606573.tar.bz2
historical-a51f397d7378b52cfff149c46529153015606573.zip
Remove stale version.
Diffstat (limited to 'media-plugins/mythgame')
-rw-r--r--media-plugins/mythgame/ChangeLog5
-rw-r--r--media-plugins/mythgame/Manifest4
-rw-r--r--media-plugins/mythgame/files/digest-mythgame-0.101
-rw-r--r--media-plugins/mythgame/mythgame-0.10.ebuild67
4 files changed, 5 insertions, 72 deletions
diff --git a/media-plugins/mythgame/ChangeLog b/media-plugins/mythgame/ChangeLog
index 276894cd2e67..9cdf480fba14 100644
--- a/media-plugins/mythgame/ChangeLog
+++ b/media-plugins/mythgame/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-plugins/mythgame
# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/ChangeLog,v 1.7 2003/10/28 16:33:28 max Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/ChangeLog,v 1.8 2003/12/08 17:16:27 max Exp $
+
+ 08 Dec 2003; <max@gentoo.org> mythgame-0.10.ebuild:
+ Remove stale version.
28 Oct 2003; Max Kalika <max@gentoo.org> mythgame-0.12.ebuild:
Extend CPU detection.
diff --git a/media-plugins/mythgame/Manifest b/media-plugins/mythgame/Manifest
index f2e0ed5891e9..cdc2cf41e4e2 100644
--- a/media-plugins/mythgame/Manifest
+++ b/media-plugins/mythgame/Manifest
@@ -1,8 +1,6 @@
MD5 e7b5eb2fce13a0317d734ffd6515a289 mythgame-0.12.ebuild 1979
MD5 3c46ea652d6e76a76eb15e34026c4777 mythgame-0.11.ebuild 1976
-MD5 4b17f8d2524f3c6ae4a41916793e7cfd mythgame-0.10.ebuild 2009
-MD5 14aa1e1070d2e24953dfb89f8aa2530b ChangeLog 1784
+MD5 12c4b9497f4af92d5aaf427c224a43c3 ChangeLog 1863
MD5 20e2255501865de5b568424821abf69d metadata.xml 161
-MD5 9b0262b1d9e5347fceb6265378d7bf2e files/digest-mythgame-0.10 65
MD5 2bd60d4f779ab52e53d15145940b8946 files/digest-mythgame-0.11 65
MD5 ace6a7f7f30d271f0c3e7bb1ea4ea89b files/digest-mythgame-0.12 65
diff --git a/media-plugins/mythgame/files/digest-mythgame-0.10 b/media-plugins/mythgame/files/digest-mythgame-0.10
deleted file mode 100644
index 228a5f97d72e..000000000000
--- a/media-plugins/mythgame/files/digest-mythgame-0.10
+++ /dev/null
@@ -1 +0,0 @@
-MD5 8dbbb7b5444ecf44c662b260e2dce488 mythgame-0.10.tar.bz2 61437
diff --git a/media-plugins/mythgame/mythgame-0.10.ebuild b/media-plugins/mythgame/mythgame-0.10.ebuild
deleted file mode 100644
index d9ae693c7816..000000000000
--- a/media-plugins/mythgame/mythgame-0.10.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythgame/mythgame-0.10.ebuild,v 1.4 2003/09/17 06:25:29 max Exp $
-
-inherit flag-o-matic
-
-DESCRIPTION="Game emulator module for MythTV."
-HOMEPAGE="http://www.mythtv.org/"
-SRC_URI="http://www.mythtv.org/mc/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-
-DEPEND="sys-libs/zlib
- >=sys-apps/sed-4
- || ( >=media-tv/mythtv-${PV} >=media-tv/mythfrontend-${PV} )"
-
-src_unpack() {
- unpack ${A}
-
- for i in `grep -lr "usr/local" "${S}"` ; do
- sed -e "s:/usr/local:/usr:" -i "${i}" || die "sed failed"
- done
-}
-
-src_compile() {
- cpu="`get-flag march`"
- if [ ! -z "${cpu}" ] ; then
- sed -e "s:pentiumpro:${cpu}:g" -i "${S}/settings.pro" || die "sed failed"
- fi
-
- qmake -o "${S}/Makefile" "${S}/${PN}.pro"
-
- emake || die "compile problem"
-}
-
-src_install () {
- make INSTALL_ROOT="${D}" install || die "make install failed"
-
- insinto "/usr/share/mythtv/database/${PN}"
- doins gamedb/*.sql
-
- dodoc README UPGRADING gamelist.xml
-}
-
-pkg_postinst() {
- einfo "If this is the first time you install MythGame,"
- einfo "you need to add /usr/share/mythtv/database/${PN}/metadata.sql"
- einfo "/usr/share/mythtv/database/${PN}/nesdb.sql and "
- einfo "/usr/share/mythtv/database/${PN}/snesdata.sql"
- einfo "to your MythTV database in that order."
- einfo
- einfo "You might run in this order:"
- einfo "'mysql < /usr/share/mythtv/database/${PN}/gamemetadata.sql'"
- einfo "'mysql < /usr/share/mythtv/database/${PN}/nesdb.sql'"
- einfo "'mysql < /usr/share/mythtv/database/${PN}/snesdata.sql'"
- einfo
- einfo "If you're upgrading from an older version and for more"
- einfo "setup and usage instructions, please refer to:"
- einfo " /usr/share/doc/${PF}/README.gz"
- einfo " /usr/share/doc/${PF}/UPGRADING.gz"
- ewarn "This part is important as there might be database changes"
- ewarn "which need to be performed or this package will not work"
- ewarn "properly."
- echo
-}