summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2.0-devel/files
diff options
context:
space:
mode:
authorMaho Nakata <maho@FreeBSD.org>2005-06-03 23:18:49 +0000
committerMaho Nakata <maho@FreeBSD.org>2005-06-03 23:18:49 +0000
commit8b311bac35dc42c77568037344edb3bc175b503a (patch)
treea8e1fe4a6c733d4b1e6709cbba47038b8dbd8a70 /editors/openoffice.org-2.0-devel/files
parent- Update to 1.0.2 (diff)
o For QA purpose, add optional target package-canonical.
Using this packaging method, packages must build without errors. Nevertheless we'll go our own way. o Change packaging method from generic one to FreeBSD's native one. This works well for both packaging method and slightly saves disk space as well. o Fix some problems arose by using FreeBSD's native packaging method. Result of: CodeFest Japan 2005 https://members.fsij.org/trac/codefest2005/
Notes
Notes: svn path=/head/; revision=136770
Diffstat (limited to 'editors/openoffice.org-2.0-devel/files')
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-epm+epm-3.7.patch87
-rw-r--r--editors/openoffice.org-2.0-devel/files/patch-instsetoo100
2 files changed, 187 insertions, 0 deletions
diff --git a/editors/openoffice.org-2.0-devel/files/patch-epm+epm-3.7.patch b/editors/openoffice.org-2.0-devel/files/patch-epm+epm-3.7.patch
new file mode 100644
index 000000000000..4cc75dc9a25c
--- /dev/null
+++ b/editors/openoffice.org-2.0-devel/files/patch-epm+epm-3.7.patch
@@ -0,0 +1,87 @@
+Issutracker : #iXXXXX#
+CWS : N/A
+Author: : <maho@openoffice.org> (JCA)
+Description : epm porting for FreeBSD
+o FreeBSD's package manager doesn't allow multiple lines for
+ @exec and @unexec
+o chown is at /usr/sbin/
+o the way to recording package dependency is incorrect
+
+Index: epm/epm-3.7.patch
+===================================================================
+RCS file: /cvs/external/epm/epm-3.7.patch,v
+retrieving revision 1.2
+diff -u -r1.2 epm-3.7.patch
+--- epm/epm-3.7.patch 10 Mar 2005 11:52:43 -0000 1.2
++++ epm/epm-3.7.patch 3 Jun 2005 22:05:23 -0000
+@@ -1,3 +1,69 @@
++*** misc/epm-3.7/bsd.c Wed Jan 15 02:05:01 2003
++--- misc/build/epm-3.7/bsd.c Sat Jun 4 06:18:27 2005
++***************
++*** 26,31 ****
++--- 26,38 ----
++
++ #include "epm.h"
++
+++ void cr2semicolon(char *command)
+++ {
+++ int len, i;
+++ len=strlen(command);
+++ for (i=0;i<len;i++)
+++ if(*(command+i)=='\n') *(command+i)=';';
+++ }
++
++ /*
++ * 'make_bsd()' - Make a FreeBSD software distribution package.
++***************
++*** 150,156 ****
++ for (i = dist->num_depends, d = dist->depends; i > 0; i --, d ++)
++ {
++ if (d->type == DEPEND_REQUIRES)
++! fprintf(fp, "@pkgdep %s", d->product);
++ else
++ #ifdef __FreeBSD__
++ /*
++--- 157,163 ----
++ for (i = dist->num_depends, d = dist->depends; i > 0; i --, d ++)
++ {
++ if (d->type == DEPEND_REQUIRES)
++! fprintf(fp, "@pkgdep %s-%s-%s", d->product, dist->version, platname);
++ else
++ #ifdef __FreeBSD__
++ /*
++***************
++*** 179,187 ****
++--- 186,196 ----
++ " by the BSD packager.\n", stderr);
++ break;
++ case COMMAND_POST_INSTALL :
+++ cr2semicolon(c->command);
++ fprintf(fp, "@exec %s\n", c->command);
++ break;
++ case COMMAND_PRE_REMOVE :
+++ cr2semicolon(c->command);
++ fprintf(fp, "@unexec %s\n", c->command);
++ break;
++ case COMMAND_POST_REMOVE :
++***************
++*** 199,205 ****
++ */
++
++ fprintf(fp, "@exec /bin/mkdir -p %s\n", file->dst);
++! fprintf(fp, "@exec /bin/chown %s:%s %s\n", file->user, file->group,
++ file->dst);
++ fprintf(fp, "@exec /bin/chmod %04o %s\n", file->mode, file->dst);
++ }
++--- 208,214 ----
++ */
++
++ fprintf(fp, "@exec /bin/mkdir -p %s\n", file->dst);
++! fprintf(fp, "@exec /usr/sbin/chown %s:%s %s\n", file->user, file->group,
++ file->dst);
++ fprintf(fp, "@exec /bin/chmod %04o %s\n", file->mode, file->dst);
++ }
+ *** misc/epm-3.7/epm.c 2003-10-28 15:48:30.000000000 +0100
+ --- misc/build/epm-3.7/epm.c 2004-11-24 10:38:40.000000000 +0100
+ ***************
+
diff --git a/editors/openoffice.org-2.0-devel/files/patch-instsetoo b/editors/openoffice.org-2.0-devel/files/patch-instsetoo
new file mode 100644
index 000000000000..e0c3eb10a59a
--- /dev/null
+++ b/editors/openoffice.org-2.0-devel/files/patch-instsetoo
@@ -0,0 +1,100 @@
+Issutracker : #iXXXXX#
+CWS : N/A
+Author: : <maho@openoffice.org> (JCA)
+Description : remove circular dependency
+
+in this case,
+core01 is depend on core02-core08, and core0[2-9] and core10
+depends on core01. for FreeBSD this is regarded as circular dependency
+and pkg_add command is forked infinite times and eats up systems' resource.
+namely when core01 tries to install core02, core02 also tries to
+install core01.
+
+Index: instsetoo_native/inc_openoffice/unix/packagelist.txt
+===================================================================
+RCS file: /cvs/installation/instsetoo_native/inc_openoffice/unix/packagelist.txt,v
+retrieving revision 1.13
+diff -u -r1.13 packagelist.txt
+--- instsetoo_native/inc_openoffice/unix/packagelist.txt 20 Apr 2005 11:38:08 -0000 1.13
++++ instsetoo_native/inc_openoffice/unix/packagelist.txt 3 Jun 2005 22:58:41 -0000
+@@ -33,7 +33,7 @@
+ solarispackagename = "openofficeorg-core01"
+ solarisrequires = "openofficeorg-core02,openofficeorg-core03,openofficeorg-core04,openofficeorg-core05,openofficeorg-core06,openofficeorg-core07,openofficeorg-core08"
+ packagename = "openofficeorg-core01"
+-requires = "openofficeorg-core02,openofficeorg-core03,openofficeorg-core04,openofficeorg-core05,openofficeorg-core06,openofficeorg-core07,openofficeorg-core08"
++requires = "openofficeorg-core02,openofficeorg-core03,openofficeorg-core04,openofficeorg-core05,openofficeorg-core06,openofficeorg-core07,openofficeorg-core08,openofficeorg-core09,openofficeorg-core10"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -226,7 +226,6 @@
+ solarispackagename = "openofficeorg-core02"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core02"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -238,7 +237,6 @@
+ solarispackagename = "openofficeorg-core03"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core03"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -250,7 +248,6 @@
+ solarispackagename = "openofficeorg-core04"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core04"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -262,7 +259,6 @@
+ solarispackagename = "openofficeorg-core05"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core05"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -274,7 +270,6 @@
+ solarispackagename = "openofficeorg-core06"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core06"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -286,7 +281,6 @@
+ solarispackagename = "openofficeorg-core07"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core07"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -298,7 +292,6 @@
+ solarispackagename = "openofficeorg-core08"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core08"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -310,7 +303,6 @@
+ solarispackagename = "openofficeorg-core09"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core09"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"
+@@ -323,7 +315,6 @@
+ solarispackagename = "openofficeorg-core10"
+ solarisrequires = "openofficeorg-core01"
+ packagename = "openofficeorg-core10"
+-requires = "openofficeorg-core01"
+ copyright = "1999-2004 by OpenOffice.org"
+ vendor = "OpenOffice.org"
+ description = "Office core module for %PRODUCTNAME %PRODUCTVERSION"