summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-puzzle/enigma/enigma-0.81.ebuild')
-rw-r--r--games-puzzle/enigma/enigma-0.81.ebuild51
1 files changed, 0 insertions, 51 deletions
diff --git a/games-puzzle/enigma/enigma-0.81.ebuild b/games-puzzle/enigma/enigma-0.81.ebuild
deleted file mode 100644
index ff3653b084f3..000000000000
--- a/games-puzzle/enigma/enigma-0.81.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-puzzle/enigma/enigma-0.81.ebuild,v 1.17 2005/06/15 18:59:56 wolf31o2 Exp $
-
-inherit eutils games
-
-DESCRIPTION="puzzle game similar to Oxyd"
-HOMEPAGE="http://www.nongnu.org/enigma/"
-SRC_URI="http://savannah.nongnu.org/download/enigma/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 ~amd64 ~sparc ppc"
-IUSE=""
-
-RDEPEND="virtual/libc
- sys-libs/zlib
- media-libs/sdl-ttf
- >=media-libs/libsdl-1.2.0
- >=media-libs/sdl-mixer-1.2.4
- >=media-libs/sdl-image-1.2.0
- >=dev-lang/lua-4.0"
-DEPEND="${RDEOEND}
- >=sys-apps/sed-4"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-gcc34.patch"
- sed -i \
- -e 's:$(pkgdatadir):$(DESTDIR)$(pkgdatadir):' \
- data/levels/Makefile.am \
- data/levels/Sokoban/Makefile.am \
- || die "sed data/levels/{Sokoban/}?Makefile.am failed"
- aclocal || die "aclocal failed"
- automake || die "automake failed"
- autoconf || die "autoconf failed"
-}
-
-src_compile() {
- egamesconf --enable-optimize || die
- emake || die "emake failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "make install failed"
- mv "${D}/${GAMES_PREFIX}/share/"* "${D}/usr/share/"
- rm -r "${D}/${GAMES_PREFIX}/share"
- dodoc NEWS README AUTHORS ChangeLog
- prepgamesdirs
-}