diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-10 23:26:09 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2003-10-10 23:26:09 +0000 |
commit | fd1d9543ba8fb1b12d9936afc30d5e92fc7818c7 (patch) | |
tree | 523c114bdbec221e270a7d763de9088725979bd0 /games-arcade/ssc | |
parent | version bump (diff) | |
download | historical-fd1d9543ba8fb1b12d9936afc30d5e92fc7818c7.tar.gz historical-fd1d9543ba8fb1b12d9936afc30d5e92fc7818c7.tar.bz2 historical-fd1d9543ba8fb1b12d9936afc30d5e92fc7818c7.zip |
version bump
Diffstat (limited to 'games-arcade/ssc')
-rw-r--r-- | games-arcade/ssc/Manifest | 4 | ||||
-rw-r--r-- | games-arcade/ssc/files/digest-ssc-0.8 | 1 | ||||
-rw-r--r-- | games-arcade/ssc/ssc-0.8.ebuild | 51 |
3 files changed, 54 insertions, 2 deletions
diff --git a/games-arcade/ssc/Manifest b/games-arcade/ssc/Manifest index 5110e024f481..69fe9a34519d 100644 --- a/games-arcade/ssc/Manifest +++ b/games-arcade/ssc/Manifest @@ -1,5 +1,5 @@ MD5 8f29fcaf1eaf6567269a39646d50ea28 ssc-0.7.ebuild 971 -MD5 8f29fcaf1eaf6567269a39646d50ea28 ssc-0.8.ebuild 971 -MD5 c82559f495893ec4c9899641fc6f1c6e ChangeLog 351 +MD5 0c39c872a779c2b11bcee2bf22552ebb ssc-0.8.ebuild 1278 +MD5 0c264580d6bdb2eb27da49f8a94e3ab1 ChangeLog 462 MD5 a3b77a565014bda8d84ec6a627fcc055 files/digest-ssc-0.7 60 MD5 f9c44f3ae0f37ad3addec99ab96f7508 files/digest-ssc-0.8 60 diff --git a/games-arcade/ssc/files/digest-ssc-0.8 b/games-arcade/ssc/files/digest-ssc-0.8 new file mode 100644 index 000000000000..2dc1140d3d89 --- /dev/null +++ b/games-arcade/ssc/files/digest-ssc-0.8 @@ -0,0 +1 @@ +MD5 d6a5eb545adf9d93663c719ad89f23bf ssc-0.8.tar.bz2 810870 diff --git a/games-arcade/ssc/ssc-0.8.ebuild b/games-arcade/ssc/ssc-0.8.ebuild new file mode 100644 index 000000000000..6538f5c95922 --- /dev/null +++ b/games-arcade/ssc/ssc-0.8.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-arcade/ssc/ssc-0.8.ebuild,v 1.1 2003/10/10 23:26:07 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="2D Geometric Space Combat" +SRC_URI="http://heanet.dl.sourceforge.net/sourceforge/sscx/${P}.tar.bz2" +HOMEPAGE="http://sscx.sourceforge.net/" + +KEYWORDS="x86" +LICENSE="GPL-2" +SLOT="0" + +RDEPEND="virtual/opengl + virtual/glu + media-libs/libsdl + media-libs/sdl-mixer + media-libs/freetype" + +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S} + + sed -i \ + -e "s:/usr/local/share/:${GAMES_DATADIR}/:" \ + src/{asteroid.cc,audio.cc,config.cc,menu.cc} || \ + die "sed src/audio.cc failed" +} + +src_install () { + egamesinstall || die + dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed" + prepgamesdirs +} + +pkg_postinst() { + games_pkg_postinst + echo + einfo "You may need to copy /usr/share/games/ssc/ssc.conf to" + einfo "~/.ssc/ssc.conf and modify it to suit your needs before" + einfo "the game will work on your system. You should be able" + einfo "to cut and paste the commands below:" + echo + einfo "mkdir ~/.ssc/" + einfo "cp /usr/share/games/ssc/ssc.conf ~/.ssc/" + echo +} |