blob: 5d031da6aa374f014ff57b7171fcfc93e3943da1 (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/qtads-2.1.1.ebuild,v 1.3 2011/05/11 08:47:23 phajdan.jr 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
}
|