summaryrefslogtreecommitdiff
blob: 347bbcded35056689a512e5754394ed793e4415a (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
#

EAPI=2
inherit cmake-utils

DESCRIPTION="a renderlib for mikumiku dance pmd model and vmd motion files"
HOMEPAGE="http://frostworx.de/"
SRC_URI="http://frostworx.de/files/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="debug +sfml"

RDEPEND="sci-physics/bullet[-double-precision]
	sfml? ( media-libs/libsfml )"
DEPEND="${RDEPEND}"

src_configure() {
	local mycmakeargs=(
		$(cmake-utils_use debug DEBUG)
		$(cmake-utils_use !sfml NOSFML)
	)
	cmake-utils_src_configure
}