From owner-freebsd-ports Mon Nov 18 13:31:46 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB95037B422 for ; Mon, 18 Nov 2002 13:30:42 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F0243EB3 for ; Mon, 18 Nov 2002 13:30:10 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id gAILUAx3029319 for ; Mon, 18 Nov 2002 13:30:10 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id gAILUAQm029318; Mon, 18 Nov 2002 13:30:10 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F120337B404 for ; Mon, 18 Nov 2002 13:20:27 -0800 (PST) Received: from socigeog.hmt.toyama-u.ac.jp (socigeog.hmt.toyama-u.ac.jp [160.26.63.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33E1A43EB3 for ; Mon, 18 Nov 2002 13:20:21 -0800 (PST) (envelope-from tkato@prontomail.com) Received: from socigeog.hmt.toyama-u.ac.jp (localhost [127.0.0.1]) by socigeog.hmt.toyama-u.ac.jp (8.12.6/8.12.3) with SMTP id gAILKJ6A000742 for ; Tue, 19 Nov 2002 06:20:19 +0900 (JST) (envelope-from tkato@prontomail.com) Message-Id: <20021119061716.7cdf9e3a.tkato@prontomail.com> Date: Tue, 19 Nov 2002 06:17:16 +0900 From: KATO Tsuguru To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/45441: Update port: misc/kcd to 6.4.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 45441 >Category: ports >Synopsis: Update port: misc/kcd to 6.4.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 18 13:30:10 PST 2002 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.7-RELEASE-p2 i386 >Organization: >Environment: >Description: - Update to version 6.4.1 New file: files/patch-cxxlib.cc files/patch-cxxlib.h >How-To-Repeat: >Fix: diff -urN /usr/ports/misc/kcd/Makefile misc/kcd/Makefile --- /usr/ports/misc/kcd/Makefile Mon Nov 11 19:00:27 2002 +++ misc/kcd/Makefile Tue Nov 12 23:18:19 2002 @@ -6,7 +6,7 @@ # PORTNAME= kcd -PORTVERSION= 6.0.0 +PORTVERSION= 6.4.1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -15,12 +15,11 @@ LIB_DEPENDS= intl.4:${PORTSDIR}/devel/gettext +USE_PERL5= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib -lintl" - -CFLAGS+= -fpermissive MAN1= kcd.1 diff -urN /usr/ports/misc/kcd/distinfo misc/kcd/distinfo --- /usr/ports/misc/kcd/distinfo Tue Sep 10 20:20:17 2002 +++ misc/kcd/distinfo Tue Nov 12 23:18:33 2002 @@ -1 +1 @@ -MD5 (kcd-6.0.0.tar.gz) = 39fa41ef3a5b1c9560365a4b754d9ac6 +MD5 (kcd-6.4.1.tar.gz) = d36bc66015d813d696c5425cf440955e diff -urN /usr/ports/misc/kcd/files/patch-cxxlib.cc misc/kcd/files/patch-cxxlib.cc --- /usr/ports/misc/kcd/files/patch-cxxlib.cc Thu Jan 1 09:00:00 1970 +++ misc/kcd/files/patch-cxxlib.cc Tue Nov 12 05:30:37 2002 @@ -0,0 +1,18 @@ +--- cxxlib.cc.orig Sun Nov 3 23:49:03 2002 ++++ cxxlib.cc Wed Nov 6 09:42:38 2002 +@@ -48,6 +48,7 @@ + abort(); + } + ++#ifndef __FreeBSD__ + void *operator new (size_t size) CXX__NEW_THROW + { + #ifdef LARGE_MEMORY_THRES +@@ -101,6 +102,7 @@ + } + + #endif /* CXX__HAVE_ARRAY_NEW */ ++#endif + + #ifndef CXX__NEW_THROW_BAD_ALLOC + void kcd_new_handler() diff -urN /usr/ports/misc/kcd/files/patch-cxxlib.h misc/kcd/files/patch-cxxlib.h --- /usr/ports/misc/kcd/files/patch-cxxlib.h Thu Jan 1 09:00:00 1970 +++ misc/kcd/files/patch-cxxlib.h Tue Nov 12 05:30:24 2002 @@ -0,0 +1,17 @@ +--- cxxlib.h.orig Sun Nov 3 23:49:03 2002 ++++ cxxlib.h Wed Nov 6 09:41:36 2002 +@@ -33,12 +33,14 @@ + // new/delete operators + // + ++#ifndef __FreeBSD__ + void *operator new (size_t s) CXX__NEW_THROW; + void operator delete (void *p) CXX__DELETE_THROW; + #ifdef CXX__HAVE_ARRAY_NEW + void *operator new[] (size_t s) CXX__NEW_THROW; + void operator delete[] (void *p) CXX__DELETE_THROW; + #endif /* CXX__HAVE_ARRAY_NEW */ ++#endif + + // + // string I/O stream >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message