blob: 2144d4448c485c68dd36b8f729d783e874470171 (
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 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
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-core:4 x11-libs/qt-gui:4 x11-libs/qt-sql:4 )
=x11-libs/qt-4.3*:4 )
dosbox? ( games-emulation/dosbox )
scummvm? ( games-engines/scummvm )"
RDEPEND=${DEPEND}
QT4_BUILT_WITH_USE_CHECK="gif jpeg png sqlite3"
S=${WORKDIR}/${MY_P}
src_compile(){
eqmake4 "${PN}".pro
emake || die "Compile Failed"
}
src_install(){
emake INSTALL_ROOT="${D}" install || die "Install Failed"
}
pkg_postinst(){
elog "The GUI is by default in Spanish."
elog "If you need it, English is available on the Options Menu."
}
|