summaryrefslogtreecommitdiff
blob: 302010772cee927a12ef47f995d85fa6b19f141d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 1999-2010 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 $

EGIT_REPO_URI="http://jean-francois.richard.name/ghh.git"
inherit git autotools

DESCRIPTION="a tool to track the history and make backups of your home directory"
HOMEPAGE="http://jean-francois.richard.name/ghh/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""

# probably needs more/less crap listed here ...
RDEPEND="=x11-libs/gtk+-2*
	=dev-libs/glib-2*
	=gnome-base/libgnome-2*
	app-text/gnome-doc-utils
	>=app-text/asciidoc-8
	dev-vcs/git
	dev-lang/python"
DEPEND="${RDEPEND}
	dev-util/pkgconfig"

src_unpack() {
	git_src_unpack
	cd "${S}"
	NOCONFIGURE=yes ./autogen.sh || die
}

src_install() {
	emake install DESTDIR="${D}" || die
	dodoc AUTHORS ChangeLog MAINTAINERS NEWS README TODO
}