blob: 500c1f64211d1dd5579ebda01df4646617dfd6a0 (
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
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit gnome2-utils qmake-utils xdg flag-o-matic
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="media-libs/libsdl[sound]
media-libs/sdl-mixer[midi,vorbis]
media-libs/sdl-sound[mp3]
dev-qt/qtcore:5
dev-qt/qtgui:5"
RDEPEND="${DEPEND}"
src_configure() {
# bug 654356 temp fix
append-cxxflags -fpermissive
eqmake5 qtads.pro -after CONFIG-=silent
}
src_install() {
dobin qtads
dodoc AUTHORS HTML_TADS_LICENSE NEWS README
insinto /usr
doins -r share
}
pkg_preinst() {
gnome2_icon_savelist
xdg_pkg_preinst
}
pkg_postinst() {
gnome2_icon_cache_update
xdg_pkg_postinst
}
pkg_postrm() {
gnome2_icon_cache_update
xdg_pkg_postrm
}
|