From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 8 22:30:01 2007 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC73F16A46C for ; Sat, 8 Sep 2007 22:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9677113C469 for ; Sat, 8 Sep 2007 22:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l88MU1Q4078673 for ; Sat, 8 Sep 2007 22:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l88MU1pK078672; Sat, 8 Sep 2007 22:30:01 GMT (envelope-from gnats) Resent-Date: Sat, 8 Sep 2007 22:30:01 GMT Resent-Message-Id: <200709082230.l88MU1pK078672@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, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1667616A476; Sat, 8 Sep 2007 22:20:35 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (thebighonker.lerctr.org [192.147.25.65]) by mx1.freebsd.org (Postfix) with ESMTP id 6302513C4A6; Sat, 8 Sep 2007 22:20:34 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from adsl-67-67-222-27.dsl.austtx.swbell.net ([67.67.222.27]:61530 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.68 (FreeBSD)) (envelope-from ) id 1IU8fI-000KMv-HC; Sat, 08 Sep 2007 17:20:34 -0500 Received: from ler by borg.lerctr.org with local (Exim 4.68 (FreeBSD)) (envelope-from ) id 1IU8fH-000I59-OE; Sat, 08 Sep 2007 17:20:31 -0500 Message-Id: Date: Sat, 08 Sep 2007 17:20:31 -0500 From: Larry Rosenman Sender: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: pav@FreeBSD.org, Thomas Abthorpe Subject: ports/116208: [MAINTAINER] mail/cone: Fix breakage 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: Sat, 08 Sep 2007 22:30:02 -0000 >Number: 116208 >Category: ports >Synopsis: [MAINTAINER] mail/cone: Fix breakage >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 Sep 08 22:30:01 GMT 2007 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 7.0-CURRENT amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 7.0-CURRENT FreeBSD 7.0-CURRENT #16: Fri Sep 7 15:50:41 CDT >Description: Fix breakage with the rootcerts install step. Pointyhat to: ler@lerctr.org Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- cone-0.71_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/mail/cone/Makefile /home/ler/ports/mail/cone/Makefile --- /usr/ports/mail/cone/Makefile 2007-09-06 23:06:30.000000000 -0500 +++ /home/ler/ports/mail/cone/Makefile 2007-09-08 17:03:00.457022647 -0500 @@ -7,6 +7,7 @@ PORTNAME= cone PORTVERSION= 0.71 +PORTREVISION= 1 CATEGORIES= mail # This is for beta versions, leave it in please: #MASTER_SITES= http://www.courier-mta.org/beta/${PORTNAME}/ \ @@ -32,7 +33,7 @@ USE_GMAKE= yes CPPFLAGS= -I${LOCALBASE}/include GNU_CONFIGURE= yes -CONFIGURE_ARGS= -C --without-db --with-certdb --prefix=${PREFIX} --exec-prefix=${PREFIX} +CONFIGURE_ARGS= -C --without-db --with-certdb=${PREFIX}/share/cone/rootcerts --prefix=${PREFIX} --exec-prefix=${PREFIX} CONFIGURE_ENV= REHASH="${PERL} ${SCRIPTDIR}/c_rehash" LDFLAGS=-L${LOCALBASE}/lib \ CPPFLAGS="${CPPFLAGS}" diff -ruN --exclude=CVS /usr/ports/mail/cone/pkg-plist /home/ler/ports/mail/cone/pkg-plist --- /usr/ports/mail/cone/pkg-plist 2007-06-03 07:33:23.000000000 -0500 +++ /home/ler/ports/mail/cone/pkg-plist 2007-09-08 16:58:24.074168233 -0500 @@ -93,6 +93,7 @@ %%DATADIR%%/header-mime.html %%DATADIR%%/header-plain.html %%DATADIR%%/index.html +%%DATADIR%%/icon.gif %%DATADIR%%/INSTALL.html %%DATADIR%%/leaf.html %%DATADIR%%/libmail-folder.html --- cone-0.71_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: