# Copyright 2020-2021 Daniel Scharrer # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 CDROM_OPTIONAL="yes" inherit eutils cdrom check-reqs DESCRIPTION="Arx Fatalis data files" HOMEPAGE="https://web.archive.org/web/20180201053030/https://www.arkane-studios.com/uk/arx.php" SRC_URI="cdinstall? ( https://cdn.bethsoft.com/arxfatalis/patches/1.21/ArxFatalis_1.21_MULTILANG.exe ) gog? ( setup_arx_fatalis_2.0.0.7.exe )" LICENSE="cdinstall? ( all-rights-reserved ) gog? ( GOG-EULA )" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="gog" REQUIRED_USE="|| ( !cdinstall !gog )" RESTRICT="binchecks mirror gog? ( fetch )" RDEPEND="games-rpg/arx-libertatis" DEPEND="${RDEPEND} gog? ( app-arch/innoextract[lzma] ) cdinstall? ( || ( app-arch/cabextract app-arch/libarchive app-arch/p7zip ) app-arch/innoextract[lzma] )" CHECKREQS_DISK_BUILD="621M" CHECKREQS_DISK_USR="617M" S="${WORKDIR}" pkg_nofetch() { einfo "Please download ${A} from your GOG.com account after buying Arx Fatalis" einfo "and put it into your DISTDIR directory." } src_unpack() { local arx_install_data_options=( --no-patch --batch --data-dir="${S}" ) if use gog ; then arx_install_data_options+=( --source="${DISTDIR}/${A}" ) else if use cdinstall ; then cdrom_get_cds "bin/Arx.ttf" arx_install_data_options+=( --source="${CDROM_ROOT}" --patch="${DISTDIR}/${A}" ) else if [ -z "${ARX_FATALIS_SRC}" ] ; then eerror "You need either set ARX_FATALIS_SRC to point to an existing Arx Fatalis" eerror "installation or use the gog or cdinstall use flags:" eerror " export ARX_FATALIS_SRC=/path/to/arx" die "Could not find game data." else arx_install_data_options+=( --source="${ARX_FATALIS_SRC}" ) fi ; fi ; fi arx-install-data "${arx_install_data_options[@]}" } src_install() { insinto /usr/share/arx doins -r * }