Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qwtplot3d: qwtplot3d-0.2.7-r1.ebuild ChangeLog qwtplot3d-0.2.7.ebuild
Date: Tue, 07 Apr 2009 18:51:33
Message-Id: E1LrGOQ-0006jS-Ir@stork.gentoo.org
1 bicatali 09/04/07 18:51:30
2
3 Modified: ChangeLog
4 Added: qwtplot3d-0.2.7-r1.ebuild
5 Removed: qwtplot3d-0.2.7.ebuild
6 Log:
7 Removed bundled gl2ps and fixed some QA
8 (Portage version: 2.2_rc28/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.15 x11-libs/qwtplot3d/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.15&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.15&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?r1=1.14&r2=1.15
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v
20 retrieving revision 1.14
21 retrieving revision 1.15
22 diff -u -r1.14 -r1.15
23 --- ChangeLog 28 Jul 2008 21:54:21 -0000 1.14
24 +++ ChangeLog 7 Apr 2009 18:51:30 -0000 1.15
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-libs/qwtplot3d
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.14 2008/07/28 21:54:21 carlo Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.15 2009/04/07 18:51:30 bicatali Exp $
31 +
32 +*qwtplot3d-0.2.7-r1 (07 Apr 2009)
33 +
34 + 07 Apr 2009; Sébastien Fabbro <bicatali@g.o>
35 + +files/qwtplot3d-sys-gl2ps.patch, -qwtplot3d-0.2.7.ebuild,
36 + +qwtplot3d-0.2.7-r1.ebuild:
37 + Removed bundled gl2ps and fixed some QA
38
39 28 Jul 2008; Carsten Lohrke <carlo@g.o> qwtplot3d-0.2.6-r2.ebuild:
40 QA: Get rid of deprecated qt_min_version(). Quoting issues.
41
42
43
44 1.1 x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: qwtplot3d-0.2.7-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7-r1.ebuild,v 1.1 2009/04/07 18:51:30 bicatali Exp $
54
55 EAPI=2
56 inherit eutils qt4
57
58 DESCRIPTION="Qt4/OpenGL-based 3D widget library for C++"
59 HOMEPAGE="http://qwtplot3d.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
61
62 LICENSE="ZLIB"
63 SLOT="0"
64 IUSE="doc examples"
65 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
66
67 RDEPEND="|| ( ( x11-libs/qt-gui:4 x11-libs/qt-opengl:4 )
68 <x11-libs/qt-4.4:4[opengl] )
69 x11-libs/gl2ps"
70 DEPEND="${RDEPEND}
71 doc? ( app-doc/doxygen )"
72
73 S="${WORKDIR}/${PN}"
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-profile.patch
77 epatch "${FILESDIR}"/${PN}-examples.patch
78 epatch "${FILESDIR}"/${PN}-doxygen.patch
79 epatch "${FILESDIR}"/${PN}-sys-gl2ps.patch
80 cat >> ${PN}.pro <<-EOF
81 target.path = /usr/$(get_libdir)
82 headers.path = /usr/include/${PN}
83 headers.files = \$\$HEADERS
84 INSTALLS = target headers
85 EOF
86 qt4_src_prepare
87 }
88
89 src_configure() {
90 eqmake4
91 }
92
93 src_compile() {
94 emake || die "emake failed"
95 if use doc ; then
96 cd doc
97 doxygen Doxyfile.doxygen || die "doxygen failed"
98 fi
99 }
100
101 src_install () {
102 emake INSTALL_ROOT="${D}" install || die "emake install failed"
103 if use examples; then
104 insinto /usr/share/doc/${PF}
105 doins -r examples || die "doins examples failed"
106 fi
107 if use doc; then
108 insinto /usr/share/doc/${PF}/html
109 doins -r doc/web/doxygen/* || die
110 fi
111 }