diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 05:03:15 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2004-03-24 05:03:15 +0000 |
commit | 0cf7b898139c53c5ffaf3bcedad402dbffbbd277 (patch) | |
tree | 0c15c44d64687bb2aa82f6e6940f7129fde83f71 /games-puzzle/xbomb | |
parent | IUSE; don't rdepend on sed; tidy (diff) | |
download | historical-0cf7b898139c53c5ffaf3bcedad402dbffbbd277.tar.gz historical-0cf7b898139c53c5ffaf3bcedad402dbffbbd277.tar.bz2 historical-0cf7b898139c53c5ffaf3bcedad402dbffbbd277.zip |
don't rdepend on sed; tidy
Diffstat (limited to 'games-puzzle/xbomb')
-rw-r--r-- | games-puzzle/xbomb/ChangeLog | 7 | ||||
-rw-r--r-- | games-puzzle/xbomb/xbomb-2.1-r1.ebuild | 22 |
2 files changed, 17 insertions, 12 deletions
diff --git a/games-puzzle/xbomb/ChangeLog b/games-puzzle/xbomb/ChangeLog index e2a42f3eae6f..7f2832f8884b 100644 --- a/games-puzzle/xbomb/ChangeLog +++ b/games-puzzle/xbomb/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-puzzle/xbomb -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/ChangeLog,v 1.2 2003/09/10 15:46:19 vapier Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/ChangeLog,v 1.3 2004/03/24 05:03:15 mr_bones_ Exp $ + + 23 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> xbomb-2.1-r1.ebuild: + don't rdepend on sed; tidy *xbomb-2.1-r1 (28 Jun 2003) diff --git a/games-puzzle/xbomb/xbomb-2.1-r1.ebuild b/games-puzzle/xbomb/xbomb-2.1-r1.ebuild index a24e80b539e5..48eb4a27fbf3 100644 --- a/games-puzzle/xbomb/xbomb-2.1-r1.ebuild +++ b/games-puzzle/xbomb/xbomb-2.1-r1.ebuild @@ -1,19 +1,21 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/xbomb-2.1-r1.ebuild,v 1.3 2004/02/03 20:50:09 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/xbomb/xbomb-2.1-r1.ebuild,v 1.4 2004/03/24 05:03:15 mr_bones_ Exp $ inherit eutils games DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid" -SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/strategy/${P}.tgz" HOMEPAGE="http://www.gedanken.demon.co.uk/xbomb/" +SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/strategy/${P}.tgz" KEYWORDS="x86" LICENSE="GPL-2" SLOT="0" IUSE="" -DEPEND="virtual/x11 +RDEPEND="virtual/x11 + virtual/glibc" +DEPEND="${RDEPEND} >=sys-apps/sed-4" src_unpack() { @@ -21,21 +23,21 @@ src_unpack() { epatch ${FILESDIR}/${P}.diff sed -i \ -e "/^CFLAGS/ { s:=.*:=${CFLAGS}: }" \ - -e "s:/usr/bin:${GAMES_BINDIR}:" ${S}/Makefile || \ - die "sed Makefile failed" + -e "s:/usr/bin:${GAMES_BINDIR}:" ${S}/Makefile \ + || die "sed Makefile failed" sed -i \ - -e "s:/var/tmp:/var/games:g" ${S}/hiscore.c || \ - die "sed hiscore.c failed" + -e "s:/var/tmp:/var/games:g" ${S}/hiscore.c \ + || die "sed hiscore.c failed" } src_compile() { - emake || die + emake || die "emake failed" } src_install() { einstall DESTDIR=${D} || die - dodoc README LSM || die - keepdir /var/games || die + dodoc README LSM + dodir /var/games touch ${D}/var/games/xbomb{3,4,6}.hi || die "touch failed" fperms 664 /var/games/xbomb{3,4,6}.hi || die |