From owner-freebsd-gnome@FreeBSD.ORG Sun Jan 14 14:05:01 2007 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D67C616A415 for ; Sun, 14 Jan 2007 14:05:01 +0000 (UTC) (envelope-from lzt@k1.com.br) Received: from sipserver.k1.com.br (customer-200195195217.idc.onda.com.br [200.195.195.217]) by mx1.freebsd.org (Postfix) with ESMTP id 2C2BC13C455 for ; Sun, 14 Jan 2007 14:05:00 +0000 (UTC) (envelope-from lzt@k1.com.br) Received: from k1.com.br ([172.16.199.28]) by sipserver.k1.com.br (8.13.6/8.13.6) with ESMTP id l0EDpXlu094769; Sun, 14 Jan 2007 11:51:33 -0200 (BRST) (envelope-from lzt@k1.com.br) Received: from k1.com.br (localhost [127.0.0.1]) by k1.com.br (8.13.6/8.13.6) with ESMTP id l0EDqdgV008322; Sun, 14 Jan 2007 11:52:39 -0200 (BRST) (envelope-from lzt@k1.com.br) Received: (from root@localhost) by k1.com.br (8.13.6/8.13.6/Submit) id l0EDqdCB008321; Sun, 14 Jan 2007 11:52:39 -0200 (BRST) (envelope-from lzt) Date: Sun, 14 Jan 2007 11:52:39 -0200 (BRST) Message-Id: <200701141352.l0EDqdCB008321@k1.com.br> To: FreeBSD-gnats-submit@freebsd.org From: Sergio Lenzi X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@freebsd.org Subject: [PATCH] databases/libgda2: [SUMMARIZE CHANGES] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 Jan 2007 14:05:01 -0000 >Submitter-Id: current-users >Originator: Sergio Lenzi >Organization: k1 sistemas >Confidential: no >Synopsis: [PATCH] databases/libgda2: [SUMMARIZE CHANGES] >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 6.1-RELEASE i386 >Environment: System: FreeBSD k1.com.br 6.1-RELEASE FreeBSD 6.1-RELEASE #1: Sat Nov 4 17:26:48 BRST >Description: a small fix in the makefile for the following reasons: 1) it installs the man pages in /usr/local/share/man where it should be in /usr/local/man 2) various tests in the libraries for postgres,ldap, and unixodbc fixed for release 6.x of FreeBSD 3) .endif in the wrong place at the Makefile.. port submit complains about it Hope this can help... [DESCRIBE CHANGES] Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- libgda2-1.2.4,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/libgda2/Makefile /fileserver/ports/databases/libgda2/Makefile --- /usr/ports/databases/libgda2/Makefile Thu Jan 11 03:32:12 2007 +++ /fileserver/ports/databases/libgda2/Makefile Sun Jan 14 11:46:03 2007 @@ -21,6 +21,8 @@ USE_BZIP2= yes +NOMANCOMPRESS= yes + .if !defined(REFERENCE_PORT) BUILD_DEPENDS= scrollkeeper-config:${PORTSDIR}/textproc/scrollkeeper @@ -36,7 +38,10 @@ INSTALLS_OMF= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-bdb + +CONFIGURE_ARGS= --without-bdb +CONFIGURE_ARGS+=--mandir=${LOCALBASE}/man + CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib -lintl" @@ -57,34 +62,38 @@ WITH_MYSQL= yes .endif -.if exists(${LOCALBASE}/lib/libldap.so.2) +.if exists(${LOCALBASE}/lib/libldap.so) WITH_LDAP=yes .endif -.if exists(${LOCALBASE}/lib/libgds.so.1) +.if exists(${LOCALBASE}/lib/libgds.so) WITH_FIREBIRD= yes .endif -.if exists(${LOCALBASE}/lib/libtds.so.2) +.if exists(${LOCALBASE}/lib/libtds.so) WITH_FREETDS= yes .endif -.if exists(${LOCALBASE}/lib/libsybdb.so.3) +.if exists(${LOCALBASE}/lib/libsybdb.so) WITH_SYBASE= yes .endif -.if exists(${LOCALBASE}/lib/libmdbsql.so.0) +.if exists(${LOCALBASE}/lib/libmdbsql.so) WITH_MDB= yes .endif -.if exists(${LOCALBASE}/lib/libODBC.so.1) +.if exists(${LOCALBASE}/lib/libodbc.so) WITH_ODBC= yes .endif -.if exists(${LOCALBASE}/lib/libsqlite3.so.8) +.if exists(${LOCALBASE}/lib/libsqlite3.so) WITH_SQLITE= yes .endif +.if exists(${LOCALBASE}/lib/libpq.so) +WITH_PGSQL= yes +.endif + .if !defined(WITH_MYSQL) PLIST_SUB+= MYSQL:="@comment " CONFIGURE_ARGS+= --without-mysql @@ -192,6 +201,6 @@ @${ECHO_MSG} "You can enable support for SQLITE databases by defining WITH_SQLITE." .endif -.include - .endif + +.include --- libgda2-1.2.4,1.patch ends here ---