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.3.ebuild
Date: Tue, 31 Jan 2012 06:46:29
Message-Id: 20120131064620.A052D2004B@flycatcher.gentoo.org
1 jlec 12/01/31 06:46:20
2
3 Modified: ChangeLog
4 Added: quickplot-0.10.3.ebuild
5 Log:
6 Version Bump, fixes underlinking
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 sci-visualization/quickplot/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 29 Jan 2012 13:38:31 -0000 1.14
24 +++ ChangeLog 31 Jan 2012 06:46:20 -0000 1.15
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-visualization/quickplot
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.14 2012/01/29 13:38:31 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.15 2012/01/31 06:46:20 jlec Exp $
30 +
31 +*quickplot-0.10.3 (31 Jan 2012)
32 +
33 + 31 Jan 2012; Justin Lecher <jlec@g.o> +quickplot-0.10.3.ebuild:
34 + Version Bump, fixes underlinking
35
36 *quickplot-0.10.2 (29 Jan 2012)
37
38
39
40
41 1.1 sci-visualization/quickplot/quickplot-0.10.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-visualization/quickplot/quickplot-0.10.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: quickplot-0.10.3.ebuild
47 ===================================================================
48 # Copyright 1999-2012 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.3.ebuild,v 1.1 2012/01/31 06:46:20 jlec Exp $
51
52 EAPI=4
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 dev-util/pkgconfig"
73
74 src_configure() {
75 local myeconfargs=(
76 --htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
77 )
78 autotools-utils_src_configure
79 }
80
81 src_install () {
82 autotools-utils_src_install
83
84 make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
85 mv "${D}"/usr/share/applications/quickplot*.desktop \
86 "${D}"/usr/share/applications/quickplot.desktop || die
87 }