Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qt-sql: metadata.xml ChangeLog qt-sql-4.4.0_rc1.ebuild Manifest
Date: Fri, 21 Dec 2007 19:04:24
Message-Id: E1J5nAM-0002ro-P4@stork.gentoo.org
1 caleb 07/12/21 19:04:14
2
3 Added: metadata.xml ChangeLog qt-sql-4.4.0_rc1.ebuild
4 Manifest
5 Log:
6 Initial ebuild
7 (Portage version: 2.1.3.16)
8
9 Revision Changes Path
10 1.1 x11-libs/qt-sql/metadata.xml
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>qt</herd>
21 </pkgmetadata>
22
23
24
25 1.1 x11-libs/qt-sql/ChangeLog
26
27 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.1&view=markup
28 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/ChangeLog?rev=1.1&content-type=text/plain
29
30 Index: ChangeLog
31 ===================================================================
32 # ChangeLog for x11-libs/qt-sql
33 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
34 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.1 2007/12/21 19:04:14 caleb Exp $
35
36 *qt-sql-4.4.0_rc1 (21 Dec 2007)
37
38 21 Dec 2007; Caleb Tennis <caleb@g.o> +metadata.xml,
39 +qt-sql-4.4.0_rc1.ebuild:
40 Initial ebuild
41
42
43
44
45 1.1 x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: qt-sql-4.4.0_rc1.ebuild
51 ===================================================================
52 # Copyright 1999-2007 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild,v 1.1 2007/12/21 19:04:14 caleb Exp $
55
56 inherit qt4-build
57
58 SRCTYPE="preview-opensource-src"
59 DESCRIPTION="The SQL module for the Qt toolkit."
60 HOMEPAGE="http://www.trolltech.com/"
61
62 MY_PV=${PV/_rc/-tp}
63
64 SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-x11-${SRCTYPE}-${MY_PV}.tar.gz"
65 S=${WORKDIR}/qt-x11-${SRCTYPE}-${MY_PV}
66
67 LICENSE="|| ( QPL-1.0 GPL-2 )"
68 SLOT="4"
69 KEYWORDS="~x86"
70
71 IUSE="firebird mysql odbc postgres sqlite"
72
73 RDEPEND="~x11-libs/qt-core-${PV}
74 mysql? ( virtual/mysql )
75 firebird? ( dev-db/firebird )
76 sqlite? ( =dev-db/sqlite-3* )
77 postgres? ( dev-db/libpq )
78 odbc? ( dev-db/unixODBC )"
79
80 DEPEND="${RDEPEND}"
81
82 src_unpack() {
83 qt4-build_src_unpack
84
85 skip_qmake_build_patch
86 skip_project_generation_patch
87 install_binaries_to_buildtree
88 }
89
90 src_compile() {
91 local myconf=$(standard_configure_options)
92
93 use mysql && myconf="${myconf} -plugin-sql-mysql -I/usr/include/mysql -L/usr/$(get_libdir)/mysql" || myconf="${myconf} -no-sql-mysql"
94 use postgres && myconf="${myconf} -plugin-sql-psql -I/usr/include/postgresql/pgsql" || myconf="${myconf} -no-sql-psql"
95 use firebird && myconf="${myconf} -plugin-sql-ibase -I/opt/firebird/include" || myconf="${myconf} -no-sql-ibase"
96 use sqlite && myconf="${myconf} -plugin-sql-sqlite -system-sqlite" || myconf="${myconf} -no-sql-sqlite"
97 use odbc && myconf="${myconf} -plugin-sql-odbc" || myconf="${myconf} -no-sql-odbc"
98
99 if built_with_use ~x11-libs/qt-core-${PV} qt3support; then
100 myconf="${myconf} -qt3support"
101 else
102 myconf="${myconf} -no-qt3support"
103 fi
104 myconf="${myconf} -no-xkb -no-tablet -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor \
105 -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-qdbus -iconv -no-cups -no-nis \
106 -no-gif -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon \
107 -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig -no-glib -no-opengl ${myconf}"
108
109 echo ./configure ${myconf}
110 ./configure ${myconf} || die
111
112 build_directories src/sql src/plugins/sqldrivers
113
114 }
115
116 src_install() {
117
118 install_directories src/sql src/plugins/sqldrivers
119
120 fix_library_files
121 }
122
123
124
125 1.1 x11-libs/qt-sql/Manifest
126
127 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/Manifest?rev=1.1&view=markup
128 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/qt-sql/Manifest?rev=1.1&content-type=text/plain
129
130 Index: Manifest
131 ===================================================================
132 DIST qt-x11-preview-opensource-src-4.4.0-tp1.tar.gz 56029137 RMD160 dd2dee9afaa9d16bdf5ca2bed82a3b9e2162bdd2 SHA1 e242dc542eb1424a51c47e7c80aaefd26668451c SHA256 1757416bda52c34ade3a49b5896bafe9e3cfe092d3180da32d520f94324c0b88
133 EBUILD qt-sql-4.4.0_rc1.ebuild 2323 RMD160 6435dd549eaa61f7cdf16d22ead4f19a91831be1 SHA1 815ff31eb724f672b6a9da62d814ff86b609cf90 SHA256 88c8032069fe5f74f4ea1cc34ba5f8276f58886fdc3016d6700fcf15bc4fe01c
134 MD5 247f7e96aeced6eab497db1045170b3b qt-sql-4.4.0_rc1.ebuild 2323
135 RMD160 6435dd549eaa61f7cdf16d22ead4f19a91831be1 qt-sql-4.4.0_rc1.ebuild 2323
136 SHA256 88c8032069fe5f74f4ea1cc34ba5f8276f58886fdc3016d6700fcf15bc4fe01c qt-sql-4.4.0_rc1.ebuild 2323
137 MISC ChangeLog 257 RMD160 0f61792ded886e67a8c8a98658f54eeb1f7a0a21 SHA1 ef84722e1f0da4bf8ba5f74f89243954eeb537ab SHA256 69457bd5ebd4f67e6a203e22639b0dcd0a4b8c6fbe75fbee21ec35ce5e15eecc
138 MD5 9d33a1527c3e84a0fda0e34617b9659f ChangeLog 257
139 RMD160 0f61792ded886e67a8c8a98658f54eeb1f7a0a21 ChangeLog 257
140 SHA256 69457bd5ebd4f67e6a203e22639b0dcd0a4b8c6fbe75fbee21ec35ce5e15eecc ChangeLog 257
141 MISC metadata.xml 156 RMD160 d76590850d56864c8d99e6877ed15841b55ef1fc SHA1 e872bab086832a9db3f0fa9b1897c70577d3af21 SHA256 94c4f580c1a55f8a5e1a1dcdd6dedfea0b8bd78c1d7137c354938d73c49e4448
142 MD5 512150b47a904b0240101e319856aab1 metadata.xml 156
143 RMD160 d76590850d56864c8d99e6877ed15841b55ef1fc metadata.xml 156
144 SHA256 94c4f580c1a55f8a5e1a1dcdd6dedfea0b8bd78c1d7137c354938d73c49e4448 metadata.xml 156
145 MD5 82e8a2d695216d8ed9d69b21cb2b06fc files/digest-qt-sql-4.4.0_rc1 325
146 RMD160 b82b94eb49ac3711f85f127b3b2d336ebc7e2711 files/digest-qt-sql-4.4.0_rc1 325
147 SHA256 76d5f09c74420bfa920616103da36e3bab698f3932f4db60db3d499ff34abf0e files/digest-qt-sql-4.4.0_rc1 325
148
149
150
151 --
152 gentoo-commits@g.o mailing list