Gentoo Archives: gentoo-commits

From: "Ben de Groot (yngwin)" <yngwin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/libqxt: ChangeLog libqxt-0.5.0.ebuild
Date: Thu, 30 Apr 2009 13:26:18
Message-Id: E1LzWHH-00040D-Jk@stork.gentoo.org
1 yngwin 09/04/30 13:26:15
2
3 Modified: ChangeLog
4 Added: libqxt-0.5.0.ebuild
5 Log:
6 Version bump, clean up deps. Thanks to Markos "hwoarang" Chandras.
7 (Portage version: 2.2_rc28/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.8 x11-libs/libqxt/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libqxt/ChangeLog?rev=1.8&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libqxt/ChangeLog?rev=1.8&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libqxt/ChangeLog?r1=1.7&r2=1.8
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v
19 retrieving revision 1.7
20 retrieving revision 1.8
21 diff -u -r1.7 -r1.8
22 --- ChangeLog 7 Feb 2009 20:15:07 -0000 1.7
23 +++ ChangeLog 30 Apr 2009 13:26:15 -0000 1.8
24 @@ -1,6 +1,11 @@
25 # ChangeLog for x11-libs/libqxt
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.7 2009/02/07 20:15:07 hwoarang Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/ChangeLog,v 1.8 2009/04/30 13:26:15 yngwin Exp $
29 +
30 +*libqxt-0.5.0 (30 Apr 2009)
31 +
32 + 30 Apr 2009; Ben de Groot <yngwin@g.o> +libqxt-0.5.0.ebuild:
33 + Version bump, clean up deps. Thanks to Markos "hwoarang" Chandras.
34
35 *libqxt-0.4-r1 (07 Feb 2009)
36 *libqxt-0.2.5-r1 (07 Feb 2009)
37
38
39
40 1.1 x11-libs/libqxt/libqxt-0.5.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libqxt/libqxt-0.5.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/libqxt/libqxt-0.5.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libqxt-0.5.0.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/x11-libs/libqxt/libqxt-0.5.0.ebuild,v 1.1 2009/04/30 13:26:15 yngwin Exp $
50
51 EAPI=2
52 inherit eutils qt4
53
54 DESCRIPTION="The Qt eXTension library provides cross-platform utility classes for the Qt toolkit"
55 HOMEPAGE="http://libqxt.org/"
56 SRC_URI="http://bitbucket.org/${PN}/${PN}/downloads/${P}.tgz"
57
58 LICENSE="|| ( CPL-1.0 LGPL-2.1 )"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE="berkdb crypt debug doc sql web"
62
63 RDEPEND="x11-libs/qt-gui:4
64 x11-libs/qt-script:4
65 berkdb? ( x11-libs/qt-sql:4 sys-libs/db )
66 sql? ( x11-libs/qt-sql:4 )
67 crypt? ( >=dev-libs/openssl-0.9.8 x11-libs/qt-core:4[ssl] )
68 web? ( >=dev-libs/fcgi-2.4 )"
69 DEPEND="${DEPEND}
70 doc? ( app-doc/doxygen )"
71
72 src_configure() {
73 local myconf
74 myconf="-prefix /usr \
75 -libdir /usr/$(get_libdir) \
76 -docdir /usr/share/doc/${PF} \
77 -qmake-bin /usr/bin/qmake \
78 $(use debug && echo -debug) \
79 $(use !berkdb && echo -no-db -nomake berkeley) \
80 $(use !crypt && echo -nomake crypto -no-openssl) \
81 $(use !sql && echo -nomake sql) \
82 $(use !web && echo -nomake web)"
83 # fix pre-striped files issue
84 for i in $(ls "${S}"/src); do
85 sed -i "s/qxtbuild/nostrip\ qxtbuild/" "${S}"/src/${i}/${i}.pro
86 done
87 ./configure ${myconf} || die "configure failed"
88 }
89
90 #src_compile() {
91 # # parallel compilation fails, bug #194730
92 # emake -j1 || die "make failed"
93 #}
94
95 src_install() {
96 emake INSTALL_ROOT="${D}" install || die "emake install failed"
97 dodoc {AUTHORS,README,LICENSE,cpl1.0.txt}
98
99 if use doc; then
100 doxygen Doqsyfile
101 dohtml -r deploy/docs/*
102 fi
103 }