diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-11 08:12:04 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-12-11 08:12:04 +0000 |
commit | d4b9e2f43e59d482e946d6d52f85f84ed2612fb4 (patch) | |
tree | 59c6c0eeef81fefd51c05c6485ed41c6a5470cd6 /games-puzzle/seatris/seatris-0.0.14.ebuild | |
parent | New version (diff) | |
download | historical-d4b9e2f43e59d482e946d6d52f85f84ed2612fb4.tar.gz historical-d4b9e2f43e59d482e946d6d52f85f84ed2612fb4.tar.bz2 historical-d4b9e2f43e59d482e946d6d52f85f84ed2612fb4.zip |
initial commit - in response to bug #54939
Diffstat (limited to 'games-puzzle/seatris/seatris-0.0.14.ebuild')
-rw-r--r-- | games-puzzle/seatris/seatris-0.0.14.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/games-puzzle/seatris/seatris-0.0.14.ebuild b/games-puzzle/seatris/seatris-0.0.14.ebuild new file mode 100644 index 000000000000..13a703d49a92 --- /dev/null +++ b/games-puzzle/seatris/seatris-0.0.14.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/seatris/seatris-0.0.14.ebuild,v 1.1 2004/12/11 08:12:04 mr_bones_ Exp $ + +inherit games + +DESCRIPTION="A color ncurses tetris clone" +HOMEPAGE="http://www.earth.li/projectpurple/progs/seatris.html" +SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="virtual/libc + sys-libs/ncurses" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "s:/var/lib/games:${GAMES_STATEDIR}:" \ + scoring.h seatris.6 \ + || die "sed failed" +} + +src_install () { + dogamesbin seatris + doman seatris.6 + dodoc ACKNOWLEDGEMENTS HISTORY README TODO example.seatrisrc + dodir "${GAMES_STATEDIR}" + touch "${D}${GAMES_STATEDIR}/seatris.score" + fperms 660 ${GAMES_STATEDIR}/seatris.score + prepgamesdirs +} |