summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-01-24 14:09:13 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-01-24 14:09:13 +0000
commit96e3dc5dde308e8f6e1995989aca9e25b2181e7b (patch)
treee1e845955fb0a94cdd0ba4e7db78954711b88cbd /games-strategy/uqm
parentheader fix; tidy (diff)
downloadgentoo-2-96e3dc5dde308e8f6e1995989aca9e25b2181e7b.tar.gz
gentoo-2-96e3dc5dde308e8f6e1995989aca9e25b2181e7b.tar.bz2
gentoo-2-96e3dc5dde308e8f6e1995989aca9e25b2181e7b.zip
tidy older version
Diffstat (limited to 'games-strategy/uqm')
-rw-r--r--games-strategy/uqm/Manifest2
-rw-r--r--games-strategy/uqm/files/digest-uqm-0.24
-rw-r--r--games-strategy/uqm/uqm-0.2.ebuild84
3 files changed, 0 insertions, 90 deletions
diff --git a/games-strategy/uqm/Manifest b/games-strategy/uqm/Manifest
index 8597d998226c..155ac5a26ebd 100644
--- a/games-strategy/uqm/Manifest
+++ b/games-strategy/uqm/Manifest
@@ -1,6 +1,4 @@
MD5 8905da6553d835f4060ca3cc7dfece05 ChangeLog 789
-MD5 06b735db349c40bfb6371eea0aa4bc85 uqm-0.2.ebuild 2017
MD5 0ad1369c0959caa554898f2cc4b93e16 uqm-0.3.ebuild 2068
MD5 a30c9d4ce8f9629d6d7323eaab258343 metadata.xml 241
-MD5 c11ab9abbb79bb9cf614402daa6d3bcf files/digest-uqm-0.2 261
MD5 352d8c8a28dfc130e621263c405143f4 files/digest-uqm-0.3 261
diff --git a/games-strategy/uqm/files/digest-uqm-0.2 b/games-strategy/uqm/files/digest-uqm-0.2
deleted file mode 100644
index 250e644f3faa..000000000000
--- a/games-strategy/uqm/files/digest-uqm-0.2
+++ /dev/null
@@ -1,4 +0,0 @@
-MD5 f7760aa305b743304504e04df742f57e uqm-0.2-3domusic.zip 18894697
-MD5 ad4de1c9318d9196ebf332d935bb6032 uqm-0.2-content.zip 12511149
-MD5 f7213e8db6ca4bca4ddfdeed8a7ca0d6 uqm-0.2-voice.zip 113699708
-MD5 8b95dda6ed73802cee18a44f56322076 uqm-0.2-source.tgz 826616
diff --git a/games-strategy/uqm/uqm-0.2.ebuild b/games-strategy/uqm/uqm-0.2.ebuild
deleted file mode 100644
index 5d981b19180b..000000000000
--- a/games-strategy/uqm/uqm-0.2.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2003 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-strategy/uqm/uqm-0.2.ebuild,v 1.2 2003/09/15 08:55:11 msterret Exp $
-
-inherit games
-
-DESCRIPTION="Port of Star Control 2"
-HOMEPAGE="http://sc2.sourceforge.net/"
-SRC_URI="mirror://sourceforge/sc2/${P}-3domusic.zip
- mirror://sourceforge/sc2/${P}-content.zip
- mirror://sourceforge/sc2/${P}-voice.zip
- mirror://sourceforge/sc2/${P}-source.tgz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="x86 ppc"
-
-RDEPEND="virtual/glibc
- virtual/x11
- media-libs/libvorbis
- media-libs/jpeg
- media-libs/libogg
- media-libs/libpng
- media-libs/libsdl
- media-libs/libvorbis
- media-libs/sdl-image
- sys-libs/zlib"
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4
- sys-apps/coreutils
- app-arch/unzip"
-
-S=${WORKDIR}/${P}-source
-
-src_unpack() {
- local myopengl
-
- unpack ${P}-source.tgz
-
- mkdir ${S}/content && \
- cd ${S}/content && \
- unpack ${P}-{3domusic,content,voice}.zip
-
- cd ${S}
- use opengl \
- && myopengl=opengl \
- || myopengl=pure
- cat << EOF > config.state
-CHOICE_debug_VALUE='nodebug'
-CHOICE_graphics_VALUE='${myopengl}'
-CHOICE_sound_VALUE='mixsdl'
-INPUT_install_prefix_VALUE='${GAMES_PREFIX}'
-INPUT_install_bindir_VALUE='\$prefix/bin'
-INPUT_install_libdir_VALUE='\$prefix/lib'
-EOF
- # Take out the read so we can be non-interactive.
- sed -i \
- -e '/read CHOICE/d' build/unix/menu_functions || \
- die "sed menu_functions failed"
-
- # support the user's CFLAGS.
- sed -i \
- -e "s/-O3/${CFLAGS}/" build/unix/build.config || \
- die "sed build.config failed"
-}
-
-src_compile() {
- ./build.sh uqm || die
-}
-
-src_install() {
- # Now that we've compiled in the right thing, change the variables
- # so it installs in the right place.
- sed -i \
- -e "s:${GAMES_PREFIX}:${D}${GAMES_PREFIX}:" build.vars || \
- die "sed build.vars failed"
- ./build.sh uqm install || die
-
- dodoc AUTHORS Contributing README COPYING TODO ChangeLog WhatsNew doc/users/manual.txt
- docinto devel
- dodoc doc/devel/*
-
- prepgamesdirs
-}