summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngmar Vanhassel <ingmar@gentoo.org>2008-03-05 23:25:52 +0000
committerIngmar Vanhassel <ingmar@gentoo.org>2008-03-05 23:25:52 +0000
commit0405f90af798abd6fc872eb2f369355fe04530eb (patch)
tree4e65ef84183eea09ce7f8d21a7dc291a95104c98 /x11-libs/qt-sql
parentOld. (diff)
downloadgentoo-2-0405f90af798abd6fc872eb2f369355fe04530eb.tar.gz
gentoo-2-0405f90af798abd6fc872eb2f369355fe04530eb.tar.bz2
gentoo-2-0405f90af798abd6fc872eb2f369355fe04530eb.zip
Old.
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-libs/qt-sql')
-rw-r--r--x11-libs/qt-sql/ChangeLog6
-rw-r--r--x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild67
2 files changed, 5 insertions, 68 deletions
diff --git a/x11-libs/qt-sql/ChangeLog b/x11-libs/qt-sql/ChangeLog
index 8ddb7a7178c0..c7230eb13d44 100644
--- a/x11-libs/qt-sql/ChangeLog
+++ b/x11-libs/qt-sql/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for x11-libs/qt-sql
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.2 2008/03/05 23:09:33 ingmar Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/ChangeLog,v 1.3 2008/03/05 23:25:52 ingmar Exp $
+
+ 05 Mar 2008; Ingmar Vanhassel <ingmar@gentoo.org>
+ -qt-sql-4.4.0_rc1.ebuild:
+ Old.
*qt-sql-4.4.0_beta1 (05 Mar 2008)
diff --git a/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild b/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild
deleted file mode 100644
index cd8c27dbe9d0..000000000000
--- a/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/qt-sql/qt-sql-4.4.0_rc1.ebuild,v 1.5 2007/12/24 14:39:52 caleb Exp $
-
-inherit qt4-build
-
-SRCTYPE="preview-opensource-src"
-DESCRIPTION="The SQL module for the Qt toolkit."
-HOMEPAGE="http://www.trolltech.com/"
-
-MY_PV=${PV/_rc/-tp}
-
-SRC_URI="ftp://ftp.trolltech.com/pub/qt/source/qt-x11-${SRCTYPE}-${MY_PV}.tar.gz"
-S=${WORKDIR}/qt-x11-${SRCTYPE}-${MY_PV}
-
-LICENSE="|| ( QPL-1.0 GPL-2 )"
-SLOT="4"
-KEYWORDS="~x86"
-
-IUSE="firebird mysql odbc postgres sqlite"
-
-RDEPEND="~x11-libs/qt-core-${PV}
- mysql? ( virtual/mysql )
- firebird? ( dev-db/firebird )
- sqlite? ( =dev-db/sqlite-3* )
- postgres? ( dev-db/libpq )
- odbc? ( dev-db/unixODBC )"
-
-DEPEND="${RDEPEND}"
-
-QT4_TARGET_DIRECTORIES="src/sql src/plugins/sqldrivers"
-
-src_unpack() {
- qt4-build_src_unpack
-
- skip_qmake_build_patch
- skip_project_generation_patch
- install_binaries_to_buildtree
-}
-
-src_compile() {
- local myconf=$(standard_configure_options)
-
- use mysql && myconf="${myconf} -plugin-sql-mysql -I/usr/include/mysql -L/usr/$(get_libdir)/mysql" || myconf="${myconf} -no-sql-mysql"
- use postgres && myconf="${myconf} -plugin-sql-psql -I/usr/include/postgresql/pgsql" || myconf="${myconf} -no-sql-psql"
- use firebird && myconf="${myconf} -plugin-sql-ibase -I/opt/firebird/include" || myconf="${myconf} -no-sql-ibase"
- use sqlite && myconf="${myconf} -plugin-sql-sqlite -system-sqlite" || myconf="${myconf} -no-sql-sqlite"
- use odbc && myconf="${myconf} -plugin-sql-odbc" || myconf="${myconf} -no-sql-odbc"
-
- # Don't support sqlite2 anymore
- myconf="${myconf} -no-sql-sqlite2"
-
- if built_with_use ~x11-libs/qt-core-${PV} qt3support; then
- myconf="${myconf} -qt3support"
- else
- myconf="${myconf} -no-qt3support"
- fi
- myconf="${myconf} -no-xkb -no-tablet -no-fontconfig -no-xrender -no-xrandr -no-xfixes -no-xcursor \
- -no-xinerama -no-xshape -no-sm -no-opengl -no-nas-sound -no-qdbus -iconv -no-cups -no-nis \
- -no-gif -no-libpng -no-libmng -no-libjpeg -no-openssl -system-zlib -no-webkit -no-phonon \
- -no-xmlpatterns -no-freetype -no-libtiff -no-accessibility -no-fontconfig -no-glib -no-opengl"
-
- echo ./configure ${myconf}
- ./configure ${myconf} || die
-
- build_target_directories
-}