From owner-freebsd-openoffice@FreeBSD.ORG Wed Nov 26 01:42:16 2003 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 1F89E16A4CE; Wed, 26 Nov 2003 01:42:16 -0800 (PST) Received: from mail.contactel.cz (mail.contactel.cz [212.65.193.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DC0B43FCB; Wed, 26 Nov 2003 01:42:14 -0800 (PST) (envelope-from zburget@c-box.cz) Received: from mail.miastudio.cz (74.75.108.194.contactel.net [194.108.75.74]) by mail.contactel.cz (Postfix) with SMTP id 71BA649F4D; Wed, 26 Nov 2003 10:42:12 +0100 (CET) Received: from 192.168.1.250 ([192.168.1.250]) by mail.miastudio.cz (WinRoute Pro 4.1.30) with SMTP; Wed, 26 Nov 2003 10:42:12 +0100 Message-ID: <005801c3b402$1c9fe100$fa01a8c0@video> From: =?iso-8859-2?Q?Zbyn=ECk_Burget?= To: Date: Wed, 26 Nov 2003 10:46:05 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0055_01C3B40A.7E5AD320" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4922.1500 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4925.2800 cc: ports@FreeBSD.org Subject: FreeBSD Port: openoffice-1.1.0_1 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: Wed, 26 Nov 2003 09:42:16 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0055_01C3B40A.7E5AD320 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 7bit Hi, I find some small imperfections in Makefile for openoffice 1.1 I've defined WRKDIRPREFIX= /usr/obj in my make.conf and attempt of build reports errs I try find and correct this errs and I was create attached .diff Now all works... ...sorry for my english :-( Zbynek Burget ------=_NextPart_000_0055_01C3B40A.7E5AD320 Content-Type: application/octet-stream; name="Makefile.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile.diff" --- Makefile.orig Thu Nov 20 06:13:27 2003=0A= +++ Makefile Sat Nov 22 12:53:01 2003=0A= @@ -324,7 +324,7 @@=0A= done=0A= @${CP} ${WRKDIR}/gpc231/gpc.c ${WRKSRC}/../external/gpc/=0A= @${CP} ${WRKDIR}/gpc231/gpc.h ${WRKSRC}/../external/gpc/=0A= - @${MAKE} extract-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} extract-mozilla=0A= @-${RM} -f ${WRKSRC}/../moz/zipped/*.zip=0A= @${CHMOD} +x ${WRKSRC}/../solenv/bin/zipdep.pl=0A= .if defined(L10NHELP)=0A= @@ -335,9 +335,9 @@=0A= .endif=0A= =0A= post-patch:=0A= - @${MAKE} patch-mozilla=0A= - @${MAKE} fix-kdewrappers=0A= - @${MAKE} fix-gnomewrappers=0A= + @cd ${.CURDIR} && ${MAKE} patch-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} fix-kdewrappers=0A= + @cd ${.CURDIR} && ${MAKE} fix-gnomewrappers=0A= .if defined(WITH_TTF_BYTECODE_ENABLED)=0A= @if [ "`echo ${PATCHDIR}/optpatch-*`" !=3D "${PATCHDIR}/optpatch-*" ]; = then \=0A= ${ECHO_MSG} "=3D=3D=3D> Applying additional TTF bytecode patches for = ${PKGNAME}" ; \=0A= @@ -452,17 +452,17 @@=0A= | ${ZIP} ${WRKDIR}/FREEBSDGCCIruntime.zip -@=0A= =0A= mozilla:=0A= - @${MAKE} extract-mozilla=0A= - @${MAKE} patch-mozilla=0A= - @${MAKE} build-mozilla=0A= - @${MAKE} register-mozilla=0A= - @${MAKE} install-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} extract-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} patch-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} build-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} register-mozilla=0A= + @cd ${.CURDIR} && ${MAKE} install-mozilla=0A= =0A= do-build:=0A= .if ! exists(${WRKSRC}/../moz/zipped/FREEBSDGCCIruntime.zip)=0A= .if ! exists(${WRKSRC}/../moz/zipped/FREEBSDGCCIlib.zip)=0A= .if ! exists(${WRKSRC}/../moz/zipped/FREEBSDGCCIinc.zip)=0A= - @${MAKE} mozilla=0A= + @cd ${.CURDIR} && ${MAKE} mozilla=0A= .endif=0A= .endif=0A= .endif=0A= @@ -569,8 +569,8 @@=0A= .endif=0A= =0A= update:=0A= - @${MAKE} fetch=0A= - @${MAKE} extract=0A= + @cd ${.CURDIR} && ${MAKE} fetch=0A= + @cd ${.CURDIR} && ${MAKE} extract=0A= @cd ${WRKSRC}/.. && for dir in *; do \=0A= if [ -d $$dir ]; then \=0A= cd $$dir; cvs update -d; cd ..; \=0A= ------=_NextPart_000_0055_01C3B40A.7E5AD320--