blob: b7d4afabe31acb5b962a57a36e90a2a0ac229956 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="1"
inherit qt4
MY_P="libQGLViewer-${PV}"
DESCRIPTION="Simple 3D viewer class for Qt OpenGL applications"
HOMEPAGE="http://www.libqglviewer.com"
SRC_URI="http://www.libqglviewer.com/src/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="virtual/opengl
x11-libs/qt-gui:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}/QGLViewer
src_compile() {
eqmake4 QGLViewer.pro -o Makefile PREFIX=/usr
emake || die "emake QGLViewer failed"
cd ../designerPlugin
eqmake4 designerPlugin.pro -o Makefile \
INCLUDE_DIR=.. \
LIB_DIR=../QGLViewer
emake || die "emake designerPlugin failed"
}
src_install() {
INSTALL_ROOT="${D}" emake install_target install_include || die "install QGLViewer failed"
cd ../designerPlugin
INSTALL_ROOT="${D}" emake install_target || die "install QGLViewer failed"
dodoc ../README || die "installing README failed"
if use doc ; then
dohtml -r ../doc/* || die "installing html files failed"
docinto examples
dodoc ../examples/* || die "installing examples failed"
fi
}
|