Gentoo Archives: gentoo-commits

From: "Amy Winston (amynka)" <amynka@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-gfx/meshlab: meshlab-1.3.3.ebuild ChangeLog
Date: Sat, 25 Jul 2015 19:30:43
Message-Id: 20150725193040.B0231ED@oystercatcher.gentoo.org
1 amynka 15/07/25 19:30:40
2
3 Modified: ChangeLog
4 Added: meshlab-1.3.3.ebuild
5 Log:
6 Version bump bug #525948.
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 34E69781)
9
10 Revision Changes Path
11 1.3 media-gfx/meshlab/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/meshlab/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/meshlab/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/meshlab/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-gfx/meshlab/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 11 Sep 2014 11:27:50 -0000 1.2
24 +++ ChangeLog 25 Jul 2015 19:30:40 -0000 1.3
25 @@ -1,6 +1,13 @@
26 # ChangeLog for media-gfx/meshlab
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/meshlab/ChangeLog,v 1.2 2014/09/11 11:27:50 kensington Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/meshlab/ChangeLog,v 1.3 2015/07/25 19:30:40 amynka Exp $
31 +
32 +*meshlab-1.3.3 (25 Jul 2015)
33 +
34 + 25 Jul 2015; Amy Winston <amynka@g.o> +files/1.3.3/gcc-4.7.patch,
35 + +files/1.3.3/lapack.patch, +files/1.3.3/mpir.patch, +files/1.3.3/qt-4.8.patch,
36 + +files/1.3.3/rpath.patch, +meshlab-1.3.3.ebuild:
37 + Version bump bug #525948.
38
39 11 Sep 2014; Michael Palimaka <kensington@g.o> meshlab-1.3.2.ebuild:
40 Pin dev-qt/qtcore and dev-qt/qtopengl to SLOT 4.
41
42
43
44 1.1 media-gfx/meshlab/meshlab-1.3.3.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/meshlab/meshlab-1.3.3.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-gfx/meshlab/meshlab-1.3.3.ebuild?rev=1.1&content-type=text/plain
48
49 Index: meshlab-1.3.3.ebuild
50 ===================================================================
51 # Copyright 1999-2015 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/media-gfx/meshlab/meshlab-1.3.3.ebuild,v 1.1 2015/07/25 19:30:40 amynka Exp $
54
55 EAPI=5
56
57 inherit eutils versionator multilib qt4-r2
58
59 DESCRIPTION="A mesh processing system"
60 HOMEPAGE="http://meshlab.sourceforge.net/"
61 MY_PV="$(delete_all_version_separators ${PV})"
62 SRC_URI="mirror://sourceforge/project/${PN}/${PN}/MeshLab%20v${PV}/MeshLabSrc_AllInc_v${MY_PV}.tgz"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE=""
68 DEPEND="dev-cpp/eigen:3
69 dev-cpp/muParser
70 dev-qt/qtcore:4
71 dev-qt/qtopengl:4
72 media-libs/glew
73 media-libs/qhull
74 =media-libs/lib3ds-1*
75 media-libs/openctm
76 sci-libs/levmar
77 sys-libs/libunwind
78 sci-libs/mpir"
79 RDEPEND="${DEPEND}"
80
81 S="${WORKDIR}/meshlab/src"
82
83 src_prepare() {
84 cd "${WORKDIR}"
85 epatch "${FILESDIR}/${PV}"/gcc-4.7.patch \
86 "${FILESDIR}/${PV}"/lapack.patch \
87 "${FILESDIR}/${PV}"/mpir.patch \
88 "${FILESDIR}/${PV}"/qt-4.8.patch \
89 "${FILESDIR}/${PV}"/rpath.patch
90 }
91
92 src_configure() {
93 eqmake4 external/external.pro
94 eqmake4 meshlab_full.pro
95 }
96
97 src_compile() {
98 cd external && emake
99 cd .. && emake
100 }
101
102 src_install() {
103 dobin distrib/{meshlab,meshlabserver}
104 dolib distrib/libcommon.so.1.0.0
105 dosym libcommon.so.1.0.0 /usr/$(get_libdir)/libcommon.so.1
106 dosym libcommon.so.1 /usr/$(get_libdir)/libcommon.so
107
108 exeinto /usr/$(get_libdir)/meshlab/plugins
109 doexe distrib/plugins/*.so
110
111 insinto /usr/share/meshlab/shaders
112 doins -r distrib/shaders/*
113 newicon "${S}"/meshlab/images/eye64.png "${PN}".png
114 make_desktop_entry meshlab "Meshlab"
115 }