blob: 328c8ed2d4b54d3ff178dc48816aabd051cd39d7 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-engines/qtads/qtads-1.6c.ebuild,v 1.3 2006/08/17 02:58:57 mr_bones_ Exp $
inherit flag-o-matic qt3 games
DESCRIPTION="QT based GUI interpreter for Tads2/Tads3 games"
HOMEPAGE="http://qtads.sourceforge.net/"
SRC_URI="mirror://sourceforge/qtads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc x86"
IUSE=""
DEPEND="$(qt_min_version 3)"
src_compile () {
append-flags -fno-strict-aliasing
addpredict "${QTDIR}"/etc/settings
qmake \
BIN_INSTALL="${GAMES_BINDIR}" \
DOC_INSTALL=/usr/share/doc/${PF} \
DATA_INSTALL="${GAMES_DATADIR}" \
qtads.pro
emake || die "emake failed"
}
src_install () {
dogamesbin qtads || die "dogamesbin failed"
insinto "${GAMES_DATADIR}/qtads/charmaps"
doins charmaps/*.tcp || die "doins failed"
insinto "${GAMES_DATADIR}/qtads/i18n"
doins qtads_de.qm || die "doins failed"
dodoc \
AUTHORS BUGS CREDITS INSTALL NEWS PORTABILITY README \
SOURCE_README TIPS TODO
doman qtads.6.gz
prepgamesdirs
}
|