diff options
-rw-r--r-- | games-misc/groach/ChangeLog | 7 | ||||
-rw-r--r-- | games-misc/groach/groach-0.4.0.ebuild | 12 |
2 files changed, 12 insertions, 7 deletions
diff --git a/games-misc/groach/ChangeLog b/games-misc/groach/ChangeLog index dffe92d23162..15cc432e0d1f 100644 --- a/games-misc/groach/ChangeLog +++ b/games-misc/groach/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-misc/groach -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/groach/ChangeLog,v 1.5 2005/06/15 18:43:01 wolf31o2 Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-misc/groach/ChangeLog,v 1.6 2006/10/05 17:59:12 nyhm Exp $ + + 05 Oct 2006; Tristan Heaven <nyhm@gentoo.org> groach-0.4.0.ebuild: + Fix gettext dependency 15 Jun 2005; Chris Gianelloni <wolf31o2@gentoo.org> groach-0.4.0.ebuild: Removed INSTALL file. diff --git a/games-misc/groach/groach-0.4.0.ebuild b/games-misc/groach/groach-0.4.0.ebuild index 86191b6ffa42..30beacb3c471 100644 --- a/games-misc/groach/groach-0.4.0.ebuild +++ b/games-misc/groach/groach-0.4.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-misc/groach/groach-0.4.0.ebuild,v 1.5 2005/06/15 18:43:01 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-misc/groach/groach-0.4.0.ebuild,v 1.6 2006/10/05 17:59:12 nyhm Exp $ DESCRIPTION="all-time best the xroach returns to GNOME" HOMEPAGE="http://home.catv.ne.jp/pp/ginoue/software/groach/" @@ -11,17 +11,19 @@ SLOT="0" KEYWORDS="x86" IUSE="nls" -DEPEND="=x11-libs/gtk+-1.2* +RDEPEND="=x11-libs/gtk+-1.2* gnome-base/gnome-core >=gnome-base/gnome-libs-1.0.0 + nls? ( virtual/libintl )" +DEPEND="${RDEPEND} nls? ( sys-devel/gettext )" src_compile() { - econf `use_enable nls` || die + econf $(use_enable nls) || die emake || die } src_install() { einstall || die - dodoc ABOUT-NLS AUTHORS ChangeLog NEWS README TODO || die + dodoc AUTHORS ChangeLog NEWS README TODO || die } |