blob: 6ce960b60bc80308127ad7176cfede321dc9dadd (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit elisp-common git-r3 qmake-utils xdg
SITEFILE="50${PN}-gentoo.el"
DESCRIPTION="The Programmers Solid 3D CAD Modeller"
HOMEPAGE="http://www.openscad.org/"
EGIT_REPO_URI="https://github.com/openscad/openscad.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="emacs"
DEPEND="
dev-cpp/eigen:3
dev-libs/boost:=
dev-libs/glib:2
dev-libs/gmp:0=
dev-libs/libzip:=
dev-libs/mpfr:0=
dev-qt/qtconcurrent:5
dev-qt/qtcore:5
dev-qt/qtdbus:5
dev-qt/qtgui:5[-gles2-only]
dev-qt/qtmultimedia:5[-gles2-only]
dev-qt/qtopengl:5
media-gfx/opencsg
media-libs/fontconfig:1.0
media-libs/freetype:2
>=media-libs/glew-2.0.0:*
media-libs/harfbuzz
sci-mathematics/cgal:=
>=x11-libs/qscintilla-2.9.4:=[qt5(+)]
emacs? ( >=app-editors/emacs-23.1:* )
"
RDEPEND="${DEPEND}"
src_prepare() {
default
sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die
# tries to call ccache even if it's not present otherwise
sed -i '/CONFIG += ccache/d' ${PN}.pro || die
}
src_configure() {
eqmake5 "${PN}.pro"
}
src_compile() {
default
if use emacs ; then
elisp-compile contrib/*.el
fi
}
src_install() {
emake install INSTALL_ROOT="${D}"
if use emacs; then
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
elisp-install ${PN} contrib/*.el contrib/*.elc
fi
einstalldocs
}
|