Gentoo Archives: gentoo-commits

From: "Davide Pesavento (pesa)" <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/kst: kst-2.0.5.ebuild ChangeLog kst-2.0.0.ebuild
Date: Mon, 02 Jul 2012 14:22:04
Message-Id: 20120702142154.2590B2004B@flycatcher.gentoo.org
1 pesa 12/07/02 14:21:54
2
3 Modified: ChangeLog
4 Added: kst-2.0.5.ebuild
5 Removed: kst-2.0.0.ebuild
6 Log:
7 Version bump, remove old.
8
9 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.6 sci-visualization/kst/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/kst/ChangeLog?rev=1.6&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/kst/ChangeLog?rev=1.6&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/kst/ChangeLog?r1=1.5&r2=1.6
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/kst/ChangeLog,v
21 retrieving revision 1.5
22 retrieving revision 1.6
23 diff -u -r1.5 -r1.6
24 --- ChangeLog 21 May 2012 19:55:15 -0000 1.5
25 +++ ChangeLog 2 Jul 2012 14:21:53 -0000 1.6
26 @@ -1,6 +1,12 @@
27 # ChangeLog for sci-visualization/kst
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/kst/ChangeLog,v 1.5 2012/05/21 19:55:15 ssuominen Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/kst/ChangeLog,v 1.6 2012/07/02 14:21:53 pesa Exp $
31 +
32 +*kst-2.0.5 (02 Jul 2012)
33 +
34 + 02 Jul 2012; Davide Pesavento <pesa@g.o> +kst-2.0.5.ebuild,
35 + -files/kst-cfitsio-includes.patch, -kst-2.0.0.ebuild:
36 + Version bump, remove old.
37
38 21 May 2012; Samuli Suominen <ssuominen@g.o> kst-2.0.0.ebuild:
39 inherit eutils for make_desktop_entry
40 @@ -54,4 +60,3 @@
41 +metadata.xml:
42 Initial commit of kst (bug #292902). Ebuild by Samuli Suominen
43 (ssuominen@g.o), Markos Chandras (hwoarang@g.o) and me.
44 -
45
46
47
48 1.1 sci-visualization/kst/kst-2.0.5.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/kst/kst-2.0.5.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/kst/kst-2.0.5.ebuild?rev=1.1&content-type=text/plain
52
53 Index: kst-2.0.5.ebuild
54 ===================================================================
55 # Copyright 1999-2012 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/kst/kst-2.0.5.ebuild,v 1.1 2012/07/02 14:21:53 pesa Exp $
58
59 EAPI=4
60
61 CMAKE_USE_DIR=${S}/cmake
62
63 inherit cmake-utils multilib
64
65 DESCRIPTION="Fast real-time large-dataset viewing and plotting tool for KDE4"
66 HOMEPAGE="http://kst.kde.org/"
67 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
68
69 LICENSE="GPL-2 LGPL-2 FDL-1.2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="debug test"
73 RESTRICT="test"
74
75 RDEPEND="
76 sci-libs/cfitsio
77 sci-libs/getdata
78 sci-libs/gsl
79 sci-libs/netcdf[cxx]
80 x11-libs/qt-core:4
81 x11-libs/qt-gui:4
82 x11-libs/qt-opengl:4
83 x11-libs/qt-svg:4
84 "
85 DEPEND="${RDEPEND}
86 test? ( x11-libs/qt-test:4 )
87 "
88
89 DOCS=( AUTHORS ChangeLog )
90 PATCHES=( "${FILESDIR}/${PN}-2.0.4-cfitsio-includes.patch" )
91
92 src_prepare() {
93 base_src_prepare
94
95 # fix desktop file
96 sed -i -e 's/^Categories=/&Education;/' \
97 -e '/^Encoding=/d' \
98 src/kst/kst2.desktop || die
99 }
100
101 src_configure() {
102 local mycmakeargs=(
103 -Dkst_install_libdir=$(get_libdir)
104 -Dkst_pch=OFF
105 -Dkst_release=$(use debug && echo OFF || echo ON)
106 -Dkst_rpath=OFF
107 -Dkst_svnversion=OFF
108 $(cmake-utils_use test kst_test)
109 )
110 cmake-utils_src_configure
111 }