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.6.ebuild
Date: Wed, 27 Nov 2013 19:56:58
Message-Id: 20131127195654.791492004B@flycatcher.gentoo.org
1 jlec 13/11/27 19:56:54
2
3 Modified: ChangeLog
4 Added: quickplot-0.10.6.ebuild
5 Log:
6 sci-visualization/quickplot: Verion BUmp
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.20 sci-visualization/quickplot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 12 Mar 2013 08:13:51 -0000 1.19
24 +++ ChangeLog 27 Nov 2013 19:56:54 -0000 1.20
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-visualization/quickplot
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.19 2013/03/12 08:13:51 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.20 2013/11/27 19:56:54 jlec Exp $
30 +
31 +*quickplot-0.10.6 (27 Nov 2013)
32 +
33 + 27 Nov 2013; Justin Lecher <jlec@g.o> +quickplot-0.10.6.ebuild:
34 + Verion BUmp
35
36 *quickplot-0.10.4 (12 Mar 2013)
37
38
39
40
41 1.1 sci-visualization/quickplot/quickplot-0.10.6.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.6.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.6.ebuild?rev=1.1&content-type=text/plain
45
46 Index: quickplot-0.10.6.ebuild
47 ===================================================================
48 # Copyright 1999-2013 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.6.ebuild,v 1.1 2013/11/27 19:56:54 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.xz"
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 }