diff options
author | Christoph Mende <angelos@gentoo.org> | 2011-03-28 16:41:12 +0000 |
---|---|---|
committer | Christoph Mende <angelos@gentoo.org> | 2011-03-28 16:41:12 +0000 |
commit | da2bdef359e3d3f33d7b644829c944a23f433276 (patch) | |
tree | 09075112894db90a54f976bb97eb00ee4a8c4176 /dev-util/ghh | |
parent | Fixed gtk+ dep and some cleanup (diff) | |
download | gentoo-2-da2bdef359e3d3f33d7b644829c944a23f433276.tar.gz gentoo-2-da2bdef359e3d3f33d7b644829c944a23f433276.tar.bz2 gentoo-2-da2bdef359e3d3f33d7b644829c944a23f433276.zip |
Fixed gtk+ dep and some cleanup
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/ghh')
-rw-r--r-- | dev-util/ghh/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/ghh/ghh-9999.ebuild | 22 |
2 files changed, 16 insertions, 13 deletions
diff --git a/dev-util/ghh/ChangeLog b/dev-util/ghh/ChangeLog index 3b463243e360..9562c7de8eb6 100644 --- a/dev-util/ghh/ChangeLog +++ b/dev-util/ghh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/ghh -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ChangeLog,v 1.3 2010/03/17 17:12:15 sping Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ChangeLog,v 1.4 2011/03/28 16:41:12 angelos Exp $ + + 28 Mar 2011; Christoph Mende <angelos@gentoo.org> ghh-9999.ebuild: + Fixed gtk+ dep and some cleanup 17 Mar 2010; Sebastian Pipping <sping@gentoo.org> ghh-9999.ebuild: Propagate move of dev-util/git to dev-vcs/git diff --git a/dev-util/ghh/ghh-9999.ebuild b/dev-util/ghh/ghh-9999.ebuild index 302010772cee..261fba23aebd 100644 --- a/dev-util/ghh/ghh-9999.ebuild +++ b/dev-util/ghh/ghh-9999.ebuild @@ -1,12 +1,14 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ghh-9999.ebuild,v 1.4 2010/03/17 17:12:15 sping Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/ghh/ghh-9999.ebuild,v 1.5 2011/03/28 16:41:12 angelos Exp $ -EGIT_REPO_URI="http://jean-francois.richard.name/ghh.git" -inherit git autotools +EAPI=3 +inherit autotools git DESCRIPTION="a tool to track the history and make backups of your home directory" HOMEPAGE="http://jean-francois.richard.name/ghh/" +EGIT_REPO_URI="http://jean-francois.richard.name/${PN}.git" +EGIT_BOOTSTRAP="autogen.sh" LICENSE="GPL-2" SLOT="0" @@ -14,9 +16,9 @@ KEYWORDS="" IUSE="" # probably needs more/less crap listed here ... -RDEPEND="=x11-libs/gtk+-2* - =dev-libs/glib-2* - =gnome-base/libgnome-2* +RDEPEND="x11-libs/gtk+:2 + dev-libs/glib:2 + gnome-base/libgnome app-text/gnome-doc-utils >=app-text/asciidoc-8 dev-vcs/git @@ -24,10 +26,8 @@ RDEPEND="=x11-libs/gtk+-2* DEPEND="${RDEPEND} dev-util/pkgconfig" -src_unpack() { - git_src_unpack - cd "${S}" - NOCONFIGURE=yes ./autogen.sh || die +src_prepare() { + NOCONFIGURE=yes git_src_prepare } src_install() { |