Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-physics/clip/
Date: Mon, 21 Sep 2015 19:05:52
Message-Id: 1442860191.d029bd8b9d79ed641720f76a29a7a258214547c3.jlec@gentoo
1 commit: d029bd8b9d79ed641720f76a29a7a258214547c3
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 21 18:29:51 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 21 18:29:51 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=d029bd8b
7
8 sci-physics/clip: Add subslot operators
9
10 Package-Manager: portage-2.2.20.1
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 sci-physics/clip/clip-4.0.0_beta2.ebuild | 21 +++++++++++----------
14 1 file changed, 11 insertions(+), 10 deletions(-)
15
16 diff --git a/sci-physics/clip/clip-4.0.0_beta2.ebuild b/sci-physics/clip/clip-4.0.0_beta2.ebuild
17 index 596dac8..d18a51b 100644
18 --- a/sci-physics/clip/clip-4.0.0_beta2.ebuild
19 +++ b/sci-physics/clip/clip-4.0.0_beta2.ebuild
20 @@ -1,4 +1,4 @@
21 -# Copyright 1999-2014 Gentoo Foundation
22 +# Copyright 1999-2015 Gentoo Foundation
23 # Distributed under the terms of the GNU General Public License v2
24 # $Id$
25
26 @@ -11,29 +11,30 @@ MY_P="Clip4_$(get_version_component_range 4)_source"
27 DESCRIPTION="Interactive program for evaluation of Laue diffraction patterns"
28 HOMEPAGE="http://clip4.sf.net/"
29 SRC_URI="mirror://sourceforge/clip4/${MY_P}.zip"
30 +
31 LICENSE="GPL-3+"
32 SLOT="0"
33 KEYWORDS="~amd64 ~x86"
34 +IUSE=""
35 +
36 RDEPEND="
37 dev-cpp/eigen:3
38 - dev-qt/qtcore
39 - dev-qt/qtsvg
40 - dev-qt/qtgui
41 - dev-qt/qtwebkit
42 - dev-qt/qtopengl
43 + dev-qt/qtcore:4=
44 + dev-qt/qtsvg:4=
45 + dev-qt/qtgui:4=
46 + dev-qt/qtwebkit:4=
47 + dev-qt/qtopengl:4=
48 "
49 DEPEND="${RDEPEND}"
50
51 S="${WORKDIR}/${MY_P}"
52
53 -src_prepare()
54 -{
55 +src_prepare(){
56 sed -i -e 's|../eigen|/usr/include/eigen3|' \
57 -e 's|shell hg|shell true|g' Clip4.pro || die "sed failed"
58 }
59
60 -src_install()
61 -{
62 +src_install(){
63 dobin Clip
64 dodoc README.txt
65 }