blob: d74d66a4ad716d5a7fe103fe2c80c909fc031645 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils toolchain-funcs qt4
KEYWORDS="~x86"
DESCRIPTION="View and animate up to three functions in 3D-space in a completely interactive manner."
HOMEPAGE="http://www.kde-apps.org/content/show.php?content=43071"
SRC_URI="http://www.kde-apps.org/content/files/43071-zhu3d-${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND="$(qt4_min_version 4.0)
virtual/glu"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! built_with_use ">=x11-libs/qt-4.0" opengl; then
eerror "x11-libs/qt-4* has to be built with opengl support"
die "Missing opengl USE flag for x11-libs/qt"
fi
}
src_compile() {
qmake SYSDIR="/usr/share/${PN}/system" DOCDIR="/usr/share/doc/${P}/html" || die "qmake failed"
emake CXX=$(tc-getCXX) || die "emake failed"
}
src_install() {
dobin zhu3d
dodoc readme.txt
dohtml doc/*
insinto /usr/share/${PN}
doins -r work system
doicon system/icons/${PN}.png
make_desktop_entry ${PN} "Zhu3D: Interactive 3D function viewer" ${PN}.png "Qt;Science;Math"
}
|