Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/quickplot: ChangeLog quickplot-0.10.8.ebuild
Date: Thu, 05 Feb 2015 08:42:04
Message-Id: 20150205084200.5AF0E11186@oystercatcher.gentoo.org
1 jlec 15/02/05 08:42:00
2
3 Modified: ChangeLog
4 Added: quickplot-0.10.8.ebuild
5 Log:
6 sci-visualization/quickplot: Version Bump
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.23 sci-visualization/quickplot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.23&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.23&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?r1=1.22&r2=1.23
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v
20 retrieving revision 1.22
21 retrieving revision 1.23
22 diff -u -r1.22 -r1.23
23 --- ChangeLog 4 Feb 2015 20:37:37 -0000 1.22
24 +++ ChangeLog 5 Feb 2015 08:42:00 -0000 1.23
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-visualization/quickplot
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.22 2015/02/04 20:37:37 mrueg Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.23 2015/02/05 08:42:00 jlec Exp $
30 +
31 +*quickplot-0.10.8 (05 Feb 2015)
32 +
33 + 05 Feb 2015; Justin Lecher <jlec@g.o> +quickplot-0.10.8.ebuild:
34 + Version Bump
35
36 04 Feb 2015; Manuel RĂ¼ger <mrueg@g.o>
37 -files/quickplot-0.8.13-gcc43.patch,
38
39
40
41 1.1 sci-visualization/quickplot/quickplot-0.10.8.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: quickplot-0.10.8.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.8.ebuild,v 1.1 2015/02/05 08:42:00 jlec Exp $
51
52 EAPI=5
53
54 AUTOTOOLS_AUTORECONF=true
55
56 inherit autotools-utils eutils
57
58 DESCRIPTION="A fast interactive 2D plotter"
59 HOMEPAGE="http://quickplot.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 SLOT="0"
63 LICENSE="GPL-3"
64 KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
65 IUSE="static-libs"
66
67 RDEPEND="
68 media-libs/libsndfile
69 >=sys-libs/readline-0.6.2
70 x11-libs/gtk+:3"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig"
73
74 src_prepare() {
75 sed '/libquickplot_la_LIBADD/s:$: -lm:g' -i Makefile.am || die
76 autotools-utils_src_prepare
77 }
78
79 src_configure() {
80 local myeconfargs=(
81 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
82 )
83 autotools-utils_src_configure
84 }
85
86 src_install () {
87 autotools-utils_src_install
88 make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
89 mv "${ED}"/usr/share/applications/quickplot*.desktop \
90 "${ED}"/usr/share/applications/quickplot.desktop || die
91 }