diff options
Diffstat (limited to 'editors/openoffice.org-3-devel/files')
4 files changed, 13 insertions, 36 deletions
diff --git a/editors/openoffice.org-3-devel/files/Makefile.knobs b/editors/openoffice.org-3-devel/files/Makefile.knobs index 85ab949146a..9ce1258cdf1 100644 --- a/editors/openoffice.org-3-devel/files/Makefile.knobs +++ b/editors/openoffice.org-3-devel/files/Makefile.knobs @@ -31,6 +31,12 @@ CONFIGURE_ARGS+= --disable-gnome-vfs USE_GNOME+= gnomevfs2 .endif +.if defined(WITH_EVOLUTION2) +CONFIGURE_ARGS+= --enable-evolution2=yes +.else +USE_GNOME+= glib20 +.endif + .if defined(ALL_LOCALIZED_LANGS) CONFIGURE_ARGS+= --with-lang=ALL .else @@ -121,6 +127,11 @@ pre-fetch: @${ECHO} "You can compile OOo with gpc instead of libart by" @${ECHO} "make -DWITH_GPC" .endif +.if !defined(WITH_EVOLUTION2) + @${ECHO} + @${ECHO} "You can compile OOo with evolution2 support by" + @${ECHO} "make -DWITH_EVOLUTION2" +.endif @${ECHO} @${ECHO} "NOTICE:" @${ECHO} diff --git a/editors/openoffice.org-3-devel/files/generate.pl b/editors/openoffice.org-3-devel/files/generate.pl index 6ff54da5654..9b11bb60e16 100644 --- a/editors/openoffice.org-3-devel/files/generate.pl +++ b/editors/openoffice.org-3-devel/files/generate.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl # generate full build shell script for OpenOffice.org # Whom: Maho Nakata <maho@FreeBSD.org> -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-devel/files/Attic/generate.pl,v 1.8 2005-11-25 23:22:20 maho Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-devel/files/Attic/generate.pl,v 1.9 2006-11-12 22:11:34 maho Exp $ print "#!/bin/csh\n"; print "make deinstall clean\n"; diff --git a/editors/openoffice.org-3-devel/files/openoffice.org-wrapper b/editors/openoffice.org-3-devel/files/openoffice.org-wrapper index b0a4c8178fe..10c99eae36a 100644 --- a/editors/openoffice.org-3-devel/files/openoffice.org-wrapper +++ b/editors/openoffice.org-3-devel/files/openoffice.org-wrapper @@ -1,6 +1,6 @@ #!/bin/sh # -# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-devel/files/Attic/openoffice.org-wrapper,v 1.2 2005-12-23 03:06:18 maho Exp $ +# $FreeBSD: /tmp/pcvs/ports/editors/openoffice.org-3-devel/files/Attic/openoffice.org-wrapper,v 1.3 2006-11-12 22:11:35 maho Exp $ oopath=%%PREFIX%%/%%INSTALLATION_BASEDIR%%/program/ program=`echo $0 | sed -e 's|.*-%%OOOTAG%%-||'` diff --git a/editors/openoffice.org-3-devel/files/patch-i71039 b/editors/openoffice.org-3-devel/files/patch-i71039 deleted file mode 100644 index 8f0897bc862..00000000000 --- a/editors/openoffice.org-3-devel/files/patch-i71039 +++ /dev/null @@ -1,34 +0,0 @@ ---- binfilter/inc/bf_svx/svdobj.hxx.orig Mon Oct 23 13:47:55 2006 -+++ binfilter/inc/bf_svx/svdobj.hxx Mon Oct 23 13:48:08 2006 -@@ -265,7 +265,7 @@ - {} - virtual ~SdrObjUserData(); - -- virtual SdrObjUserData* Clone(SdrObject* pObj1) const = NULL; -+ virtual SdrObjUserData* Clone(SdrObject* pObj1) const = 0; - UINT32 GetInventor() const { return nInventor; } - UINT16 GetId() const { return nIdentifier; } - virtual void WriteData(SvStream& rOut); - ---- svx/inc/svdobj.hxx.orig Mon Oct 23 12:56:33 2006 -+++ svx/inc/svdobj.hxx Mon Oct 23 12:56:50 2006 -@@ -323,7 +323,7 @@ - {} - virtual ~SdrObjUserData(); - -- virtual SdrObjUserData* Clone(SdrObject* pObj1) const = NULL; -+ virtual SdrObjUserData* Clone(SdrObject* pObj1) const = 0; - UINT32 GetInventor() const { return nInventor; } - UINT16 GetId() const { return nIdentifier; } - //BFS01virtual void WriteData(SvStream& rOut); ---- sc/source/ui/inc/csvcontrol.hxx~ Fri Sep 9 06:17:47 2005 -+++ sc/source/ui/inc/csvcontrol.hxx Sat Nov 4 08:46:16 2006 -@@ -444,7 +444,7 @@ - - protected: - /** Derived classes create a new accessible object here. */ -- virtual ScAccessibleCsvControl* ImplCreateAccessible() = NULL; -+ virtual ScAccessibleCsvControl* ImplCreateAccessible() = 0; - }; - - |