From owner-svn-ports-all@FreeBSD.ORG Thu May 8 13:10:16 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5CFFCBF5; Thu, 8 May 2014 13:10:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A911D77; Thu, 8 May 2014 13:10:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s48DAGGF009306; Thu, 8 May 2014 13:10:16 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s48DAFX4009304; Thu, 8 May 2014 13:10:15 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201405081310.s48DAFX4009304@svn.freebsd.org> From: Baptiste Daroussin Date: Thu, 8 May 2014 13:10:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353294 - in head/databases: qt4-odbc-plugin qt5-sqldrivers-odbc X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 May 2014 13:10:16 -0000 Author: bapt Date: Thu May 8 13:10:15 2014 New Revision: 353294 URL: http://svnweb.freebsd.org/changeset/ports/353294 QAT: https://qat.redports.org/buildarchive/r353294/ Log: Fix build after libiodbc/unixODBC changes Modified: head/databases/qt4-odbc-plugin/Makefile head/databases/qt5-sqldrivers-odbc/Makefile Modified: head/databases/qt4-odbc-plugin/Makefile ============================================================================== --- head/databases/qt4-odbc-plugin/Makefile Thu May 8 13:08:20 2014 (r353293) +++ head/databases/qt4-odbc-plugin/Makefile Thu May 8 13:10:15 2014 (r353294) @@ -3,6 +3,7 @@ PORTNAME= qt4-${DB}-plugin DISTVERSION= ${QT4_VERSION} +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= kde@FreeBSD.org @@ -10,7 +11,7 @@ COMMENT= Qt Open Database Connectivity p DB= odbc -LIB_DEPENDS+= libiodbc.so:${PORTSDIR}/databases/libiodbc +LIB_DEPENDS+= libodbc.so:${PORTSDIR}/databases/unixODBC USE_QT4= moc_build sql QT_DIST= yes Modified: head/databases/qt5-sqldrivers-odbc/Makefile ============================================================================== --- head/databases/qt5-sqldrivers-odbc/Makefile Thu May 8 13:08:20 2014 (r353293) +++ head/databases/qt5-sqldrivers-odbc/Makefile Thu May 8 13:10:15 2014 (r353294) @@ -1,11 +1,11 @@ # $FreeBSD$ COMMENT= Qt ${DB_DESC} plugin -PORTREVISION= 1 +PORTREVISION= 2 DB= ODBC DB_DESC= Open Database Connectivity -LIB_DEPENDS= libiodbc.so:${PORTSDIR}/databases/libiodbc +LIB_DEPENDS= libodbc.so:${PORTSDIR}/databases/unixODBC .include "${.CURDIR:H:H}/devel/qt5/Makefile.sqldrivers"