From owner-freebsd-office@FreeBSD.ORG Fri Jan 17 12:20:01 2014 Return-Path: Delivered-To: office@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0F0C11F for ; Fri, 17 Jan 2014 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A503D1CF9 for ; Fri, 17 Jan 2014 12:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0HCK1dv060686 for ; Fri, 17 Jan 2014 12:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0HCK1Vf060685; Fri, 17 Jan 2014 12:20:01 GMT (envelope-from gnats) Date: Fri, 17 Jan 2014 12:20:01 GMT Message-Id: <201401171220.s0HCK1Vf060685@freefall.freebsd.org> To: office@FreeBSD.org From: "Christopher J. Ruwe" Subject: Re: ports/185614: editors/openoffice-4 does not configure, dbus-deps missing X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "Christopher J. Ruwe" List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Jan 2014 12:20:01 -0000 The following reply was made to PR ports/185614; it has been noted by GNATS. From: "Christopher J. Ruwe" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185614: editors/openoffice-4 does not configure, dbus-deps missing Date: Fri, 17 Jan 2014 13:15:03 +0100 --MP_/rThUiSoya7nQr/N47EQvTrQ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline I have re-patched (included) against REV 1 of editors/openoffice-4 Cheers, -- Christopher TZ: GMT + 1h GnuPG/GPG: 0xE8DE2C14 FreeBSD 9.2-STABLE #1 r256184: Thu Oct 10 19:12:54 CEST 2013 cjr@dijkstra.cruwe.de:/usr/obj/usr/home/cjr/media/src/freebsd/base/stable/9/sys/GEN_WDTRACE Punctuation matters: "Lets eat Grandma." or "Lets eat, Grandma." - Punctuation saves lives. "A panda eats shoots and leaves." or "A panda eats, shoots, and leaves." - Punctuation teaches proper biology. "With sufficient thrust, pigs fly just fine. However, this is not necessarily a good idea. It is hard to be sure where they are going to land, and it could be dangerous sitting under them as they fly overhead." (RFC 1925) --MP_/rThUiSoya7nQr/N47EQvTrQ Content-Type: text/x-patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=openoffice-4-dbus.patch diff -ur /poudriere/ports/default/editors/openoffice-4/Makefile tree/editors/openoffice-4/Makefile --- /poudriere/ports/default/editors/openoffice-4/Makefile 2014-01-16 00:15:36.519563192 +0100 +++ tree/editors/openoffice-4/Makefile 2014-01-17 13:05:51.505718650 +0100 @@ -33,11 +33,15 @@ WITHOUT_CPU_CFLAGS= true MAKE_JOBS_SAFE= yes -OPTIONS_DEFINE= GCONF GNOMEVFS CCACHE +OPTIONS_DEFINE= GCONF GNOMEVFS CCACHE DBUS OPTIONS_DEFAULT=GCONF GNOMEVFS GNOMEVFS_DESC= Enable GNOME Virtual File System CCACHE_DESC= Mimimize compile time of C/C++ programs +DBUS_LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus \ + libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib +DBUS_ENABLE= dbus + NO_STAGE= yes .include "${.CURDIR}/files/Makefile.localized" @@ -61,6 +65,14 @@ CONFIGURE_ARGS+=--disable-gnome-vfs .endif + +.if ${PORT_OPTIONS:MDBUS} +CONFIGURE_ARGS+=--enable-dbus \ +.else +# +.endif + + ONLY_FOR_ARCHS= i386 amd64 .if ${ARCH} == amd64 @@ -196,7 +208,6 @@ --with-package-format="archive" \ --enable-gstreamer \ --enable-wiki-publisher \ - --enable-dbus \ --enable-opengl \ --enable-category-b \ --enable-lockdown \ @@ -207,8 +218,8 @@ --with-beanshell-jar=${JAVALIBDIR}/bsh.jar \ --without-fonts \ --with-system-serf -# --with-system-jpeg -# --enable-pdfimport +# --with-system-jpeg \ +# --enable-pdfimport \ # --without-stlport --disable-mozilla \ # --with-system-graphite \ --MP_/rThUiSoya7nQr/N47EQvTrQ--