22 lines
544 B
Bash
22 lines
544 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="Per-Face Texture Mapping for Production Rendering"
|
|
HOMEPAGE="http://ptex.us/"
|
|
SRC_URI="https://github.com/wdas/ptex/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
RDEPEND="sys-libs/zlib"
|
|
DEPEND="${RDEPEND}
|
|
app-doc/doxygen"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=( -DCMAKE_INSTALL_DOCDIR="${EPREFIX}"/usr/share/doc/${PF}/html )
|
|
cmake-utils_src_configure
|
|
}
|