67bfa3a98d
Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Horea Christian <chr@chymera.eu>
47 lines
1.3 KiB
Bash
47 lines
1.3 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Feature-enhanced open source re-implementation of Caesar III"
|
|
HOMEPAGE="https://github.com/Keriew/augustus"
|
|
SRC_URI="https://github.com/Keriew/augustus/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="AGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
media-libs/libpng
|
|
media-libs/libsdl2
|
|
media-libs/sdl2-mixer
|
|
"
|
|
RDEPEND=""
|
|
|
|
src_test() {
|
|
sed -i -e "s: && cd \.\. && \./coverage.sh::" runtests.sh || die
|
|
./runtests.sh || die "test phase failed"
|
|
}
|
|
|
|
src_install() {
|
|
insinto /etc/profile.d
|
|
doins "${FILESDIR}"/90augustus.sh
|
|
cmake_src_install
|
|
}
|
|
|
|
pkg_postinst() {
|
|
ewarn "Augustus requires you to download the original Caesar 3 resources."
|
|
ewarn
|
|
ewarn "You need to obtain these files from a vendor of the proprietary software."
|
|
ewarn "You will then need to copy the 'app' directory into '~/.cache/julius/'."
|
|
ewarn "One way to obtain this directory is to download the GOG Cesar 3 edition."
|
|
ewarn "You can then produce this directory by running:"
|
|
ewarn " innoextract -m setup_caesar3_2.0.0.9.exe"
|
|
ewarn
|
|
ewarn "Lastly, run 'source /etc/profile' to refresh your environment and be able"
|
|
ewarn "to start the game directly by running 'augustus' in the command line."
|
|
}
|