blob: 16030f4db50fe481055214009710dc443dc21c99 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit games
DESCRIPTION="Game engine for quiz shows based upon multiple choice questions."
HOMEPAGE="http://quimeleon.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND=">=dev-cpp/libxmlpp-2.6
dev-cpp/gtkmm:2.4
>=gnome-base/librsvg-2.8.1
>=media-libs/libao-0.8.6
>=media-libs/libvorbis-1.1"
RDEPEND="${DEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
prepgamesdir
}
|