blob: ed863e4712c07c18c8f48df494eab6f9eca1f342 (
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-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-rpg/nwn-shadowlordsdreamcatcherdemon/nwn-shadowlordsdreamcatcherdemon-1.ebuild,v 1.1 2011/05/19 05:38:15 calchan Exp $
inherit games
DESCRIPTION="The bundled Shadowlords, Dreamcatcher, and Demon campaigns by Hall-of-Famer Adam Miller"
HOMEPAGE="http://www.adamandjamie.com/mod/nwn_campaign.aspx"
SRC_URI="http://vnfiles.ign.com/nwvault.ign.com/fms/files/modules/4273/ShadowlordsDreamcatcherDemon.exe"
LICENSE="as-is"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
DEPEND="app-arch/p7zip"
RDEPEND="games-rpg/nwn"
src_unpack() {
7z x "${DISTDIR}/ShadowlordsDreamcatcherDemon.exe" || die "Unpacking failed"
}
src_install() {
insinto "${GAMES_PREFIX_OPT}"/nwn/modules
doins *.mod || die "Installing modules failed"
insinto "${GAMES_PREFIX_OPT}"/nwn/hak
doins *.hak || die "Installing hak files failed"
insinto "${GAMES_PREFIX_OPT}"/nwn/music
doins *.bmu || die "Installing music failed"
insinto "${GAMES_PREFIX_OPT}"/nwn/movies
doins *.bik || die "Installing movies failed"
insinto "${GAMES_PREFIX_OPT}"/nwn/shadowlords_dreamcatcher_demon
doins *.txt || die "Installing documentation failed"
prepgamesdirs
}
|