From owner-freebsd-ports-bugs@FreeBSD.ORG Wed May 25 16:00:10 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org 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 1FA5216A41C for ; Wed, 25 May 2005 16:00:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C341B43D48 for ; Wed, 25 May 2005 16:00:09 +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 j4PG09Uq007052 for ; Wed, 25 May 2005 16:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j4PG09nj007051; Wed, 25 May 2005 16:00:09 GMT (envelope-from gnats) Resent-Date: Wed, 25 May 2005 16:00:09 GMT Resent-Message-Id: <200505251600.j4PG09nj007051@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, Stefan Walter Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D48616A41C for ; Wed, 25 May 2005 15:53:19 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from mail.onlinefix.de (mail2-out.titan-networks.de [217.140.72.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23EE643D53 for ; Wed, 25 May 2005 15:53:17 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from kyuzo.dunkelkammer.void ([217.140.77.242]) (authenticated bits=0) by mail.onlinefix.de (8.12.3/8.12.3/Debian-7.1) with ESMTP id j4PFrE7K021024 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 25 May 2005 17:53:15 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 44E6C3FF6; Wed, 25 May 2005 17:53:14 +0200 (CEST) Message-Id: <20050525155314.44E6C3FF6@kyuzo.dunkelkammer.void> Date: Wed, 25 May 2005 17:53:14 +0200 (CEST) From: Stefan Walter To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mwicks@kettering.edu Subject: ports/81470: [PATCH] devel/monotone: update to 0.19 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 May 2005 16:00:10 -0000 >Number: 81470 >Category: ports >Synopsis: [PATCH] devel/monotone: update to 0.19 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Wed May 25 16:00:09 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Stefan Walter >Release: FreeBSD 5.4-STABLE i386 >Organization: Infinity Approximation Task Force >Environment: System: FreeBSD kyuzo.dunkelkammer.void 5.4-STABLE FreeBSD 5.4-STABLE #0: Sat May 21 12:55:23 CEST 2005 >Description: - Update to 0.19 - Chase original master site - Remove WITHOUT_ADNS option, the configure script shipped with 0.19 doesn't seem to know anything about adns - Replace !WITHOUT{LUA,SQLITE} with WITH_{LUA,SQLITE}_PORT to make the included libraries the default choice - the INSTALL file coming with the distribution suggests using the bundled libraries to avoid problems, and as this software is still under heavy development, I think it should be honored. - Add home page URL to pkg-descr Port maintainer (mwicks@kettering.edu) is cc'd. (Please send a followup to this PR to state if you approve this update or not. Thanks!) Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- monotone-0.19.patch begins here --- Index: Makefile =================================================================== RCS file: /home/cvs/FreeBSD/ports/devel/monotone/Makefile,v retrieving revision 1.9 diff -u -u -r1.9 Makefile --- Makefile 12 Apr 2005 03:25:15 -0000 1.9 +++ Makefile 25 May 2005 14:16:29 -0000 @@ -6,9 +6,9 @@ # PORTNAME= monotone -PORTVERSION= 0.16 +PORTVERSION= 0.19 CATEGORIES= devel -MASTER_SITES= http://www.venge.net/monotone/ \ +MASTER_SITES= http://www.venge.net/monotone/downloads/ \ http://norton.kettering.edu/freebsd/ MAINTAINER= mwicks@kettering.edu @@ -36,20 +36,13 @@ .if defined(WITHOUT_NLS) CONFIGURE_ARGS+= --disable-nls .endif -.if !defined(WITHOUT_ADNS) -LIB_DEPENDS+= adns.1:${PORTSDIR}/dns/adns -.else -CONFIGURE_ARGS+= --with-bundled-adns -.endif -.if !defined(WITHOUT_LUA) +.if defined(WITH_LUA_PORT) LIB_DEPENDS+= lua.5:${PORTSDIR}/lang/lua -.else -CONFIGURE_ARGS+= --with-bundled-lua +CONFIGURE_ARGS+= --with-bundled-lua=no .endif -.if !defined(WITHOUT_SQLITE) -LIB_DEPENDS+= sqlite.2:${PORTSDIR}/databases/sqlite2 -.else -CONFIGURE_ARGS+= --with-bundled-sqlite +.if defined(WITH_SQLITE_PORT) +LIB_DEPENDS+= sqlite3:${PORTSDIR}/databases/sqlite3 +CONFIGURE_ARGS+= --with-bundled-sqlite=no .endif .include Index: distinfo =================================================================== RCS file: /home/cvs/FreeBSD/ports/devel/monotone/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 12 Feb 2005 21:11:43 -0000 1.2 +++ distinfo 25 May 2005 13:27:27 -0000 @@ -1,2 +1,2 @@ -MD5 (monotone-0.16.tar.gz) = 66fe3f50a8fe621afc8f355b25201ecb -SIZE (monotone-0.16.tar.gz) = 3438625 +MD5 (monotone-0.19.tar.gz) = aa549380068613dc04ef5d084bec1b1f +SIZE (monotone-0.19.tar.gz) = 4796447 Index: pkg-descr =================================================================== RCS file: /home/cvs/FreeBSD/ports/devel/monotone/pkg-descr,v retrieving revision 1.1 diff -u -u -r1.1 pkg-descr --- pkg-descr 14 Jun 2004 19:35:28 -0000 1.1 +++ pkg-descr 25 May 2005 15:40:27 -0000 @@ -7,3 +7,5 @@ * Make notes about your opinion of the quality of versions of files. * Make decisions about using or ignoring versions, depending on the notes you receive from others. + +WWW: http://www.venge.net/monotone/ --- monotone-0.19.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: