pesa        14/09/16 14:47:04

  Modified:             ChangeLog
  Added:                qtsql-5.3.2.ebuild
  Removed:              qtsql-5.3.1-r3.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
0xDADED6B2671CB57D!)

Revision  Changes    Path
1.18                 dev-qt/qtsql/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?rev=1.18&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?rev=1.18&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog   11 Sep 2014 02:14:01 -0000      1.17
+++ ChangeLog   16 Sep 2014 14:47:04 -0000      1.18
@@ -1,6 +1,12 @@
 # ChangeLog for dev-qt/qtsql
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v 1.17 2014/09/11 
02:14:01 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/ChangeLog,v 1.18 2014/09/16 
14:47:04 pesa Exp $
+
+*qtsql-5.3.2 (16 Sep 2014)
+
+  16 Sep 2014; Davide Pesavento <p...@gentoo.org> +qtsql-5.3.2.ebuild,
+  -qtsql-5.3.1-r3.ebuild:
+  Version bump.
 
   11 Sep 2014; Davide Pesavento <p...@gentoo.org>
   +files/qtsql-5.3.1-path-filtering.patch, qtsql-5.3.1-r3.ebuild:



1.1                  dev-qt/qtsql/qtsql-5.3.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/qtsql-5.3.2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-qt/qtsql/qtsql-5.3.2.ebuild?rev=1.1&content-type=text/plain

Index: qtsql-5.3.2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtsql/qtsql-5.3.2.ebuild,v 1.1 
2014/09/16 14:47:04 pesa Exp $

EAPI=5

QT5_MODULE="qtbase"

inherit multilib qt5-build

DESCRIPTION="SQL abstraction library for the Qt5 tooolkit"

if [[ ${QT5_BUILD_TYPE} == live ]]; then
        KEYWORDS=""
else
        KEYWORDS="~amd64 ~x86"
fi

IUSE="freetds mysql oci8 odbc postgres +sqlite"

REQUIRED_USE="
        || ( freetds mysql oci8 odbc postgres sqlite )
"

DEPEND="
        ~dev-qt/qtcore-${PV}[debug=]
        freetds? ( dev-db/freetds )
        mysql? ( virtual/mysql:= )
        oci8? ( dev-db/oracle-instantclient-basic )
        odbc? ( || ( dev-db/unixODBC dev-db/libiodbc ) )
        postgres? ( dev-db/postgresql-base:* )
        sqlite? ( dev-db/sqlite:3 )
"
RDEPEND="${DEPEND}"

QT5_TARGET_SUBDIRS=(
        src/sql
        src/plugins/sqldrivers
)

PATCHES=(
        "${FILESDIR}/${PN}-5.3.1-path-filtering.patch"
)

src_configure() {
        local myconf=(
                $(qt_use freetds  sql-tds    plugin)
                $(qt_use mysql    sql-mysql  plugin)
                $(qt_use oci8     sql-oci    plugin)
                $(qt_use odbc     sql-odbc   plugin)
                $(qt_use postgres sql-psql   plugin)
                $(qt_use sqlite   sql-sqlite plugin)
                $(use sqlite && echo -system-sqlite)
        )

        use mysql && myconf+=("-I${EPREFIX}/usr/include/mysql" 
"-L${EPREFIX}/usr/$(get_libdir)/mysql")
        use oci8 && myconf+=("-I${ORACLE_HOME}/include" 
"-L${ORACLE_HOME}/$(get_libdir)")
        use odbc && myconf+=("-I${EPREFIX}/usr/include/iodbc")
        use postgres && myconf+=("-I${EPREFIX}/usr/include/postgresql/pgsql")

        qt5-build_src_configure
}




Reply via email to