blob: 9a19d7672949de84e8c9c625347c7ed2761ac40c (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
HOMEPAGE="http://www.coin3d.org/"
DESCRIPTION="GUI binding for using Coin/Open Inventor with Xt/Motif"
SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE="debug doc static-libs"
RDEPEND="
<media-libs/coin-4
x11-libs/motif:0
virtual/opengl"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}/${PN}-1.3.0-pkgconfig-partial.patch"
)
DOCS=(AUTHORS ChangeLog HACKING NEWS README TODO BUGS.txt)
src_configure() {
local myeconfargs=(
htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
--disable-compact
--disable-html-help
--includedir="$(coin-config --includedir)"
--with-coin
--with-motif
$(use_enable debug)
$(use_enable debug profile)
$(use_enable doc html)
$(use_enable doc man)
)
default
# Remove SoXt from Libs.private (patch installs it in Libs)
sed -i -e '/Libs.private/s/ -lSoXt//' SoXt.pc || die
# Strip the default libdir
sed -i -e "s,-L%{_libdir} ,," soxt-default.cfg || die
}
|