blob: 088fa0a66e68d314a303ee8808799cd16a2c8d12 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/qtads-2.1.3.ebuild,v 1.1 2012/04/12 17:53:10 mr_bones_ Exp $
EAPI=2
inherit eutils qt4-r2 games
DESCRIPTION="Multimedia interpreter for TADS text adventures"
HOMEPAGE="http://qtads.sourceforge.net"
SRC_URI="mirror://sourceforge/qtads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="x11-libs/qt-gui:4
media-libs/libsdl[audio]
media-libs/sdl-mixer[midi,vorbis]
media-libs/sdl-sound[mp3]"
src_configure() {
qt4-r2_src_configure
}
src_install() {
dogamesbin qtads || die
doman qtads.6
dodoc AUTHORS BUGS NEWS README
make_desktop_entry qtads QTads
prepgamesdirs
}
|