diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2007-01-08 07:16:16 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2007-01-08 07:16:16 +0000 |
commit | d83a695040cd0a8d513b3a269bc4b0c448c17cb3 (patch) | |
tree | d7aa6adb0f2cb88c834904e9b5657dc96d8b7a95 /games-board | |
parent | Drop flag filtering as it seemed to be a gcc-3.4.x bug and we've since moved ... (diff) | |
download | gentoo-2-d83a695040cd0a8d513b3a269bc4b0c448c17cb3.tar.gz gentoo-2-d83a695040cd0a8d513b3a269bc4b0c448c17cb3.tar.bz2 gentoo-2-d83a695040cd0a8d513b3a269bc4b0c448c17cb3.zip |
Adding more errors handling
(Portage version: 2.1.1-r2)
Diffstat (limited to 'games-board')
-rw-r--r-- | games-board/grhino/ChangeLog | 5 | ||||
-rw-r--r-- | games-board/grhino/grhino-0.16.0.ebuild | 10 |
2 files changed, 7 insertions, 8 deletions
diff --git a/games-board/grhino/ChangeLog b/games-board/grhino/ChangeLog index ef435471e4df..9a47d459d636 100644 --- a/games-board/grhino/ChangeLog +++ b/games-board/grhino/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-board/grhino # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/ChangeLog,v 1.1 2007/01/08 07:08:44 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/ChangeLog,v 1.2 2007/01/08 07:16:16 tupone Exp $ + + 08 Jan 2007; <tupone@gentoo.org> grhino-0.16.0.ebuild: + Adding more errors handling *grhino-0.16.0 (08 Jan 2007) diff --git a/games-board/grhino/grhino-0.16.0.ebuild b/games-board/grhino/grhino-0.16.0.ebuild index b363367e385e..20f16c46999f 100644 --- a/games-board/grhino/grhino-0.16.0.ebuild +++ b/games-board/grhino/grhino-0.16.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/grhino-0.16.0.ebuild,v 1.1 2007/01/08 07:08:44 tupone Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-board/grhino/grhino-0.16.0.ebuild,v 1.2 2007/01/08 07:16:16 tupone Exp $ inherit eutils games @@ -31,13 +31,9 @@ src_compile() { } src_install() { - use gnome && dogamesbin ${PN} \ - || die "installing the binary failed" - use gtp && dogamesbin gtp-rhino \ - || die "installing the binary failed" - make install DESTDIR=${D} + make install DESTDIR=${D} || die "make install failed" - dodoc ChangeLog NEWS README TODO + dodoc ChangeLog NEWS README TODO || die "installing docs failed" doicon ${PN}.png make_desktop_entry ${PN} "GRhino" ${PN}.png |