diff options
author | Justin Lecher <jlec@gentoo.org> | 2015-09-21 20:29:51 +0200 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2015-09-21 20:29:51 +0200 |
commit | d029bd8b9d79ed641720f76a29a7a258214547c3 (patch) | |
tree | e25bdac68675b09cdf0343e848735816bb048608 /sci-physics/clip/clip-4.0.0_beta2.ebuild | |
parent | sci-libs/nexus: Add subslot operators (diff) | |
download | sci-d029bd8b9d79ed641720f76a29a7a258214547c3.tar.gz sci-d029bd8b9d79ed641720f76a29a7a258214547c3.tar.bz2 sci-d029bd8b9d79ed641720f76a29a7a258214547c3.zip |
sci-physics/clip: Add subslot operators
Package-Manager: portage-2.2.20.1
Signed-off-by: Justin Lecher <jlec@gentoo.org>
Diffstat (limited to 'sci-physics/clip/clip-4.0.0_beta2.ebuild')
-rw-r--r-- | sci-physics/clip/clip-4.0.0_beta2.ebuild | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/sci-physics/clip/clip-4.0.0_beta2.ebuild b/sci-physics/clip/clip-4.0.0_beta2.ebuild index 596dac8bf..d18a51bfb 100644 --- a/sci-physics/clip/clip-4.0.0_beta2.ebuild +++ b/sci-physics/clip/clip-4.0.0_beta2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -11,29 +11,30 @@ MY_P="Clip4_$(get_version_component_range 4)_source" DESCRIPTION="Interactive program for evaluation of Laue diffraction patterns" HOMEPAGE="http://clip4.sf.net/" SRC_URI="mirror://sourceforge/clip4/${MY_P}.zip" + LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="" + RDEPEND=" dev-cpp/eigen:3 - dev-qt/qtcore - dev-qt/qtsvg - dev-qt/qtgui - dev-qt/qtwebkit - dev-qt/qtopengl + dev-qt/qtcore:4= + dev-qt/qtsvg:4= + dev-qt/qtgui:4= + dev-qt/qtwebkit:4= + dev-qt/qtopengl:4= " DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}" -src_prepare() -{ +src_prepare(){ sed -i -e 's|../eigen|/usr/include/eigen3|' \ -e 's|shell hg|shell true|g' Clip4.pro || die "sed failed" } -src_install() -{ +src_install(){ dobin Clip dodoc README.txt } |