From owner-freebsd-ports-bugs@FreeBSD.ORG Sat May 14 15:50:02 2005 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFE7F16A4D0 for ; Sat, 14 May 2005 15:50:02 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACA6C43D76 for ; Sat, 14 May 2005 15:50:02 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j4EFo24k040122 for ; Sat, 14 May 2005 15:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4EFo2lu040096; Sat, 14 May 2005 15:50:02 GMT (envelope-from gnats) Resent-Date: Sat, 14 May 2005 15:50:02 GMT Resent-Message-Id: <200505141550.j4EFo2lu040096@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Xavier Beaudouin Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6424116A4CE for ; Sat, 14 May 2005 15:46:41 +0000 (GMT) Received: from domu.oav.net (irchub.caudium.net [195.154.253.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87DAE43D6A for ; Sat, 14 May 2005 15:46:40 +0000 (GMT) (envelope-from kiwi@domu.oav.net) Received: from domu.oav.net (localhost.oav.net [127.0.0.1]) by domu.oav.net (8.12.10/8.12.10) with ESMTP id j4EFkdsH024386 for ; Sat, 14 May 2005 17:46:39 +0200 (CEST) (envelope-from kiwi@domu.oav.net) Received: (from kiwi@localhost) by domu.oav.net (8.12.10/8.12.10/Submit) id j4EFkXfZ024385; Sat, 14 May 2005 17:46:33 +0200 (CEST) (envelope-from kiwi) Message-Id: <200505141546.j4EFkXfZ024385@domu.oav.net> Date: Sat, 14 May 2005 17:46:33 +0200 (CEST) From: Xavier Beaudouin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/81023: [MAINTAINER] misc/libhome: update to 0.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 May 2005 15:50:03 -0000 >Number: 81023 >Category: ports >Synopsis: [MAINTAINER] misc/libhome: update to 0.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 14 15:50:02 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Xavier Beaudouin >Release: FreeBSD 5.2.1-RELEASE-p3 i386 >Organization: The Caudium Group / Association Kazar >Environment: System: FreeBSD domu.oav.net 5.2.1-RELEASE-p3 FreeBSD 5.2.1-RELEASE-p3 #0: Thu Mar 18 12:25:33 CET 2004 >Description: == version 0.9 * compile and install home_su utility. * bless Berkeley DB 4.3 API new change * add cache_revive_ttl to allow to use the cache when transcient condition occurs in driver. Cached data may now be used when the database is unavaiable during some time. * myconnect_timeout set the connect timeout for MySQL >= 3.23.29 * allow to retry queries when transcient conditions occurs. (directives "retries" and "retry.delay"). * add proxy driver and home_proxy server * string expansion (for LDAP) * Postgresql driver (alpha) * add my_port directive to set the MySQL port. * allow to connect to MySQL using a given unix socket. * install fix when libhome-preload.la is not avaiable. * install fix, check Berkeley DB in some other places. * install fix, --with-ldap-lib argument is ever used. * upgrade to libtool 1.5.10 - Update to 0.9 Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- libhome-0.9.patch begins here --- diff -ruN --exclude=CVS /usr/ports/misc/libhome.old/Makefile /usr/ports/misc/libhome/Makefile --- /usr/ports/misc/libhome.old/Makefile Sat May 14 17:35:58 2005 +++ /usr/ports/misc/libhome/Makefile Sat May 14 17:45:13 2005 @@ -6,7 +6,7 @@ # PORTNAME= libhome -PORTVERSION= 0.8.1 +PORTVERSION= 0.9 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= pll @@ -19,6 +19,8 @@ OPTIONS+= DB3 "Support for DB3" on OPTIONS+= DB4 "Support for DB4" off OPTIONS+= PAM "Support for PAM (Experimental)" off +OPTIONS+= PROXY "Support for Proxy Driver (Experimental)" off +OPTIONS+= PGSQL "Support for PostgreSQL (Experimental)" off HAS_CONFIGURE= yes INSTALLS_SHLIB= yes @@ -61,6 +63,19 @@ CONFIGURE_ARGS+= --with-pam .else CONFIGURE_ARGS+= --without-pam +.endif + +.if defined(WITH_PROXY) +CONFIGURE_ARGS+= --with-proxy +.else +CONFIGURE_ARGS+= --without-proxy +.endif + +.if defined(WITH_PGSQL) +CONFIGURE_ARGS+= --with-pgsql +USE_PGSQL= YES +.else +CONFIGURE_ARGS+= --without-pgsql .endif GNU_CONFIGURE= YES diff -ruN --exclude=CVS /usr/ports/misc/libhome.old/distinfo /usr/ports/misc/libhome/distinfo --- /usr/ports/misc/libhome.old/distinfo Sat May 14 17:35:58 2005 +++ /usr/ports/misc/libhome/distinfo Sat May 14 17:40:43 2005 @@ -1,2 +1,2 @@ -MD5 (libhome-0.8.1.tar.gz) = 44f06ff97b594741f0558efb51960d29 -SIZE (libhome-0.8.1.tar.gz) = 251512 +MD5 (libhome-0.9.tar.gz) = 6457341b887dac2f1dfc3d76117e2886 +SIZE (libhome-0.9.tar.gz) = 274081 diff -ruN --exclude=CVS /usr/ports/misc/libhome.old/pkg-plist /usr/ports/misc/libhome/pkg-plist --- /usr/ports/misc/libhome.old/pkg-plist Sat May 14 17:35:58 2005 +++ /usr/ports/misc/libhome/pkg-plist Sat May 14 17:42:24 2005 @@ -1,4 +1,5 @@ bin/home_finger +bin/home_su bin/libhome.sh etc/home.conf.dist include/home/home_version.h --- libhome-0.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: