blob: dae7cd05853ce32b32816c695fd4f009b8662835 (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qgit/qgit-2.1.ebuild,v 1.4 2008/07/28 21:19:00 carlo Exp $
EAPI="1"
inherit qt4
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="2"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
DEPEND="|| ( x11-libs/qt-gui:4 =x11-libs/qt-4.3*:4 )"
RDEPEND="${DEPEND}
>=dev-util/git-1.5.3"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e '/^[[:space:]]*QMAKE_CXXFLAGS_RELEASE.*+=/s/-g3 -O[[:digit:]]//' src/src.pro
}
src_compile() {
eqmake4 || die "eqmake failed"
emake || die "emake failed"
}
src_install() {
newbin bin/qgit qgit4
dodoc README
}
pkg_postinst() {
elog "This is installed as qgit4 now so you can still use 1.5 series (Qt3-based)"
}
|