diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-01-26 11:12:55 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-01-26 11:12:55 +0000 |
commit | 6c5448945eafd69cac160693d07ed679b7d59ebe (patch) | |
tree | e002c3ace93db70893b873b4ba0de91a7785bf86 /games-roguelike | |
parent | initial commit (bug 39316) (diff) | |
download | historical-6c5448945eafd69cac160693d07ed679b7d59ebe.tar.gz historical-6c5448945eafd69cac160693d07ed679b7d59ebe.tar.bz2 historical-6c5448945eafd69cac160693d07ed679b7d59ebe.zip |
initial commit (bug 39316)
Diffstat (limited to 'games-roguelike')
-rw-r--r-- | games-roguelike/scourge/Manifest | 4 | ||||
-rw-r--r-- | games-roguelike/scourge/files/digest-scourge-0.1 | 1 | ||||
-rw-r--r-- | games-roguelike/scourge/metadata.xml | 9 | ||||
-rw-r--r-- | games-roguelike/scourge/scourge-0.1.ebuild | 38 |
4 files changed, 51 insertions, 1 deletions
diff --git a/games-roguelike/scourge/Manifest b/games-roguelike/scourge/Manifest index 7fce83017292..327ae83722a0 100644 --- a/games-roguelike/scourge/Manifest +++ b/games-roguelike/scourge/Manifest @@ -1,2 +1,4 @@ -MD5 e3d0a7bec3c423b560f6ee517e00046b scourge-0.1.ebuild 788 +MD5 e4de6322a91f1b6559293c93504aaa6f scourge-0.1.ebuild 944 +MD5 a30c9d4ce8f9629d6d7323eaab258343 metadata.xml 241 +MD5 1735c45dba9f272ae92d4c6eabb97e58 ChangeLog 364 MD5 2feb34e8daadb3f37513752485694576 files/digest-scourge-0.1 64 diff --git a/games-roguelike/scourge/files/digest-scourge-0.1 b/games-roguelike/scourge/files/digest-scourge-0.1 new file mode 100644 index 000000000000..df930ee71a33 --- /dev/null +++ b/games-roguelike/scourge/files/digest-scourge-0.1 @@ -0,0 +1 @@ +MD5 7373e7027ad4207ec81f8b9a4e818fda scourge-0.1.tar.gz 3711567 diff --git a/games-roguelike/scourge/metadata.xml b/games-roguelike/scourge/metadata.xml new file mode 100644 index 000000000000..1cef6e243af3 --- /dev/null +++ b/games-roguelike/scourge/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +<maintainer> +<email>games@gentoo.org</email> +<name>Games Team</name> +</maintainer> +</pkgmetadata> diff --git a/games-roguelike/scourge/scourge-0.1.ebuild b/games-roguelike/scourge/scourge-0.1.ebuild new file mode 100644 index 000000000000..08d39a282703 --- /dev/null +++ b/games-roguelike/scourge/scourge-0.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-roguelike/scourge/scourge-0.1.ebuild,v 1.1 2004/01/26 11:12:49 mr_bones_ Exp $ + +inherit games + +S="${WORKDIR}/${P/-/_}" +DESCRIPTION="A rogue-like adventure game to eliminate pests" +HOMEPAGE="http://scourge.sf.net" +SRC_URI="mirror://sourceforge/scourge/${P}.tar.gz" + +KEYWORDS="x86" +LICENSE="GPL-2" +SLOT="0" +IUSE="" + +DEPEND="virtual/x11 + virtual/glut + virtual/opengl + >=media-libs/libsdl-1.2 + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd ${S}/src + sed -i \ + -e "s:\"data/:\"${GAMES_DATADIR}/${PN}/data/:g" \ + shapepalette.cpp text.cpp \ + || die "sed failed" +} + +src_install() { + dogamesbin scourge || die "dogamesbin failed" + dodir "${GAMES_DATADIR}/${PN}" + cp -r data/ "${D}${GAMES_DATADIR}/${PN}" || die "cp failed" + dodoc AUTHORS README || die "dodoc failed" + prepgamesdirs +} |