blob: 20cd7c52657106a0cb5237b0adc3d00aa53f8959 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/qgit-1.4.ebuild,v 1.2 2006/08/15 09:15:01 corsair Exp $
inherit qt3
MY_PV=${PV//_/}
MY_P=${PN}-${MY_PV}
DESCRIPTION="GUI interface for git/cogito SCM"
HOMEPAGE="http://digilander.libero.it/mcostalba/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND="=x11-libs/qt-3*"
RDEPEND="${DEPEND}
>=dev-util/git-1.3.1"
S=${WORKDIR}/${MY_P}
src_compile() {
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
dobin src/qgit
dodoc README ChangeLog
}
|