Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-visualization/quickplot: ChangeLog quickplot-0.8.13-r1.ebuild quickplot-0.8.5.ebuild
Date: Fri, 29 Aug 2008 10:55:04
Message-Id: E1KZ1d3-0002Nz-Hy@stork.gentoo.org
1 bicatali 08/08/29 10:54:57
2
3 Modified: ChangeLog quickplot-0.8.13-r1.ebuild
4 Removed: quickplot-0.8.5.ebuild
5 Log:
6 Fixed linking, some cosmetics.
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.23-gentoo-r9 x86_64)
8
9 Revision Changes Path
10 1.7 sci-visualization/quickplot/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 6 May 2008 14:17:17 -0000 1.6
23 +++ ChangeLog 29 Aug 2008 10:54:56 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-visualization/quickplot
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.6 2008/05/06 14:17:17 markusle Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/ChangeLog,v 1.7 2008/08/29 10:54:56 bicatali Exp $
29 +
30 + 29 Aug 2008; Sébastien Fabbro <bicatali@g.o>
31 + +files/quickplot-0.8.13-linking.patch, -quickplot-0.8.5.ebuild,
32 + quickplot-0.8.13-r1.ebuild:
33 + Fixed linking, some cosmetics.
34
35 *quickplot-0.8.13-r1 (06 May 2008)
36
37
38
39
40 1.2 sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild?r1=1.1&r2=1.2
45
46 Index: quickplot-0.8.13-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- quickplot-0.8.13-r1.ebuild 6 May 2008 14:17:17 -0000 1.1
53 +++ quickplot-0.8.13-r1.ebuild 29 Aug 2008 10:54:57 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2008 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.1 2008/05/06 14:17:17 markusle Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/sci-visualization/quickplot/quickplot-0.8.13-r1.ebuild,v 1.2 2008/08/29 10:54:57 bicatali Exp $
59
60 inherit eutils
61
62 @@ -14,11 +14,10 @@
63 KEYWORDS="~amd64 ~ppc ~x86"
64
65 RDEPEND=">=dev-cpp/gtkmm-2.4.5
66 - sndfile? ( >=media-libs/libsndfile-1.0.5 )
67 - >=dev-libs/libsigc++-2"
68 + sndfile? ( media-libs/libsndfile )"
69
70 DEPEND="${RDEPEND}
71 - >=dev-util/pkgconfig-0.15"
72 + dev-util/pkgconfig"
73
74 src_unpack() {
75 unpack ${A}
76 @@ -26,23 +25,27 @@
77
78 epatch "${FILESDIR}"/${P}-libsigc++-2.2.patch
79 epatch "${FILESDIR}"/${P}-gcc43.patch
80 + epatch "${FILESDIR}"/${P}-linking.patch
81
82 # Some files have been moved around to more appropriate locations
83 - sed -i -e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \
84 + sed -i \
85 + -e 's|quickplot_icon.png|/usr/share/pixmaps/quickplot.png|' \
86 + -e 's|href="ChangeLog"|href="../ChangeLog.gz"|' \
87 index.html.in
88 - sed -i -e 's|href="ChangeLog"|href="../ChangeLog.gz"|' index.html.in
89 sed -i -e 's|href="COPYING"|href="/usr/portage/licenses/GPL-2"|' \
90 about.html.in
91 }
92
93 src_compile() {
94 - econf `use_with sndfile libsndfile` || die "econf step failed."
95 + econf $(use_with sndfile libsndfile) || die "econf step failed."
96 emake htmldir=/usr/share/doc/${PF}/html || die "emake step failed."
97 }
98
99 src_install () {
100 - make install DESTDIR="${D}" htmldir=/usr/share/doc/${PF}/html \
101 - || die "make install step failed."
102 + emake \
103 + DESTDIR="${D}" \
104 + htmldir=/usr/share/doc/${PF}/html \
105 + install || die "make install step failed."
106 dodoc AUTHORS ChangeLog README README.devel TODO
107 # Remove COPYING as it is specified in LICENCE. Move other stuff.
108 cd "${D}"/usr/share/doc/${PF}/html