# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=2 inherit eutils games unpacker DESCRIPTION="High quality custom content addon for Neverwinter Nights" HOMEPAGE="http://nwvault.ign.com/cep/" SRC_URI="http://vnfiles.ign.com/nwvault.ign.com/fms/files/hakpaks/7000/CEPv2_full.rar" LICENSE="all-rights-reserved" SLOT="2" KEYWORDS="-* amd64 x86" IUSE="" RESTRICT="mirror bindist" DEPEND="" RDEPEND=">=games-rpg/nwn-1.68" S=${WORKDIR} dir=${GAMES_PREFIX_OPT}/nwn pkg_setup() { games_pkg_setup if ! has_version 'games-rpg/nwn-data[hou,sou]' ; then eerror "${P} requires NWN v1.68, Shadows of Undrentide, and Hordes of" eerror "the Underdark. Please make sure you have all three before using" eerror "this patch." die "Requirements not met" fi } src_install() { local i for i in hak tlk erf do insinto "${dir}"/${i} doins *.${i} || die "${i} failed" done insinto "${dir}"/modules doins *.mod || die "mod failed" insinto "${dir}"/cep doins *.pdf || die "pdf failed" prepgamesdirs }