blob: 43f2e8ad1312419e750ae0b74c7e6c36e0b22601 (
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
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/nwmovies/nwmovies-0.2.ebuild,v 1.1 2008/08/02 14:00:15 calchan Exp $
inherit eutils games
UPSTREAM_VERSION="nwmovies-v4-public.20080512.v4rc1"
DESCRIPTION="Play Neverwinter Nights movies inside the Linux client."
HOMEPAGE="http://home.woh.rr.com/nwmovies/"
SRC_URI="${HOMEPAGE}${UPSTREAM_VERSION}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=">=games-rpg/nwn-data-1.29-r3"
RDEPEND="${DEPEND}
>=games-rpg/nwn-1.68-r4
media-video/binkplayer"
S="${WORKDIR}"
DESTDIR="${GAMES_PREFIX_OPT}/nwn"
QA_TEXTRELS="opt/nwn/nwmovies/binklib.so opt/nwn/nwmovies.so"
QA_WX_LOAD="opt/nwn/nwmovies.so"
QA_EXECSTACK="opt/nwn/nwmovies.so"
QA_DT_HASH="opt/nwn/nwmovies/binklib.so opt/nwn/nwmovies/libdis/libdisasm.so opt/nwn/nwmovies.so"
pkg_setup() {
games_pkg_setup
built_with_use games-rpg/nwn-data videos || die "nwn-data requires USE=videos"
}
src_install() {
exeinto "${DESTDIR}"
doexe nwmovies.so nwmovies.pl || die "Installation failed"
exeinto "${DESTDIR}/nwmovies"
doexe nwmovies/binklib.so || die "Installation failed"
exeinto "${DESTDIR}/nwmovies/libdis"
doexe nwmovies/libdis/libdisasm.so || die "Installation failed"
insinto "${DESTDIR}"
doins nwmovies/*.txt
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
elog "When starting nwn the next time, nwmovies will scan the nwmain"
elog "binary for its hooks, store this information in:"
elog " \${HOME}/.nwn/\${LANG}/nwmovies.ini"
elog "and exit. This is normal."
elog
elog "You will have to remove this file whenever you update nwn."
elog
elog "If you have sound issues in NWN only when using nwmovies, then"
elog "you may need to properly setup /etc/asound.conf or the equivalent"
elog "per-user \${HOME}/.asound.conf, see comment #31 in bug #106789."
}
|