blob: ca0280fd568a51fe4c63cbb4c4636c6e134d9a85 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-board/qgo/qgo-1.5.4.ebuild,v 1.4 2008/03/21 16:49:57 nyhm Exp $
inherit eutils autotools qt3 games
DESCRIPTION="A Qt Go client and SGF editor"
HOMEPAGE="http://qgo.sourceforge.net/"
SRC_URI="mirror://sourceforge/qgo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
DEPEND="$(qt_min_version 3.3)"
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${P}-parallel.patch \
"${FILESDIR}"/${P}-gcc43.patch
sed -i 's:$(datadir):/usr/share:' \
templates/Makefile.in \
|| die "sed Makefile.in failed"
sed -i "s:/usr/share:${GAMES_DATADIR}:" \
templates/*.desktop \
|| die "sed .desktop failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
prepgamesdirs
}
|