Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 298011
Collapse All | Expand All

(-)FreeGo-4.ebuild.orig (-4 / +7 lines)
Lines 4-11 Link Here
4
4
5
EAPI="2"
5
EAPI="2"
6
6
7
inherit qt4 versionator
7
inherit qt4
8
MY_P=$(delete_version_separator '-' ${P})
8
MY_P=${P/-/}
9
9
10
DESCRIPTION="Tool for Free users, a french ISP, to manage their account"
10
DESCRIPTION="Tool for Free users, a french ISP, to manage their account"
11
HOMEPAGE="http://www.free-go.net/"
11
HOMEPAGE="http://www.free-go.net/"
Lines 14-20 Link Here
14
LICENSE="GPL-1"
14
LICENSE="GPL-1"
15
SLOT="0"
15
SLOT="0"
16
KEYWORDS="~x86"
16
KEYWORDS="~x86"
17
IUSE=""
17
IUSE="doc"
18
18
19
DEPEND="x11-libs/qt-core:4
19
DEPEND="x11-libs/qt-core:4
20
	x11-libs/qt-gui:4"
20
	x11-libs/qt-gui:4"
Lines 30-35 Link Here
30
30
31
src_compile() {
31
src_compile() {
32
	eqmake4 ${MY_P}.pro
32
	eqmake4 ${MY_P}.pro
33
	emake || die "emake failed"
33
}
34
}
34
35
35
src_install() {
36
src_install() {
Lines 38-42 Link Here
38
		install || die "emake install failed"
39
		install || die "emake install failed"
39
40
40
	dobin ${PN}
41
	dobin ${PN}
41
	dodoc "Guide d'utilisation de FreeGo.pdf" || die
42
	if use doc; then
43
		dodoc "Guide d'utilisation de FreeGo.pdf" || die "dodoc failed"
44
	fi
42
}
45
}

Return to bug 298011