blob: b83646861a99b0d7c10e77a020b53109eace66bb (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit eutils flag-o-matic multilib versionator
DESCRIPTION="NETGEN is an automatic 3d tetrahedral mesh generator"
HOMEPAGE="http://www.hpfem.jku.at/netgen/"
SRC_URI="mirror://sourceforge/netgen-mesher/${P}.tar.gz"
LICENSE="LGPL-2.1"
KEYWORDS="~amd64 ~x86"
IUSE="-ffmpeg jpeg -mpi opencascade"
SLOT="0"
DEPEND="dev-tcltk/tix
dev-tcltk/togl:1.7
virtual/opengl
x11-libs/libXmu
opencascade? ( sci-libs/opencascade )
ffmpeg? ( media-video/ffmpeg )
jpeg? ( virtual/jpeg )
mpi? ( virtual/mpi ) "
RDEPEND="${DEPEND}"
# Note, MPI has not be tested.
src_configure() {
# This is not the most clever way to deal with these flags
# but --disable-xxx does not seem to work correcly, so...
local myconf="--with-togl=/usr/$(get_libdir)/Togl1.7"
if use opencascade; then
myconf="${myconf} --enable-occ --with-occ=$CASROOT"
append-ldflags -L$CASROOT/lin/$(get_libdir)
fi
use mpi && myconf="${myconf} --enable-parallel"
use ffmpeg && myconf="${myconf} --enable-ffmpeg"
use jpeg && myconf="${myconf} --enable-jpeglib"
append-flags -I/usr/include/togl-1.7
econf \
${myconf}
# This would be the more elegant way:
# econf \
# $(use_enable opencascade occ) \
# $(use_with opencascade "occ=$CASROOT") \
# $(use_enable mpi parallel) \
# $(use_enable ffmpeg) \
# $(use_enable jpeg jpeglib)
}
src_install() {
local NETGENDIR="/usr/share/netgen"
echo -e "NETGENDIR=${NETGENDIR} \nLDPATH=/usr/$(get_libdir)/Togl1.7" > ./99netgen
doenvd 99netgen
emake DESTDIR="${D}" install || die "make install failed"
mv "${D}"/usr/bin/{*.tcl,*.ocf} "${D}${NETGENDIR}"
# Install icon and .desktop for menu entry
doicon "${FILESDIR}"/${PN}.png || die "doicon failed"
domenu "${FILESDIR}"/${PN}.desktop || die "domenu failed"
}
pkg_postinst() {
elog "Please make sure to update your environment variables:"
elog "env-update && source /etc/profile"
elog "Netgen ebuild is still under development."
elog "Help us improve the ebuild in:"
elog "http://bugs.gentoo.org/show_bug.cgi?id=155424"
}
|