You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-strategy/colobot-data/colobot-data-0.1.11.ebuild

54 lines
1.4 KiB

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Data package for colobot (Colonize with Bots)"
HOMEPAGE="https://colobot.info/"
SRC_URI="
https://github.com/colobot/colobot-data/archive/colobot-gold-${PV}-alpha.tar.gz -> ${P}.tar.gz
music-ogg? ( https://colobot.info/files/music/colobot-music_ogg_${PV}-alpha.tar.gz -> ${P}-music-ogg.tar.gz )
music-flac-convert? ( https://colobot.info/files/music/colobot-music_flac_${PV}-alpha.tar.gz -> ${P}-music-flac.tar.gz )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+music music-flac-convert +music-ogg"
REQUIRED_USE="
music? ( ^^ ( music-flac-convert music-ogg ) )
music-flac-convert? ( music )
music-ogg? ( music )"
DEPEND="
music-flac-convert? ( media-sound/vorbis-tools )"
S="${WORKDIR}/${PN}-colobot-gold-${PV}-alpha"
src_unpack() {
unpack "${P}.tar.gz"
cd "${S}" || die
if use music; then
tar xf "${DISTDIR}/${P}"-music-*.tar.gz -C "${S}/music" || die "Failed to unpack music"
fi
}
src_prepare() {
cmake-utils_src_prepare
if use music; then
sed -i -e '/find_program(WGET wget)/d' -e '/if(NOT WGET)/,+2 d' music/CMakeLists.txt || die
fi
}
src_configure() {
local mycmakeargs=(
-DMUSIC=$(usex music)
-DMUSIC_FLAC=$(usex music-flac-convert)
-DMUSIC_QUALITY="${COLOBOT_DATA_MUSIC_QUALITY:-4}"
)
cmake-utils_src_configure
}