blob: db1e1c2cac3f5af9ef1bed4ac6168a31a8995403 (
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
|
# Copyright 2006-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
QT4_BUILT_WITH_USE_CHECK="gif jpeg png sqlite3"
inherit qt4
MY_P="GR-lida-${PV}"
DESCRIPTION="Frontend for scummvm and dosbox"
HOMEPAGE="http://www.laisladelabandoware.es"
SRC_URI="http://dl.sharesource.org/grlida/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="dosbox scummvm"
DEPEND="|| ( ( x11-libs/qt-gui x11-libs/qt-sql )
<x11-libs/qt-4.4:4 )"
RDEPEND="${DEPEND}
dosbox? ( games-emulation/dosbox )
scummvm? ( games-engines/scummvm )"
S="${WORKDIR}"/"${MY_P}"
src_compile(){
eqmake4
emake || die "Compile Failed"
}
src_install(){
emake INSTALL_ROOT="${D}" install || die "Install Failed"
}
pkg_postinst(){
elog "The GUI is currently in Spanish."
elog "See bug 213983 for instructions about translation."
}
|