From owner-freebsd-openoffice@FreeBSD.ORG Sun Feb 20 19:41:09 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E67016A4CE; Sun, 20 Feb 2005 19:41:09 +0000 (GMT) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A3DD43D55; Sun, 20 Feb 2005 19:41:08 +0000 (GMT) (envelope-from mi+kde@aldan.algebra.com) Received: from aldan.algebra.com (mi@localhost [127.0.0.1]) by aldan.algebra.com (8.13.1/8.13.1) with ESMTP id j1KJex5E015854 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 20 Feb 2005 14:40:59 -0500 (EST) (envelope-from mi+kde@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.13.1/8.13.1/Submit) id j1KJew6d015853; Sun, 20 Feb 2005 14:40:58 -0500 (EST) (envelope-from mi+kde@aldan.algebra.com) From: Mikhail Teterin To: freebsd-gnats-submit@freebsd.org, isunin@dennougedougakkai-ndd.org, ports@freebsd.org Date: Sun, 20 Feb 2005 14:40:56 -0500 User-Agent: KMail/1.7.2 X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" cc: openoffice@freebsd.org Subject: Re: ports/77199: let's not verify checksums for editors/ooodict-all X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2005 19:41:09 -0000 The dictionary maintainers routinely update the files and don't do much version tracking, leading to the perpetual brokennes of the editors/ooodict-all and the client ports. Since the dictionaries are purely data anyway, do we really care to verify the checksums every time? Perhaps, removing the port's distinfo and adding the line: IGNOREFILES= ${DISTFILES} Automatic PLIST generation may also be needed in this case -- not sure. Compared with having a permanently broken port (and with not having this useful functionality at all), this may be best way... Please, try the patch below. Thanks! -mi P.S. This will also help in http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/77198 Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/ooodict-all/Makefile,v retrieving revision 1.27 diff -U2 -r1.27 Makefile --- Makefile 18 Dec 2004 23:02:24 -0000 1.27 +++ Makefile 20 Feb 2005 19:34:05 -0000 @@ -20,8 +20,4 @@ EXTRACT_ONLY= -BROKEN= "Checksum mismatch" -EXPIRATION_DATE=2005-02-18 -DEPRECATED= ${BROKEN} - .if !defined(LANGDIST) DICTMETAPORT= yes @@ -31,5 +27,5 @@ it_IT.zip pl_PL.zip pt_PT.zip pt_BR.zip \ es_ES.zip sk_SK.zip sv_SE.zip el_GR.zip \ - ru_RU_io.zip uk_UA.zip + ru_RU_yo.zip uk_UA.zip HYPHDIST?= hyph_cs_CZ.zip hyph_da_DK.zip hyph_de_DE.zip \ @@ -39,4 +35,5 @@ hyph_sk_SK.zip hyph_sl_SI.zip hyph_uk_UA.zip .endif +IGNOREFILES= ${DISTFILES} CUT?= /usr/bin/cut @@ -46,11 +43,11 @@ BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip .if !defined(INSTALLATION_BASEDIR) -INSTALLATION_BASEDIR= OpenOffice.org1.0 +INSTALLATION_BASEDIR= OpenOffice.org1.1.4 .if defined(RDEP) BUILD_DEPENDS= ${DICT_LIST_INST}:${RDEP} RUN_DEPENDS= ${DICT_LIST_INST}:${RDEP} .else -BUILD_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.0 -RUN_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.0 +BUILD_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.1 +RUN_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.1 .endif .endif From owner-freebsd-openoffice@FreeBSD.ORG Sun Feb 20 19:50:39 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D85516A504 for ; Sun, 20 Feb 2005 19:50:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89A3E43D6E for ; Sun, 20 Feb 2005 19:50:21 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1KJoLK9080433 for ; Sun, 20 Feb 2005 19:50:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1KJoLgp080432; Sun, 20 Feb 2005 19:50:21 GMT (envelope-from gnats) Date: Sun, 20 Feb 2005 19:50:21 GMT Message-Id: <200502201950.j1KJoLgp080432@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Mikhail Teterin Subject: Re: ports/77199: let's not verify checksums for editors/ooodict-all X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Mikhail Teterin List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2005 19:50:39 -0000 The following reply was made to PR ports/77199; it has been noted by GNATS. From: Mikhail Teterin To: freebsd-gnats-submit@freebsd.org, isunin@dennougedougakkai-ndd.org, ports@freebsd.org Cc: openoffice@freebsd.org Subject: Re: ports/77199: let's not verify checksums for editors/ooodict-all Date: Sun, 20 Feb 2005 14:40:56 -0500 The dictionary maintainers routinely update the files and don't do much version tracking, leading to the perpetual brokennes of the editors/ooodict-all and the client ports. Since the dictionaries are purely data anyway, do we really care to verify the checksums every time? Perhaps, removing the port's distinfo and adding the line: IGNOREFILES= ${DISTFILES} Automatic PLIST generation may also be needed in this case -- not sure. Compared with having a permanently broken port (and with not having this useful functionality at all), this may be best way... Please, try the patch below. Thanks! -mi P.S. This will also help in http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/77198 Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/ooodict-all/Makefile,v retrieving revision 1.27 diff -U2 -r1.27 Makefile --- Makefile 18 Dec 2004 23:02:24 -0000 1.27 +++ Makefile 20 Feb 2005 19:34:05 -0000 @@ -20,8 +20,4 @@ EXTRACT_ONLY= -BROKEN= "Checksum mismatch" -EXPIRATION_DATE=2005-02-18 -DEPRECATED= ${BROKEN} - .if !defined(LANGDIST) DICTMETAPORT= yes @@ -31,5 +27,5 @@ it_IT.zip pl_PL.zip pt_PT.zip pt_BR.zip \ es_ES.zip sk_SK.zip sv_SE.zip el_GR.zip \ - ru_RU_io.zip uk_UA.zip + ru_RU_yo.zip uk_UA.zip HYPHDIST?= hyph_cs_CZ.zip hyph_da_DK.zip hyph_de_DE.zip \ @@ -39,4 +35,5 @@ hyph_sk_SK.zip hyph_sl_SI.zip hyph_uk_UA.zip .endif +IGNOREFILES= ${DISTFILES} CUT?= /usr/bin/cut @@ -46,11 +43,11 @@ BUILD_DEPENDS= unzip:${PORTSDIR}/archivers/unzip .if !defined(INSTALLATION_BASEDIR) -INSTALLATION_BASEDIR= OpenOffice.org1.0 +INSTALLATION_BASEDIR= OpenOffice.org1.1.4 .if defined(RDEP) BUILD_DEPENDS= ${DICT_LIST_INST}:${RDEP} RUN_DEPENDS= ${DICT_LIST_INST}:${RDEP} .else -BUILD_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.0 -RUN_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.0 +BUILD_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.1 +RUN_DEPENDS= ${DICT_LIST_INST}:${PORTSDIR}/editors/openoffice-1.1 .endif .endif From owner-freebsd-openoffice@FreeBSD.ORG Mon Feb 21 01:50:25 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85D3B16A4D3 for ; Mon, 21 Feb 2005 01:50:24 +0000 (GMT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25CD943D2F for ; Mon, 21 Feb 2005 01:50:24 +0000 (GMT) (envelope-from chat95@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id j1L1oM96008015; Sun, 20 Feb 2005 17:50:23 -0800 (PST) Received: from localhost (qclgw.qcl.t.u-tokyo.ac.jp [133.11.70.190]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 4.0) with ESMTP id j1L1oHxs023516; Sun, 20 Feb 2005 17:50:21 -0800 (PST) Date: Mon, 21 Feb 2005 10:50:09 +0900 (JST) Message-Id: <20050221.105009.465788902.chat95@mac.com> To: f.staals@zonnet.nl From: NAKATA Maho In-Reply-To: <41EBE612.7090208@zonnet.nl> References: <41EBE612.7090208@zonnet.nl> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.16 (Corporate Culture) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-openoffice@freebsd.org Subject: Re: Error compiling openoffice-2.0.20050110 on FreeBSD 5.3 X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 01:50:25 -0000 In Message-ID: <41EBE612.7090208@zonnet.nl> Frank Staals wrote: > ============= > Building project bridges > ============= > /home/oo.o/work/bridges/unotypes > ------------- > /home/oo.o/work/bridges/source/cpp_uno/gcc3_freebsd_intel > dmake: Error -- `../../../unxfbsd.pro/slb/cpp_uno_shared.lib' not > found, and can't be made > '---* tg_merge.mk *---' > > ERROR: Error 65280 occurred while making > /home/oo.o/work/bridges/source/cpp_uno/gcc3_freebsd_intel > dmake: Error code 1, while making 'instsetoo_native/prj/build_all' > *** Error code 255 > > Stop in /home/oo.o. > PC1# '---* tg_merge.mk *---' / it reproduced in my environment and fixed at http://www.openoffice.org/issues/show_bug.cgi?id=43128 thank you very much. -- NAKATA, Maho From owner-freebsd-openoffice@FreeBSD.ORG Mon Feb 21 10:06:34 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A004616A4CE; Mon, 21 Feb 2005 10:06:34 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7875A43D45; Mon, 21 Feb 2005 10:06:34 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (maho@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1LA6YCq029470; Mon, 21 Feb 2005 10:06:34 GMT (envelope-from maho@freefall.freebsd.org) Received: (from maho@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1LA6XCQ029466; Mon, 21 Feb 2005 10:06:33 GMT (envelope-from maho) Date: Mon, 21 Feb 2005 10:06:33 GMT From: Maho Nakata Message-Id: <200502211006.j1LA6XCQ029466@freefall.freebsd.org> To: isunin@dennougedougakkai-ndd.org, maho@FreeBSD.org, openoffice@FreeBSD.org Subject: Re: ports/77199: Upgrade and unbreak polish/ooodict_PL X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 10:06:34 -0000 Synopsis: Upgrade and unbreak polish/ooodict_PL State-Changed-From-To: open->closed State-Changed-By: maho State-Changed-When: Mon Feb 21 10:06:23 GMT 2005 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=77199 From owner-freebsd-openoffice@FreeBSD.ORG Mon Feb 21 10:06:55 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95EB016A4CF; Mon, 21 Feb 2005 10:06:55 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE2743D60; Mon, 21 Feb 2005 10:06:55 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (maho@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1LA6tTv029518; Mon, 21 Feb 2005 10:06:55 GMT (envelope-from maho@freefall.freebsd.org) Received: (from maho@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1LA6tYA029514; Mon, 21 Feb 2005 10:06:55 GMT (envelope-from maho) Date: Mon, 21 Feb 2005 10:06:55 GMT From: Maho Nakata Message-Id: <200502211006.j1LA6tYA029514@freefall.freebsd.org> To: isunin@dennougedougakkai-ndd.org, maho@FreeBSD.org, openoffice@FreeBSD.org Subject: Re: ports/77198: Upgrade and unbreak editors/ooodict-es_ES X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 10:06:55 -0000 Synopsis: Upgrade and unbreak editors/ooodict-es_ES State-Changed-From-To: open->closed State-Changed-By: maho State-Changed-When: Mon Feb 21 10:06:40 GMT 2005 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=77198 From owner-freebsd-openoffice@FreeBSD.ORG Mon Feb 21 11:03:25 2005 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AA8C16A4CF for ; Mon, 21 Feb 2005 11:03:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AD3E43D46 for ; Mon, 21 Feb 2005 11:03:25 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j1LB3OhX035765 for ; Mon, 21 Feb 2005 11:03:24 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j1LB3O65035760 for openoffice@freebsd.org; Mon, 21 Feb 2005 11:03:24 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 21 Feb 2005 11:03:24 GMT Message-Id: <200502211103.j1LB3O65035760@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: openoffice@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Feb 2005 11:03:25 -0000 Current FreeBSD problem reports Critical problems Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- a [2003/05/11] ports/52068 openoffice portupgrade of editors/openoffice .org-1. a [2003/05/12] ports/52087 openoffice error while building japanese/openoffice o [2004/01/23] ports/61760 openoffice OpenOffice-1.1 still stalls in install on o [2004/03/24] ports/64678 openoffice openoffice 1.1 upgrade fails due to JDK c o [2004/05/31] ports/67413 openoffice OpenOffice 1.1 PDF Export is BROKEN o [2004/10/07] ports/72414 openoffice Precompiled el-openoffice-1.1.2_1 first t o [2004/11/29] ports/74518 openoffice openoffice-1.1 build failure on 4-stable: o [2004/12/14] ports/75039 openoffice OpenOffice 1.1.2 javaldx crashes at start o [2005/02/09] ports/77287 openoffice OOo2 cannot build without Mozilla o [2005/02/09] ports/77290 openoffice OOo2 moz needs GTK2 f [2005/02/10] ports/77336 openoffice OpenOffice 2.0 needs python dependency 11 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2004/05/10] ports/66480 openoffice openoffice-1.1.1 port uses root's $HOME f o [2005/01/17] ports/76330 openoffice editors/openoffice-1.1 calls uname needle o [2005/01/27] ports/76770 openoffice openoffice-2.0-devel cannot build -DWITHO 3 problems total.