diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-26 03:21:45 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-26 03:21:45 +0000 |
commit | 1420a73d5c60c28f1468a9deca5c934027550f86 (patch) | |
tree | 7fdeb1ea2aebcf6cb202a42b199768aa1812a5e6 /games-puzzle/ltris | |
parent | old (diff) | |
download | gentoo-2-1420a73d5c60c28f1468a9deca5c934027550f86.tar.gz gentoo-2-1420a73d5c60c28f1468a9deca5c934027550f86.tar.bz2 gentoo-2-1420a73d5c60c28f1468a9deca5c934027550f86.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-puzzle/ltris')
-rw-r--r-- | games-puzzle/ltris/ltris-1.0.11.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/games-puzzle/ltris/ltris-1.0.11.ebuild b/games-puzzle/ltris/ltris-1.0.11.ebuild deleted file mode 100644 index 75f410d4c420..000000000000 --- a/games-puzzle/ltris/ltris-1.0.11.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/ltris/ltris-1.0.11.ebuild,v 1.8 2008/03/07 19:16:33 wolf31o2 Exp $ - -WANT_AUTOCONF="latest" -WANT_AUTOMAKE="latest" -inherit autotools eutils games - -DESCRIPTION="very polished Tetris clone" -HOMEPAGE="http://lgames.sourceforge.net/" -SRC_URI="mirror://sourceforge/lgames/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="nls" - -RDEPEND="media-libs/libsdl - media-libs/sdl-mixer - nls? ( virtual/libintl )" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -src_unpack() { - unpack ${A} - cd "${S}" - if use nls ; then - sed -i \ - -e '/^localedir/s:$(datadir):/usr/share:' \ - po/Makefile.in.in \ - || die "sed failed" - sed -i \ - -e '/^localedir/s:$datadir:/usr/share:' \ - configure.in \ - || die "sed failed" - AT_M4DIR=m4 eautoreconf - fi -} - -src_compile() { - egamesconf \ - --disable-dependency-tracking \ - --with-highscore-path="${GAMES_STATEDIR}" \ - $(use_enable nls) || die - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog README TODO - newicon icons/ltris48.xpm ${PN}.xpm - make_desktop_entry ltris LTris ${PN} - prepgamesdirs -} |