diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2003-03-12 01:04:08 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2003-03-12 01:04:08 +0000 |
commit | 19599e5a4a411a2d56be9c645df2a3d9eb0d4ba3 (patch) | |
tree | d09f794c6c4092a612ca9d09bf3925389764a92c /editors/openoffice.org-2/Makefile | |
parent | Change the imake-4 dependency to the new date.def file in XFree86 4.3.0. (diff) |
Update to cws_srx644_ooo11beta. It still doesn't build but this commit will help
to track the things down.
There are known problems with weak symbols and exceptions. Some c++ tools
inside the port will fail if you try to compile.
The cpp_uno bridge has been updated to the latest linux version available.
Added 'make update' target to upgrade the source to the latest version.
Approved by: kris (portmgr)
Notes
Notes:
svn path=/head/; revision=77109
Diffstat (limited to 'editors/openoffice.org-2/Makefile')
-rw-r--r-- | editors/openoffice.org-2/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/editors/openoffice.org-2/Makefile b/editors/openoffice.org-2/Makefile index 64c08be99f88..6f740924c399 100644 --- a/editors/openoffice.org-2/Makefile +++ b/editors/openoffice.org-2/Makefile @@ -8,7 +8,8 @@ PORTNAME= openoffice PORTVERSION= 644 CATEGORIES+= editors -MASTER_SITES+= http://ny1.mirror.openoffice.org/developer/%SUBDIR%/ \ +MASTER_SITES+= http://projects.imp.ch/openoffice/%SUBDIR%/ \ + http://ny1.mirror.openoffice.org/developer/%SUBDIR%/ \ http://ftp.gwdg.de/pub/misc/openoffice/developer/%SUBDIR%/ \ ${MASTER_SITE_RINGSERVER:S,developer/%SUBDIR%,misc/openoffice/&,} \ ftp://ftp.cs.man.ac.uk/pub/toby/gpc/:gpc \ @@ -567,4 +568,13 @@ package-rename: ${WRKDIR}/../OOo_${PORTVERSION}_${OPSYS}Intel_install_${LANG_PKGNAME}.tbz2 .endif +update: + @${MAKE} fetch + @${MAKE} extract + @cd ${WRKSRC}/.. && for dir in *; do \ + if [ -d $$dir ]; then \ + cd $$dir; cvs update -d; cd ..; \ + fi \ + done + .include <bsd.port.post.mk> |