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: ChangeLog qwtplot3d-0.2.7.ebuild
Date: Wed, 28 Nov 2007 23:13:57
Message-Id: E1IxW6I-0003Rr-HQ@stork.gentoo.org
1 bicatali 07/11/28 23:13:50
2
3 Modified: ChangeLog
4 Added: qwtplot3d-0.2.7.ebuild
5 Log:
6 Version bump, modernized the ebuild. Now Qt4 only, Qt3 version split in x11-libs/qwplot3d-qt3
7 (Portage version: 2.1.4_rc3)
8
9 Revision Changes Path
10 1.11 x11-libs/qwtplot3d/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.11&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?rev=1.11&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/ChangeLog?r1=1.10&r2=1.11
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v
19 retrieving revision 1.10
20 retrieving revision 1.11
21 diff -u -r1.10 -r1.11
22 --- ChangeLog 23 Feb 2007 12:06:47 -0000 1.10
23 +++ ChangeLog 28 Nov 2007 23:13:49 -0000 1.11
24 @@ -1,6 +1,14 @@
25 # ChangeLog for x11-libs/qwtplot3d
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.10 2007/02/23 12:06:47 cryos Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/ChangeLog,v 1.11 2007/11/28 23:13:49 bicatali Exp $
29 +
30 +*qwtplot3d-0.2.7 (28 Nov 2007)
31 +
32 + 28 Nov 2007; Sébastien Fabbro <bicatali@g.o>
33 + +files/qwtplot3d-doxygen.patch, +files/qwtplot3d-examples.patch,
34 + +files/qwtplot3d-profile.patch, +qwtplot3d-0.2.7.ebuild:
35 + Version bump, modernized the ebuild. Now Qt4 only, Qt3 version split in
36 + x11-libs/qwplot3d-qt3.
37
38 23 Feb 2007; Marcus D. Hanwell <cryos@g.o>
39 -qwtplot3d-0.2.6-r1.ebuild, qwtplot3d-0.2.6-r2.ebuild:
40
41
42
43 1.1 x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qwtplot3d-0.2.7.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtplot3d/qwtplot3d-0.2.7.ebuild,v 1.1 2007/11/28 23:13:49 bicatali Exp $
53
54 inherit multilib qt4
55
56 DESCRIPTION="Qt4/OpenGL-based 3D widget library for C++"
57 HOMEPAGE="http://qwtplot3d.sourceforge.net/"
58 SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
59
60 LICENSE="ZLIB"
61 SLOT="0"
62 IUSE="doc examples"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
64
65 RDEPEND="$(qt4_min_version 4)"
66 DEPEND="${RDEPEND}
67 doc? ( app-doc/doxygen )"
68
69 S="${WORKDIR}/${PN}"
70
71 src_unpack () {
72 unpack ${A}
73 epatch "${FILESDIR}"/${PN}-profile.patch
74 epatch "${FILESDIR}"/${PN}-examples.patch
75 epatch "${FILESDIR}"/${PN}-doxygen.patch
76 }
77
78 src_compile () {
79 echo >> ${PN}.pro "target.path = /usr/$(get_libdir)"
80 echo >> ${PN}.pro "headers.path = /usr/include/${PN}"
81 echo >> ${PN}.pro "headers.files = \$\$HEADERS"
82 echo >> ${PN}.pro "INSTALLS = target headers"
83
84 eqmake4 ${PN}.pro || die "eqmake4 failed"
85 emake || die "emake failed"
86 }
87
88 src_install () {
89 emake INSTALL_ROOT="${D}" install || die "emake install failed"
90 if use examples; then
91 insinto /usr/share/doc/${PF}
92 doins -r examples || die "doins examples failed"
93 fi
94 use doc && dohtml -r doc/web/doxygen/*
95 }
96
97
98
99 --
100 gentoo-commits@g.o mailing list