diff options
author | 2007-03-23 16:43:06 +0000 | |
---|---|---|
committer | 2007-03-23 16:43:06 +0000 | |
commit | 7fe9442b7a08cd2052ffece28df72c682029ea39 (patch) | |
tree | f1d457a53b8fae245381f0be889b82ee74c5646d /games-puzzle/enigma/enigma-0.92.ebuild | |
parent | version bump (diff) | |
download | historical-7fe9442b7a08cd2052ffece28df72c682029ea39.tar.gz historical-7fe9442b7a08cd2052ffece28df72c682029ea39.tar.bz2 historical-7fe9442b7a08cd2052ffece28df72c682029ea39.zip |
rm old version
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'games-puzzle/enigma/enigma-0.92.ebuild')
-rw-r--r-- | games-puzzle/enigma/enigma-0.92.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/games-puzzle/enigma/enigma-0.92.ebuild b/games-puzzle/enigma/enigma-0.92.ebuild deleted file mode 100644 index a8d5dde83090..000000000000 --- a/games-puzzle/enigma/enigma-0.92.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/enigma/enigma-0.92.ebuild,v 1.3 2006/10/05 18:11:51 nyhm 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="~amd64 ppc ~sparc x86" -IUSE="nls" - -RDEPEND="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 - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix up the locale install location - if use nls ; then - sed -i \ - -e "/^datadir/s:=.*:= /usr/share:" \ - po/Makefile.in.in \ - src/Makefile.am \ - || die "sed failed" - fi - - # thanks, we'll handle the doc install ourselves. - sed -i \ - -e 's/: install-docDATA/:/' \ - -e '/^SUBDIRS/s/doc//' Makefile.in \ - || die "sed failed" - - epatch "${FILESDIR}"/${P}-gcc41.patch -} - -src_compile() { - egamesconf \ - --disable-dependency-tracking \ - --enable-optimize \ - $(use_enable nls) \ - || 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 \ - doc/{TODO,CREATING-LEVELS,HACKING} - dohtml -r doc/* - doman doc/enigma.6 - prepgamesdirs -} |