Gentoo Archives: gentoo-commits

From: "Carsten Lohrke (carlo)" <carlo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qwtplot3d: qwtplot3d-0.2.6-r2.ebuild ChangeLog
Date: Mon, 28 Jul 2008 21:54:24
Message-Id: E1KNafd-0007d7-NT@stork.gentoo.org
1 carlo 08/07/28 21:54:21
2
3 Modified: qwtplot3d-0.2.6-r2.ebuild ChangeLog
4 Log:
5 QA: Get rid of deprecated qt_min_version(). Quoting issues.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.7 x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild?rev=1.7&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild?rev=1.7&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild?r1=1.6&r2=1.7
14
15 Index: qwtplot3d-0.2.6-r2.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild,v
18 retrieving revision 1.6
19 retrieving revision 1.7
20 diff -u -r1.6 -r1.7
21 --- qwtplot3d-0.2.6-r2.ebuild 23 Feb 2007 12:06:47 -0000 1.6
22 +++ qwtplot3d-0.2.6-r2.ebuild 28 Jul 2008 21:54:21 -0000 1.7
23 @@ -1,6 +1,8 @@
24 -# Copyright 1999-2007 Gentoo Foundation
25 +# Copyright 1999-2008 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild,v 1.6 2007/02/23 12:06:47 cryos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.6-r2.ebuild,v 1.7 2008/07/28 21:54:21 carlo Exp $
29 +
30 +EAPI=1
31
32 inherit multilib qt3
33
34 @@ -17,14 +19,14 @@
35 IUSE="doc examples"
36 KEYWORDS="amd64 ~ppc ppc64 ~x86"
37
38 -DEPEND="$(qt_min_version 3.3)
39 +DEPEND="x11-libs/qt:3
40 >=sys-apps/sed-4
41 doc? ( app-arch/unzip )"
42 -RDEPEND="$(qt_min_version 3.3)"
43 +RDEPEND="x11-libs/qt:3"
44
45 src_unpack () {
46 unpack ${A}
47 - cd ${S}
48 + cd "${S}"
49 find . -type f -name "*.pro" | while read file; do
50 sed -e 's/.*no-exceptions.*//g' -i ${file}
51 echo >> ${file} "QMAKE_CFLAGS_RELEASE += ${CFLAGS}"
52 @@ -36,8 +38,8 @@
53 }
54
55 src_compile () {
56 - addwrite ${QTDIR}/etc/settings
57 - ${QTDIR}/bin/qmake qwtplot3d.pro || die "qmake failed."
58 + addwrite "${QTDIR}"/etc/settings
59 + "${QTDIR}"/bin/qmake qwtplot3d.pro || die "qmake failed."
60 emake || die "emake failed."
61 }
62
63 @@ -50,11 +52,11 @@
64 chmod 755 examples examples/simpleplot/ examples/mesh2/ \
65 examples/enrichments/ examples/axes/ examples/autoswitch/ \
66 examples/axes/src/
67 - mkdir -p ${D}/usr/include/qwtplot3d/
68 - install include/* ${D}/usr/include/qwtplot3d/
69 + mkdir -p "${D}"/usr/include/qwtplot3d/
70 + install include/* "${D}"/usr/include/qwtplot3d/
71 if use examples; then
72 dodir /usr/share/doc/${PF}
73 - cp -pPR examples ${D}/usr/share/doc/${PF}/
74 + cp -pPR examples "${D}"/usr/share/doc/${PF}/
75 fi
76 use doc && dohtml -r doc/web/doxygen/*
77 }
78
79
80
81 1.14 x11-libs/qwtplot3d/ChangeLog
82
83 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.14&view=markup
84 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.14&content-type=text/plain
85 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?r1=1.13&r2=1.14
86
87 Index: ChangeLog
88 ===================================================================
89 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v
90 retrieving revision 1.13
91 retrieving revision 1.14
92 diff -u -r1.13 -r1.14
93 --- ChangeLog 27 Jul 2008 00:41:56 -0000 1.13
94 +++ ChangeLog 28 Jul 2008 21:54:21 -0000 1.14
95 @@ -1,6 +1,9 @@
96 # ChangeLog for x11-libs/qwtplot3d
97 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
98 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.13 2008/07/27 00:41:56 carlo Exp $
99 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.14 2008/07/28 21:54:21 carlo Exp $
100 +
101 + 28 Jul 2008; Carsten Lohrke <carlo@g.o> qwtplot3d-0.2.6-r2.ebuild:
102 + QA: Get rid of deprecated qt_min_version(). Quoting issues.
103
104 27 Jul 2008; Carsten Lohrke <carlo@g.o> qwtplot3d-0.2.7.ebuild:
105 Fix the fix...