blob: 305d3633367bd2b7c7ece0e4ae6e50faa8bebf5e (
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/freecad/freecad-0.11.3729.ebuild,v 1.6 2011/11/13 20:13:27 dilfridge Exp $
EAPI=3
PYTHON_DEPEND=2
inherit base eutils fortran-2 multilib autotools flag-o-matic python git-2
MY_P="freecad-${PV}"
MY_PD="FreeCAD-${PV}"
DESCRIPTION="QT based Computer Aided Design application"
HOMEPAGE="http://sourceforge.net/apps/mediawiki/free-cad/"
EGIT_REPO_URI="git://free-cad.git.sourceforge.net/gitroot/free-cad/free-cad"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="soqt assembly sandbox cam loginfo"
RDEPEND="
dev-cpp/eigen
dev-games/ode
dev-libs/boost
dev-libs/xerces-c
dev-python/pivy
dev-python/PyQt4[svg]
media-libs/coin
soqt? ( media-libs/SoQt )
>=sci-libs/opencascade-6.3
sci-libs/gts
sys-libs/zlib
virtual/fortran
x11-libs/qt-gui:4
x11-libs/qt-opengl:4
x11-libs/qt-svg:4
x11-libs/qt-webkit:4
x11-libs/qt-xmlpatterns:4
x11-libs/qt-qt3support:4"
DEPEND="${RDEPEND}
dev-lang/swig"
#PATCHES=( "${FILESDIR}/${P}-asneeded.patch" )
RESTRICT="bindist mirror"
# http://bugs.gentoo.org/show_bug.cgi?id=352435
# http://www.gentoo.org/foundation/en/minutes/2011/20110220_trustees.meeting_log.txt
S="${WORKDIR}/${MY_PD}"
pkg_setup() {
fortran-2_pkg_setup
python_set_active_version 2
}
src_prepare() {
base_src_prepare
./autogen.sh
eautoreconf
}
src_configure() {
if use assembly ; then
--enable-assembly
fi
if use sandbox ; then
--enable-sandbox
fi
if use cam ; then
--enable-cam
fi
if use loginfo ; then
--enable-loginfo
fi
if ! use soqt ; then
--without-soqt
fi
append-cflags "-DBOOST_FILESYSTEM_VERSION=2"
append-cppflags "-DBOOST_FILESYSTEM_VERSION=2"
append-cxxflags "-DBOOST_FILESYSTEM_VERSION=2"
econf \
--with-qt4-include="${EPREFIX}"/usr/include/qt4 \
--with-qt4-bin="${EPREFIX}"//usr/bin \
--with-qt4-lib="${EPREFIX}"//usr/$(get_libdir)/qt4 \
--with-occ-include=${CASROOT}/inc \
--with-occ-lib=${CASROOT}/lib
}
src_compile() {
#For compilation safety keep j1
MAKEOPTS="-j1" base_src_compile
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
find "${D}" -name "*.la" -exec rm {} +
dodoc README.Linux ChangeLog.txt || die
dodir /usr/share/apps/freecad || die
mv "${D}/usr/share/freecad.xpm" "${D}/usr/share/apps/freecad/" || die
make_desktop_entry FreeCAD FreeCAD /usr/share/apps/freecad/freecad.xpm
}
|