You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
984 B
47 lines
984 B
# Copyright 1999-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
MY_PN="osgQt"
|
|
MY_P=${MY_PN}-${PV}
|
|
inherit cmake
|
|
|
|
DESCRIPTION="Qt support for OpenSceneGraph"
|
|
HOMEPAGE="https://www.openscenegraph.com/"
|
|
SRC_URI="https://github.com/openscenegraph/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz"
|
|
|
|
LICENSE="wxWinLL-3 LGPL-2.1"
|
|
SLOT="0/145" # NOTE: CHECK WHEN BUMPING! Subslot is SOVERSION
|
|
KEYWORDS="amd64 ~ppc64 x86"
|
|
IUSE="examples"
|
|
|
|
RDEPEND="
|
|
>=dev-games/openscenegraph-3.6.3:=
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtopengl:5
|
|
dev-qt/qtwidgets:5
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.5.5-cmake.patch
|
|
"${FILESDIR}"/${PN}-3.5.5-qt-5.11b3.patch
|
|
)
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DDYNAMIC_OPENSCENEGRAPH=ON
|
|
-DDESIRED_QT_VERSION=5
|
|
-DBUILD_OSG_EXAMPLES=$(usex examples)
|
|
-DCMAKE_DISABLE_USE_FIND_PACKAGE_Qt5WebKitWidgets=ON
|
|
)
|
|
cmake_src_configure
|
|
}
|