diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-22 21:32:18 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2008-06-22 21:32:18 +0000 |
commit | df8403a0ddfbb72d6c0bf23dfba2599f09dbfe92 (patch) | |
tree | 5cc30138413e2e263f89193c073fea39b1b5067f /games-puzzle/xbomb | |
parent | old (diff) | |
download | gentoo-2-df8403a0ddfbb72d6c0bf23dfba2599f09dbfe92.tar.gz gentoo-2-df8403a0ddfbb72d6c0bf23dfba2599f09dbfe92.tar.bz2 gentoo-2-df8403a0ddfbb72d6c0bf23dfba2599f09dbfe92.zip |
old
(Portage version: 2.1.4.4)
Diffstat (limited to 'games-puzzle/xbomb')
-rw-r--r-- | games-puzzle/xbomb/files/xbomb-2.1.diff | 35 | ||||
-rw-r--r-- | games-puzzle/xbomb/xbomb-2.1-r1.ebuild | 41 |
2 files changed, 0 insertions, 76 deletions
diff --git a/games-puzzle/xbomb/files/xbomb-2.1.diff b/games-puzzle/xbomb/files/xbomb-2.1.diff deleted file mode 100644 index 945ac700be86..000000000000 --- a/games-puzzle/xbomb/files/xbomb-2.1.diff +++ /dev/null @@ -1,35 +0,0 @@ -diff -c xbomb-2.1/Makefile xbomb-2.1.new/Makefile -*** xbomb-2.1/Makefile 1996-01-20 16:02:46.000000000 -0500 ---- xbomb-2.1.new/Makefile 2002-11-13 10:31:30.000000000 -0500 -*************** -*** 27,34 **** - - OBJ=xbomb.o xwindow.o hiscore.o - -- INSTDIR=/usr/local -- - ######## - - xbomb : $(OBJ) ---- 27,32 ---- -*************** -*** 52,60 **** - - install : - strip xbomb -! install -d $(INSTDIR)/bin -! install -d $(INSTDIR)/man/man6 -! install -d $(INSTDIR)/lib/app-defaults -! install -m 755 xbomb $(INSTDIR)/bin -! install -m 644 xbomb.6 $(INSTDIR)/man/man6 -! install -m 644 xbomb.ad $(INSTDIR)/lib/app-defaults/XBomb ---- 50,58 ---- - - install : - strip xbomb -! install -d $(DESTDIR)/usr/bin -! install -d $(DESTDIR)/usr/share/man/man6 -! install -d $(DESTDIR)/etc/X11/app-defaults -! install -m 755 xbomb $(DESTDIR)/usr/bin -! install -m 644 xbomb.6 $(DESTDIR)/usr/share/man/man6 -! install -m 644 xbomb.ad $(DESTDIR)/etc/X11/app-defaults/XBomb diff --git a/games-puzzle/xbomb/xbomb-2.1-r1.ebuild b/games-puzzle/xbomb/xbomb-2.1-r1.ebuild deleted file mode 100644 index 1c4396fb78c0..000000000000 --- a/games-puzzle/xbomb/xbomb-2.1-r1.ebuild +++ /dev/null @@ -1,41 +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/xbomb/xbomb-2.1-r1.ebuild,v 1.15 2006/12/06 17:21:51 wolf31o2 Exp $ - -inherit eutils games - -DESCRIPTION="Minesweeper clone with hexagonal, rectangular and triangular grid" -HOMEPAGE="http://www.gedanken.demon.co.uk/xbomb/" -SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/games/strategy/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ia64 ppc ppc64 x86" -IUSE="" - -DEPEND="x11-libs/libXaw" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}.diff - sed -i \ - -e '/strip/d' \ - -e "/^CFLAGS/ { s:=.*:=${CFLAGS}: }" \ - -e "s:/usr/bin:${GAMES_BINDIR}:" \ - "${S}"/Makefile \ - || die "sed Makefile failed" - sed -i \ - -e "s:/var/tmp:${GAMES_STATEDIR}/${PN}:g" \ - "${S}"/hiscore.c \ - || die "sed hiscore.c failed" -} - -src_install() { - make DESTDIR="${D}" install || die "make install failed" - dodoc README LSM - dodir "${GAMES_STATEDIR}"/${PN} - touch "${D}/${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "touch failed" - fperms 660 "${GAMES_STATEDIR}"/${PN}/${PN}{3,4,6}.hi || die "fperms failed" - prepgamesdirs -} |