blob: cbfcc9b99b0700307e429435bbf7dcf74711939c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils cmake-utils subversion
DESCRIPTION="OpenCOLLADA is a stream based reader and writer library for COLLADA files"
HOMEPAGE="http://www.opencollada.org/"
LICENSE="MIT"
ESVN_REPO_URI="http://opencollada.googlecode.com/svn/trunk"
ESVN_PROJECT="opencollada-trunk"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
DEPEND=">=dev-libs/libxml2-2.7.8-r1"
RDEPEND="${DEPEND}"
src_install() {
cmake-utils_src_install
dobin ${CMAKE_BUILD_DIR}/bin/OpenCOLLADAValidator
}
|