blob: d3f1eec46877c0e391b16a56064935d677d307df (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit cmake git-r3
DESCRIPTION="Recreation of Doom64 with additional modding features"
HOMEPAGE="http://doom64ex.wordpress.com/"
EGIT_REPO_URI="https://github.com/svkaiser/Doom64EX.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="system-fluidsynth"
RDEPEND="
media-libs/libsdl2
media-libs/sdl2-net
media-libs/libpng
sys-libs/zlib
system-fluidsynth? ( media-sound/fluidsynth )"
DEPEND="${RDEPEND}"
# S="${WORKDIR}/MilkyTracker-${PV}"
src_configure() {
local mycmakeargs=(
"-DENABLE_SYSTEM_FLUIDSYNTH=$(usex system-fluidsynth)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
}
|