49 lines
898 B
Bash
49 lines
898 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit autotools-utils
|
|
|
|
MY_P="${P/q/Q}"
|
|
|
|
DESCRIPTION="A glue between Nokia Qt4 and Coin3D"
|
|
HOMEPAGE="http://www.coin3d.org/lib/quarter"
|
|
SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${MY_P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="~amd64 ~x86"
|
|
SLOT="0"
|
|
IUSE="debug doc static-libs"
|
|
|
|
RDEPEND="
|
|
>=media-libs/coin-3.0.0[javascript]
|
|
dev-qt/qtcore:4
|
|
dev-qt/qtgui:4
|
|
dev-qt/qtopengl:4
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )
|
|
"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${P}-gcc44.patch"
|
|
)
|
|
|
|
DOCS=(AUTHORS NEWS README)
|
|
|
|
src_configure() {
|
|
local myeconfargs=(
|
|
htmldir="${ROOT}usr/share/doc/${PF}/html"
|
|
--enable-pkgconfig
|
|
--with-coin
|
|
$(use_enable debug)
|
|
$(use_enable debug symbols)
|
|
$(use_enable doc html)
|
|
)
|
|
autotools-utils_src_configure
|
|
}
|