blob: ac6ea56e5114e3be843b46326eca61f791ce8230 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit flag-o-matic qmake-utils
DESCRIPTION="C++ library based on Qt that eases the creation of OpenGL 3D viewers"
HOMEPAGE="http://www.libqglviewer.com"
SRC_URI="http://www.libqglviewer.com/src/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/qt5"
KEYWORDS="~amd64 ~arm"
IUSE="designer examples"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtopengl:5
dev-qt/qtwidgets:5
dev-qt/qtxml:5
virtual/glu
virtual/opengl
"
RDEPEND="${DEPEND}
designer? ( dev-qt/designer:5 )
"
src_configure() {
append-ldflags "-LQGLViewer"
sed -e 's#designerPlugin##' -i ${P}.pro || die
use examples || sed -e 's#examples examples/contribs##' -i ${P}.pro || die
eqmake5 ${P}.pro \
PREFIX="${EPREFIX}/usr" \
LIB_DIR="${EPREFIX}/usr/$(get_libdir)" \
DOC_DIR="${EPREFIX}/usr/share/doc/${PF}/html"
if use designer ; then
cd "designerPlugin" || die
eqmake5 designerPlugin.pro
fi
}
src_install() {
emake INSTALL_ROOT="${D}" install
dodoc README
if use designer ; then
cd "${S}/designerPlugin" || die
emake INSTALL_ROOT="${D}" install
fi
if use examples ; then
exeinto /usr/bin/${PN}-examples
doexe $(find "${S}/examples" -type f -executable ! -name '*.vcproj')
fi
}
|