Gentoo Archives: gentoo-commits

From: "Tomas Chvatal (scarabeus)" <scarabeus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qwtpolar: ChangeLog qwtpolar-0.1.0-r1.ebuild qwtpolar-0.1.0.ebuild
Date: Mon, 04 Jul 2011 10:39:38
Message-Id: 20110704103928.21CE32004B@flycatcher.gentoo.org
1 scarabeus 11/07/04 10:39:28
2
3 Modified: ChangeLog
4 Added: qwtpolar-0.1.0-r1.ebuild
5 Removed: qwtpolar-0.1.0.ebuild
6 Log:
7 Revision bump to fix multilib strictness. Fixes bug #374013.
8
9 (Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.3 x11-libs/qwtpolar/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qwtpolar/ChangeLog?rev=1.3&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qwtpolar/ChangeLog?rev=1.3&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qwtpolar/ChangeLog?r1=1.2&r2=1.3
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qwtpolar/ChangeLog,v
21 retrieving revision 1.2
22 retrieving revision 1.3
23 diff -u -r1.2 -r1.3
24 --- ChangeLog 14 Jun 2011 10:11:28 -0000 1.2
25 +++ ChangeLog 4 Jul 2011 10:39:27 -0000 1.3
26 @@ -1,6 +1,12 @@
27 # ChangeLog for x11-libs/qwtpolar
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtpolar/ChangeLog,v 1.2 2011/06/14 10:11:28 scarabeus Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtpolar/ChangeLog,v 1.3 2011/07/04 10:39:27 scarabeus Exp $
31 +
32 +*qwtpolar-0.1.0-r1 (04 Jul 2011)
33 +
34 + 04 Jul 2011; Tomáš Chvátal <scarabeus@g.o> -qwtpolar-0.1.0.ebuild,
35 + +qwtpolar-0.1.0-r1.ebuild:
36 + Revision bump to fix multilib strictness. Fixes bug #374013.
37
38 14 Jun 2011; Tomáš Chvátal <scarabeus@g.o> qwtpolar-0.1.0.ebuild:
39 Do not install qwtlicense manpage as it is just license converted to manpage.
40
41
42
43 1.1 x11-libs/qwtpolar/qwtpolar-0.1.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qwtpolar/qwtpolar-0.1.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qwtpolar/qwtpolar-0.1.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: qwtpolar-0.1.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qwtpolar/qwtpolar-0.1.0-r1.ebuild,v 1.1 2011/07/04 10:39:27 scarabeus Exp $
53
54 EAPI=4
55
56 inherit multilib qt4-r2
57
58 DESCRIPTION="Library for displaying values on a polar coordinate system"
59 HOMEPAGE="http://qwtpolar.sourceforge.net/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 LICENSE="qwt"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND="x11-libs/qwt:5[svg]"
68 RDEPEND="${DEPEND}"
69
70 src_prepare() {
71 sed -i \
72 -e "s:/path/to/qwt-5.2/include:${EPREFIX}/usr/include/qwt5:g" \
73 -e "s:/path/to/qwt-5.2/lib:${EPREFIX}/usr/$(get_libdir):g" \
74 -e "/= QwtPolarDesigner/ d" \
75 -e "s:/usr/local/qwtpolar-0.1.0:/usr/:g" \
76 -e "s:INSTALLBASE/lib:INSTALLBASE/$(get_libdir):g" \
77 -e "s:INSTALLBASE/include:INSTALLBASE/include/${PN}:" \
78 ${PN}.pri || die
79
80 sed -i \
81 -e "s:{QWT_POLAR_ROOT}/lib:{QWT_POLAR_ROOT}/$(get_libdir):" \
82 src/src.pro || die
83 }
84
85 src_install() {
86 qt4-r2_src_install
87
88 rm -rf "${ED}/usr/doc" || die
89
90 doman doc/man/man3/QwtPolar*
91 dohtml -r doc/html
92 }