summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorrh <rh>1999-11-22 21:23:48 +0000
committerrh <rh>1999-11-22 21:23:48 +0000
commit9b5871a36852bcf1f9f8ffd4dab5a9dc1406945c (patch)
tree1e829d47b4dbdcd8219667afe6219bce0c0f2012 /misc
parent6146fefe87ad8867e5d073663c9291c0c8b6568a (diff)
downloadpkgsrc-9b5871a36852bcf1f9f8ffd4dab5a9dc1406945c.tar.gz
Import of staroffice-5.1a, a full-fledged office suite available for i386.
This package currently supports the 'en' (english) and 'de' (german) languages.
Diffstat (limited to 'misc')
-rw-r--r--misc/staroffice/Makefile136
-rwxr-xr-xmisc/staroffice/files/automate.sh151
-rw-r--r--misc/staroffice/files/instdb.patch7
-rw-r--r--misc/staroffice/files/md510
-rw-r--r--misc/staroffice/files/patch-sum3
-rw-r--r--misc/staroffice/files/send.agree5
-rw-r--r--misc/staroffice/files/send.conf5
-rw-r--r--misc/staroffice/files/send.ord5
-rw-r--r--misc/staroffice/files/send.resp6
-rw-r--r--misc/staroffice/files/send.submit5
-rwxr-xr-xmisc/staroffice/files/sendreg.sh25
-rwxr-xr-xmisc/staroffice/files/soffice29
-rw-r--r--misc/staroffice/files/soffice.patch13
-rwxr-xr-xmisc/staroffice/files/sosetup7
-rw-r--r--misc/staroffice/patches/patch-aa8
-rw-r--r--misc/staroffice/pkg/COMMENT1
-rw-r--r--misc/staroffice/pkg/DESCR24
-rwxr-xr-xmisc/staroffice/pkg/INSTALL20
-rw-r--r--misc/staroffice/pkg/MESSAGE14
-rw-r--r--misc/staroffice/pkg/PLIST2404
-rw-r--r--misc/staroffice/pkg/PLIST.01141
-rw-r--r--misc/staroffice/pkg/PLIST.49151
-rw-r--r--misc/staroffice/scripts/post-extract4
23 files changed, 3174 insertions, 0 deletions
diff --git a/misc/staroffice/Makefile b/misc/staroffice/Makefile
new file mode 100644
index 00000000000..5c28e93c645
--- /dev/null
+++ b/misc/staroffice/Makefile
@@ -0,0 +1,136 @@
+# $NetBSD: Makefile,v 1.1.1.1 1999/11/22 21:23:48 rh Exp $
+#
+
+DISTNAME= so51a_lnx_${LANGNO}
+PKGNAME= staroffice-${LANGUAGE}-5.1a
+WRKSRC= ${WRKDIR}/so51inst/office51
+CATEGORIES= misc
+MASTER_SITES= ${DOWNLOAD_SITE}
+EXTRACT_SUFX= .tar
+
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://www.sun.com/staroffice/
+
+CONFLICTS= staroffice-*
+
+NO_CDROM= "Redistribution not permitted"
+MIRROR_DISTFILE= NO
+
+ONLY_FOR_PLATFORM= NetBSD-*-i386
+PATCH_FUZZ_FACTOR= -F1
+IS_INTERACTIVE= YES
+NO_BUILD= YES
+
+DECOMPRESS_CMD= ${CAT}
+
+.if !exists(/emul/linux/lib/ld-linux.so.1)
+IGNORE= requires Linux glibc2 libraries - see compat_linux(8)
+.endif
+
+.include "../../mk/bsd.prefs.mk"
+
+LANGUAGE?= en
+COUNTRY?= United States
+DOWNLOAD_SITE?= http://jsecom11b.sun.com/
+BATCH_FETCH?= NO
+
+.if ${BATCH_FETCH} == "NO"
+FETCH_INTERACTIVE= 1
+.endif
+
+.if ${LANGUAGE} == "de"
+LANGNO= 49
+LANGSUB= 51AA999B
+#.elif ${LANGUAGE} == "fr"
+#LANGNO= 33
+#LANGSUB= 51AA999A
+#.elif ${LANGUAGE} == "it"
+#LANGNO= 39
+#LANGSUB= 51AA999E
+#.elif ${LANGUAGE} == "es"
+#LANGNO= 34
+#LANGSUB= 51AA999F
+#.elif ${LANGUAGE} == "sv"
+#LANGNO= 46
+#LANGSUB= 51AA999G
+#.elif ${LANGUAGE} == "nl"
+#LANGNO= 31
+#LANGSUB= 51AA999M
+#.elif ${LANGUAGE} == "pt"
+#LANGNO= 03
+#LANGSUB= 51AA999N
+.else
+LANGNO= 01
+LANGSUB= 51AA9999
+.endif
+
+PLIST_SUBST+= LANGNO=${LANGNO}
+PLIST_SRC= ${WRKDIR}/PLIST
+MESSAGE_FILE= ${WRKDIR}/MESSAGE
+INSTALL_FILE= ${WRKDIR}/INSTALL
+
+do-fetch:
+ @${MKDIR} ${WRKDIR}
+.for file in automate.sh send.agree send.conf send.ord send.resp \
+ send.submit sendreg.sh
+ @${CP} ${FILESDIR}/${file} ${WRKDIR}
+.endfor
+ @if [ ! -f ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ]; then \
+ cd ${WRKDIR} && \
+ ${SETENV} COUNTRY="${COUNTRY}" \
+ LANGSUB=${LANGSUB} LANGNO=${LANGNO} \
+ DISTDIR=${DISTDIR} \
+ DISTFILE=${DISTNAME}${EXTRACT_SUFX} \
+ INTERACTIVE=${FETCH_INTERACTIVE} \
+ HOMEPAGE=${HOMEPAGE} SITE=${DOWNLOAD_SITE} \
+ automate.sh ; \
+ fi
+
+do-configure:
+.for file in setup.ins
+ ${SED} -e 's#@@PREFIX@@#${PREFIX}#g' \
+ <${WRKSRC}/${file} >${WRKSRC}/${file}.new
+ ${MV} ${WRKSRC}/${file}.new ${WRKSRC}/${file}
+.endfor
+
+pre-install:
+ @if [ "$$DISPLAY" = "" ]; then \
+ ${ECHO} "${DISTNAME} needs to be installed under X11."; \
+ exit 1; \
+ fi
+ @${CAT} ${PKGDIR}/PLIST.${LANGNO} ${PKGDIR}/PLIST >${PLIST_SRC}
+
+do-install:
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} "-------------------------------------------------------"
+ @${ECHO_MSG} " Now running the StarOffice system installation script. "
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " Simply hit <RETURN> on every requester. Please do "
+ @${ECHO_MSG} " _not_ try to change any setup parameters at this time "
+ @${ECHO_MSG} " (you can do that later during user installation). "
+ @${ECHO_MSG} ""
+ @${ECHO_MSG} " If you do make modifications, automatic package "
+ @${ECHO_MSG} " deinstallation may fail and you will have to remove "
+ @${ECHO_MSG} " ${PREFIX}/Office51 by hand after running 'pkg_delete' "
+ @${ECHO_MSG} "-------------------------------------------------------"
+ @${ECHO_MSG} ""
+ @${INSTALL_DATA_DIR} ${PREFIX}/Office51
+ @cd ${WRKSRC} && ${SETENV} LD_LIBRARY_PATH=${WRKSRC} \
+ ${WRKSRC}/setup.bin /net
+
+post-install:
+.for file in instdb soffice
+ ${SED} -e 's#@@PREFIX@@#${PREFIX}#g' < ${FILESDIR}/${file}.patch | \
+ ${PATCH} -s -N -d ${PREFIX}/Office51
+.endfor
+.for file in sosetup soffice
+ ${SED} -e 's#@@PREFIX@@#${PREFIX}#g' < ${FILESDIR}/${file} \
+ >${WRKDIR}/${file}
+ ${INSTALL_SCRIPT} ${WRKDIR}/${file} ${PREFIX}/bin
+.endfor
+.for file in MESSAGE INSTALL
+ ${SED} -e 's#@@PREFIX@@#${PREFIX}#g' < ${PKGDIR}/${file} \
+ >${WRKDIR}/${file}
+.endfor
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/misc/staroffice/files/automate.sh b/misc/staroffice/files/automate.sh
new file mode 100755
index 00000000000..d4c8abc499f
--- /dev/null
+++ b/misc/staroffice/files/automate.sh
@@ -0,0 +1,151 @@
+#!/bin/ksh
+[ x$HOMEPAGE = x ] && HOMEPAGE=http://www.sun.com/staroffice/
+[ x$SITE = x ] && SITE=http://jsecom11b.sun.com/
+[ x"$COUNTRY" = x"" ] && COUNTRY="United States"
+if [ -f /usr/share/calendar/calendar.birthday -a \
+ -f /usr/share/dict/words -a \
+ -f /usr/share/dict/propernames -a \
+ -f /usr/share/misc/zipcodes -a \
+ -f /usr/share/misc/na.phone ]; then
+ export A=$RANDOM;FIRSTNAME=`tail -$(($A % $(wc -l < /usr/share/dict/propernames))) /usr/share/dict/propernames | head -1 | sed -e 's/ /+/g'`
+ export A=$RANDOM;LASTNAME=`tail -$(($A % $(wc -l < /usr/share/dict/propernames))) /usr/share/dict/propernames | head -1 | sed -e 's/ /+/g'`
+ export A=$RANDOM;ADDR=`tail -$(($A * 8 % $(wc -l < /usr/share/dict/words))) /usr/share/dict/words | head -1 | sed -e 's/ /+/g'`
+ ADDR=`echo $ADDR | awk '{ print toupper(substr($0, 1, 1)) substr($0, 2) }'`
+ export A=$RANDOM;ACCT=`tail -$(($A * 8 % $(wc -l < /usr/share/dict/words))) /usr/share/dict/words | head -1 | cut -c 1-8 | sed -e 's/ /+/g'`
+ export A=$RANDOM;PASS=`tail -$(($A * 8 % $(wc -l < /usr/share/dict/words))) /usr/share/dict/words | head -1 | cut -c 1-8 | sed -e 's/ /+/g'`
+ export A=$RANDOM;HN=`tail -$(($A * 8 % $(wc -l < /usr/share/dict/words))) /usr/share/dict/words | head -1 | sed -e 's/ /+/g'`
+ case $(($RANDOM % 4)) in
+ 0) DIR="N";;
+ 1) DIR="E";;
+ 2) DIR="W";;
+ 3) DIR="S";;
+ esac
+ case $(($RANDOM % 5)) in
+ 0) ST="St";;
+ 1) ST="Rd";;
+ 2) ST="Blvd";;
+ 3) ST="Ln";;
+ 4) ST="Ct";;
+ esac
+ ADDR=`echo "$RANDOM+$DIR.+$ADDR+$ST."`
+ export A=$RANDOM;FOO=`tail -$(($A * 2% $(wc -l < /usr/share/misc/zipcodes))) /usr/share/misc/zipcodes | head -1`
+ ZIP=`echo "$FOO" | cut -c 1-5 | sed -e 's/ /+/g'`
+ CITY=`echo "$FOO" | sed -e 's/.*:\(.*\),.*/\1/' -e 's/ /+/g'`
+ STATE=`echo "$FOO" | sed -e 's/.*, *\(.*\)/\1/' -e 's/ /+/g'`
+ AC=`grep $STATE /usr/share/misc/na.phone | head -1 | cut -c 1-3`
+ PHONE=`ps -ax | md5 | sed -e 's/[a-f]//'g | sed -e 's/\([2-9]..\)\(....\).*/\1-\2/'`
+ PHONE=`echo "($AC)+$PHONE" | sed -e 's/ /+/g'`
+ EMAIL="$ACCT@$HN.com"
+else
+ INTERACTIVE=1
+fi
+
+while [ "$INTERACTIVE" = "1" ]; do
+ echo ""
+ echo "=========================================================================="
+ echo " Please enter the following information for registration and downloading "
+ echo " from \"$HOMEPAGE\". (Alternatively, you can hit"
+ echo " <Ctrl-C> now, download StarOffice manually, and restart 'make') "
+ echo "=========================================================================="
+ echo ""
+ echo -n "First Name [$FIRSTNAME]: "
+ read ans && [ "$ans" != "" ] && FIRSTNAME="$ans"
+ echo -n "Last Name [$LASTNAME]: "
+ read ans && [ "$ans" != "" ] && LASTNAME="$ans"
+ echo -n "Street Address [$ADDR]: "
+ read ans && [ "$ans" != "" ] && ADDR="$ans"
+ echo -n "City [$CITY]: "
+ read ans && [ "$ans" != "" ] && CITY="$ans"
+ echo -n "State (Code) [$STATE]: "
+ read ans && [ "$ans" != "" ] && STATE="$ans"
+ echo -n "ZIP [$ZIP]: "
+ read ans && [ "$ans" != "" ] && ZIP="$ans"
+ echo -n "Phone [$PHONE]: "
+ read ans && [ "$ans" != "" ] && PHONE="$ans"
+ old="$EMAIL"
+ echo -n "EMail [$EMAIL]: "
+ read ans && [ "$ans" != "" ] && EMAIL="$ans"
+ [ "$old" = "$ACCT@$HN.com" ] && ACCT=`echo $EMAIL | sed -e 's=\([^@]\)@.*=\1='`
+ echo -n "Account (Login) to use [$ACCT]: "
+ read ans && [ "$ans" != "" ] && ACCT="$ans"
+ echo -n "Password (will be visible on your terminal!) [$PASS]: "
+ read ans && [ "$ans" != "" ] && PASS="$ans"
+ echo ""
+ echo -n "Are the data you entered correct [y/N]? "
+ read ans && [ "$ans" = "y" -o "$ans" = "Y" ] && INTERACTIVE=0
+ echo ""
+done
+
+echo ""
+echo "=========================================================================="
+echo " Attempting to download from $HOMEPAGE. This may"
+echo " fail if user information is invalid. If downloading fails, you can "
+echo " retry or download StarOffice manually. "
+echo "=========================================================================="
+echo ""
+
+COUNTRY=`echo $COUNTRY | sed -e 's/ /+/g'`
+FIRSTNAME=`echo $FIRSTNAME | sed -e 's/ /+/g'`
+LASTNAME=`echo $LASTNAME | sed -e 's/ /+/g'`
+ADDR=`echo $ADDR | sed -e 's/ /+/g'`
+CITY=`echo $CITY | sed -e 's/ /+/g'`
+STATE=`echo $STATE | sed -e 's/ /+/g'`
+ZIP=`echo $ZIP | sed -e 's/ /+/g'`
+PHONE=`echo $PHONE | sed -e 's/ /+/g'`
+EMAIL=`echo $EMAIL | sed -e 's/ /+/g'`
+ACCT=`echo $ACCT | sed -e 's/ /+/g'`
+LEN=`echo "$FIRSTNAME$LASTNAME$ADDR$CITY$STATE$ZIP$PHONE$ACCT$EMAIL$PASS$PASS" | wc | awk '{print $3}' `
+LEN=$(expr $LEN + 273)
+
+[ x${LANGSUB} = x ] && LANGSUB=51AA9999
+TNSITE=$SITE
+TNPORT=80
+[ x$http_proxy != x ] && TNSITE=$http_proxy
+TNHOST=`echo $TNSITE | sed -e 's=http://\([^:/]*\)[:/].*=\1='`
+(echo $TNSITE | grep >/dev/null 2>&1 '.*://.*:[0-9]') && TNPORT=`echo $TNSITE | sed -e 's=http://[^:]*:\([0-9][0-9]*\).*=\1='`
+HOMEPAGE=`echo $HOMEPAGE | sed -e 's=\(.*\)/$=\1='`
+SITE=`echo $SITE | sed -e 's=\(.*\)/$=\1='`
+SUNPAGE=`echo $HOMEPAGE | sed -e 's=\(.*://[^/]*\).*=\1='`
+FROMSITE=
+[ x$http_proxy != x ] && FROMSITE=$SITE
+export LEN FIRSTNAME LASTNAME ADDR CITY STATE COUNTRY ZIP PHONE ACCT PASS EMAIL FROMSITE
+ftp -o index.html $HOMEPAGE
+if grep 'A.*FREE.*' index.html >/dev/null 2>&1 ; then true; else
+ echo 'getting index failed, answer was:'
+ cat index.html
+ exit 1
+fi
+FOO=`grep 'A.*FREE.*' index.html | sed -e 's/.*[hH][rR][eE][fF]="\(.*\)".*/\1/'`
+ftp -o get.html $SUNPAGE$FOO
+ftp -o Welcome.jhtml "$SITE/servlet/EComActionServlet?LMLoadBalanced=&LMLoadBalanced="
+if grep action Welcome.jhtml >/dev/null 2>&1 ; then true; else
+ echo 'getting welcome page failed, answer was:'
+ cat Welcome.jhtml
+ exit 1
+fi
+FOO=`grep action Welcome.jhtml | uniq | sed -e 's/.*"\(.*\)".*/\1/'`
+export SESS=`echo $FOO | sed -e 's/.*sessionid$\(.*\)/\1/'`
+SEDEX="-e s/@@@SESS@@@/$SESS/ -e s=@@@SITE@@@=$FROMSITE= -e s=@@@LANGSUB@@@=$LANGSUB="
+( sleep 10 ; cat send.resp | sed $SEDEX ) | ( telnet $TNHOST $TNPORT ; sleep 15 ) >register.html 2>&1
+#/bin/ksh ./sendreg.sh
+( sleep 10 ; /bin/ksh ./sendreg.sh ; sleep 10 ) | ( telnet $TNHOST $TNPORT ; sleep 5 ) >regform.html 2>&1
+if grep FREESTAR regform.html >/dev/null 2>&1 ; then true; else
+ echo 'registration failed, answer was:'
+ cat regform.html
+ exit 1
+fi
+FOO=`grep FREESTAR regform.html | sed -e 's/.*"\(.*\)".*/\1/'`
+ftp -o star.html $SITE$FOO
+if grep STARLIN star.html >/dev/null 2>&1 ; then true; else
+ echo 'login failed, answer was:'
+ cat star.html
+ exit 1
+fi
+FOO=`grep STARLIN star.html | sed -e 's/.*"\(.*\)".*/\1/'`
+ftp -o order.html $SITE$FOO
+( sleep 10 ; cat send.ord | sed $SEDEX ) | ( telnet $TNHOST $TNPORT ; sleep 10 ) >ordform.html 2>&1
+( sleep 10 ; cat send.conf | sed $SEDEX ) | ( telnet $TNHOST $TNPORT ; sleep 10 ) >ordconf.html 2>&1
+( sleep 10 ; cat send.agree | sed $SEDEX ) | ( telnet $TNHOST $TNPORT ; sleep 10 ) >agree.html 2>&1
+( sleep 10 ; cat send.submit | sed $SEDEX ) | ( telnet $TNHOST $TNPORT ; sleep 10 ) >submit.html 2>&1
+FOO=`grep "STRIL-${LANGSUB}" submit.html | head -1 | sed -e "s/.*href=.\(.*\)\'.*><.*/\1/"`
+ftp -o ${DISTDIR}/${DISTFILE} "$FOO"
diff --git a/misc/staroffice/files/instdb.patch b/misc/staroffice/files/instdb.patch
new file mode 100644
index 00000000000..1c611dddb0d
--- /dev/null
+++ b/misc/staroffice/files/instdb.patch
@@ -0,0 +1,7 @@
+$NetBSD: instdb.patch,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+
+--- instdb.ins.orig Sun Nov 21 14:06:06 1999
++++ instdb.ins Sun Nov 21 14:43:30 1999
+@@ -2 +2 @@
+- DefaultDestPath = "@@PREFIX@@/Office51";
++ DefaultDestPath = "Office51";
diff --git a/misc/staroffice/files/md5 b/misc/staroffice/files/md5
new file mode 100644
index 00000000000..f9c6f4ca00a
--- /dev/null
+++ b/misc/staroffice/files/md5
@@ -0,0 +1,10 @@
+$NetBSD: md5,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+
+MD5 (so51a_lnx_01.tar) = 680d631d0cd85e8735b8c3f821cfd2b5
+MD5 (so51a_lnx_03.tar) = 0deeda47c922943af4d41b90c3a6e0f6
+MD5 (so51a_lnx_31.tar) = 712a1709c14918035e2b4af00fc7cefd
+MD5 (so51a_lnx_33.tar) = d8bd662261a9165fe7ba3cc621173424
+MD5 (so51a_lnx_34.tar) = d6c10b9580c7922176e006253c6fd4d2
+MD5 (so51a_lnx_39.tar) = e6ef4785c51a44c67d7c8f6be2d498eb
+MD5 (so51a_lnx_46.tar) = d86568cdc7578d836e16571d6b8763e2
+MD5 (so51a_lnx_49.tar) = 5669fa48c474f53eeaacc63218822e93
diff --git a/misc/staroffice/files/patch-sum b/misc/staroffice/files/patch-sum
new file mode 100644
index 00000000000..5d346d0791d
--- /dev/null
+++ b/misc/staroffice/files/patch-sum
@@ -0,0 +1,3 @@
+$NetBSD: patch-sum,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+
+MD5 (patch-aa) = 8a19101403e8d5603d70fb2ad94de8a0
diff --git a/misc/staroffice/files/send.agree b/misc/staroffice/files/send.agree
new file mode 100644
index 00000000000..d1ebecd27f5
--- /dev/null
+++ b/misc/staroffice/files/send.agree
@@ -0,0 +1,5 @@
+POST @@@SITE@@@/servlet/EComActionServlet/ECom.LegalPageInfo;$sessionid$@@@SESS@@@ HTTP/1.0
+Content-type: application/x-www-form-urlencoded
+Content-length: 75
+
+form.legalItem||8:STRIL-@@@LANGSUB@@@=Agree&LegalPageAction/form.legal=Continue
diff --git a/misc/staroffice/files/send.conf b/misc/staroffice/files/send.conf
new file mode 100644
index 00000000000..d37d4d9ad16
--- /dev/null
+++ b/misc/staroffice/files/send.conf
@@ -0,0 +1,5 @@
+POST @@@SITE@@@/servlet/EComActionServlet/ECom.CartPageInfo;$sessionid$@@@SESS@@@ HTTP/1.0
+Content-type: application/x-www-form-urlencoded
+Content-length: 34
+
+CartPageAction/form.cart=Continue
diff --git a/misc/staroffice/files/send.ord b/misc/staroffice/files/send.ord
new file mode 100644
index 00000000000..ae3da2a2c9a
--- /dev/null
+++ b/misc/staroffice/files/send.ord
@@ -0,0 +1,5 @@
+POST @@@SITE@@@/servlet/EComActionServlet/ECom.CatalogPageInfo;$sessionid$@@@SESS@@@ HTTP/1.0
+Content-type: application/x-www-form-urlencoded
+Content-length: 80
+
+form.catalogItem=8:STRIL-@@@LANGSUB@@@&CatalogPageAction/form.addToCart=Add+to+Order
diff --git a/misc/staroffice/files/send.resp b/misc/staroffice/files/send.resp
new file mode 100644
index 00000000000..c142ffe112e
--- /dev/null
+++ b/misc/staroffice/files/send.resp
@@ -0,0 +1,6 @@
+POST @@@SITE@@@/servlet/EComActionServlet/ECom.WelcomePageInfo;$sessionid$@@@SESS@@@ HTTP/1.0
+Content-type: application/x-www-form-urlencoded
+Content-length: 45
+
+WelcomePageAction/form.goToRegsiter=Register
+
diff --git a/misc/staroffice/files/send.submit b/misc/staroffice/files/send.submit
new file mode 100644
index 00000000000..77bb5fbde65
--- /dev/null
+++ b/misc/staroffice/files/send.submit
@@ -0,0 +1,5 @@
+POST @@@SITE@@@/servlet/EComActionServlet/ECom.QuotePageInfo;$sessionid$@@@SESS@@@ HTTP/1.0
+Content-type: application/x-www-form-urlencoded
+Content-length: 47
+
+QuotePageAction/form.processQuote=Submit+Order
diff --git a/misc/staroffice/files/sendreg.sh b/misc/staroffice/files/sendreg.sh
new file mode 100755
index 00000000000..f78013b31a3
--- /dev/null
+++ b/misc/staroffice/files/sendreg.sh
@@ -0,0 +1,25 @@
+echo "POST $FROMSITE/servlet/EComActionServlet/ECom.RegisterPageInfo;\$sessionid\$$SESS HTTP/1.0"
+echo "Content-type: application/x-www-form-urlencoded"
+echo "Content-length: $LEN"
+echo ""
+echo -n "form.userId=$ACCT&"
+echo -n "form.password=$PASS&"
+echo -n "form.passwordVerify=$PASS&"
+echo -n "form.email=$EMAIL&"
+echo -n "form.firstName=$FIRSTNAME&"
+echo -n "form.lastName=$LASTNAME&"
+echo -n "form.address1=$ADDR&"
+echo -n "form.city=$CITY&"
+echo -n "form.province=$STATE&"
+echo -n "form.postalCode=$ZIP&"
+echo -n "form.country=$COUNTRY&"
+echo -n "form.phone=$PHONE&"
+echo "form.sendMail=No&form.sendMailPartner=No&RegisterPageAction/form.register=Register"
+echo ""
+echo ""
+echo ""
+echo ""
+echo ""
+echo ""
+echo ""
+echo ""
diff --git a/misc/staroffice/files/soffice b/misc/staroffice/files/soffice
new file mode 100755
index 00000000000..1f624e1ec0a
--- /dev/null
+++ b/misc/staroffice/files/soffice
@@ -0,0 +1,29 @@
+#!/bin/sh
+#
+# $NetBSD: soffice,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+#
+SOINST=@@PREFIX@@/Office51
+[ "$SOFFICE" = "" ] && SOFFICE=$HOME/Office51
+
+if [ ! -d "$SOFFICE" ]; then
+ echo ""
+ echo "-----------------------------------------------------------------"
+ echo " StarOffice has not yet been set up for `whoami`."
+ echo " Starting setup ... "
+ echo ""
+ echo " (If StarOffice has already been set up for `whoami` or you"
+ echo " want to install it someplace other than $SOFFICE"
+ echo " please abort the installation procedure now, set the \$SOFFICE "
+ echo " environment variable accordingly and rerun $0.)"
+ echo "-----------------------------------------------------------------"
+ echo ""
+
+ @@PREFIX@@/bin/sosetup
+
+ echo ""
+ echo "Done. Starting StarOffice ..."
+ echo ""
+fi
+
+export LD_LIBRARY_PATH=@@PREFIX@@/Office51:@@PREFIX@@/Office51/lib:${SOFFICE}:${SOFFICE}/lib
+exec ${SOINST}/bin/soffice $*
diff --git a/misc/staroffice/files/soffice.patch b/misc/staroffice/files/soffice.patch
new file mode 100644
index 00000000000..89798571766
--- /dev/null
+++ b/misc/staroffice/files/soffice.patch
@@ -0,0 +1,13 @@
+$NetBSD: soffice.patch,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+
+--- bin/soffice.orig Tue Aug 24 06:11:00 1999
++++ bin/soffice Sun Nov 21 15:44:10 1999
+@@ -15,7 +15,7 @@
+ # resolve installation directory
+ sd_platform=`uname -s`
+ case $sd_platform in
+- SCO_SV) test=/bin/test ;;
++ NetBSD|SCO_SV) test=/bin/test ;;
+ *) test=/usr/bin/test ;;
+ esac
+
diff --git a/misc/staroffice/files/sosetup b/misc/staroffice/files/sosetup
new file mode 100755
index 00000000000..53d7161fdc1
--- /dev/null
+++ b/misc/staroffice/files/sosetup
@@ -0,0 +1,7 @@
+#!/bin/sh
+#
+# $NetBSD: sosetup,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+#
+cd $HOME
+export LD_LIBRARY_PATH=@@PREFIX@@/Office51:@@PREFIX@@/Office51/lib
+@@PREFIX@@/Office51/bin/setup /D:$HOME/Office51
diff --git a/misc/staroffice/patches/patch-aa b/misc/staroffice/patches/patch-aa
new file mode 100644
index 00000000000..417e682d57c
--- /dev/null
+++ b/misc/staroffice/patches/patch-aa
@@ -0,0 +1,8 @@
+$NetBSD: patch-aa,v 1.1.1.1 1999/11/22 21:23:50 rh Exp $
+
+--- setup.ins.orig Tue Aug 24 16:32:46 1999
++++ setup.ins Sun Nov 21 13:25:00 1999
+@@ -1,3 +1,3 @@
+ Installation INSTALLATION
+- DefaultDestPath = "Office51";
++ DefaultDestPath = "@@PREFIX@@/Office51";
diff --git a/misc/staroffice/pkg/COMMENT b/misc/staroffice/pkg/COMMENT
new file mode 100644
index 00000000000..9c691e2c730
--- /dev/null
+++ b/misc/staroffice/pkg/COMMENT
@@ -0,0 +1 @@
+Integrated office suite.
diff --git a/misc/staroffice/pkg/DESCR b/misc/staroffice/pkg/DESCR
new file mode 100644
index 00000000000..6777424ceec
--- /dev/null
+++ b/misc/staroffice/pkg/DESCR
@@ -0,0 +1,24 @@
+ StarOffice is an integrated office suite that works across a variety
+of software platforms. Components are:
+
+ * A universal word processing application for creating business
+ letters, extensive text documents, professional layouts, and HTML
+ documents.
+
+ * A sophisticated application for performing advanced spreadsheet
+ functions, such as analyzing figures, creating lists, and viewing data.
+
+ * A tool for creating effective eye-catching presentations.
+
+ * A vector-oriented draw module that enables the creation of 3D
+ illustrations.
+
+ * A powerful data management tool that allows data to be moved between
+ documents.
+
+ * A seamless integrated organizer that helps users keep all of their
+ events, tasks, contacts, and projects under control.
+
+ * An electronic mail application.
+
+ * A news reader.
diff --git a/misc/staroffice/pkg/INSTALL b/misc/staroffice/pkg/INSTALL
new file mode 100755
index 00000000000..8deb6cc361a
--- /dev/null
+++ b/misc/staroffice/pkg/INSTALL
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# $NetBSD: INSTALL,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+#
+
+case $2 in
+ PRE-INSTALL)
+ ;;
+ POST-INSTALL)
+ for i in backup store store/trash download work ; do
+ mkdir -p @@PREFIX@@/$i
+ done
+ ;;
+ *)
+ echo "Unexpected Argument $2!!"
+ exit 1
+ ;;
+esac
+
+exit 0
diff --git a/misc/staroffice/pkg/MESSAGE b/misc/staroffice/pkg/MESSAGE
new file mode 100644
index 00000000000..89ba9d84d3b
--- /dev/null
+++ b/misc/staroffice/pkg/MESSAGE
@@ -0,0 +1,14 @@
+$NetBSD: MESSAGE,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+
+==========================================================================
+ StarOffice has now been installed in @@PREFIX@@/Office51.
+
+ Before using this package for the first time, each user has to run
+ @@PREFIX@@/bin/sosetup. Thereafter, StarOffice can be started using
+ the @@PREFIX@@/bin/soffice command.
+
+ Please note that under NetBSD the program will pop up a requester,
+ complaining that it is unable to load the 'PluginManager' component.
+ This is normal and can be ignored (you can simply click away the
+ requester).
+==========================================================================
diff --git a/misc/staroffice/pkg/PLIST b/misc/staroffice/pkg/PLIST
new file mode 100644
index 00000000000..adeafceef3a
--- /dev/null
+++ b/misc/staroffice/pkg/PLIST
@@ -0,0 +1,2404 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+bin/soffice
+bin/sosetup
+Office51/bin/setup.log
+Office51/bin/swslots.tlb
+Office51/bin/wswslots.tlb
+Office51/bin/vcl517${LANGNO}.res
+Office51/bin/setup
+Office51/bin/ofaslots.tlb
+Office51/bin/sfxslots.tlb
+Office51/bin/oic517${LANGNO}.res
+Office51/bin/spadmin
+Office51/bin/spadmin.bin
+Office51/bin/jvmsetup
+Office51/bin/jvmsetup.bin
+Office51/bin/iwz517${LANGNO}.res
+Office51/bin/jvm517${LANGNO}.res
+Office51/bin/dmn517${LANGNO}.res
+Office51/bin/javaldx
+Office51/bin/dbw517${LANGNO}.res
+Office51/bin/svxslots.tlb
+Office51/bin/set517${LANGNO}.res
+Office51/bin/soffice
+Office51/bin/soffice.orig
+Office51/bin/cha517${LANGNO}.res
+Office51/bin/hlp517${LANGNO}.res
+Office51/bin/svt517${LANGNO}.res
+Office51/bin/svx517${LANGNO}.res
+Office51/bin/sw517${LANGNO}.res
+Office51/bin/iso517${LANGNO}.res
+Office51/bin/ofa517${LANGNO}.res
+Office51/bin/sba517${LANGNO}.res
+Office51/bin/sd517${LANGNO}.res
+Office51/bin/sdb517${LANGNO}.res
+Office51/bin/sfx517${LANGNO}.res
+Office51/bin/soffice.bin
+Office51/bin/setup.bin
+Office51/bin/do517${LANGNO}.res
+Office51/bin/sdtslots.tlb
+Office51/bin/gal517${LANGNO}.res
+Office51/bin/sj517${LANGNO}.res
+Office51/bin/san517${LANGNO}.res
+Office51/bin/so5dbt.dll
+Office51/bin/applicat.rdb
+Office51/bin/tfu517${LANGNO}.res
+Office51/bin/spa517${LANGNO}.res
+Office51/bin/pluginapp.bin
+Office51/bin/rts517${LANGNO}.res
+Office51/bin/asv517${LANGNO}.res
+Office51/bin/installs.scr
+Office51/bin/sfax.bin
+Office51/bin/sc517${LANGNO}.res
+Office51/bin/scslots.tlb
+Office51/bin/sdslots.tlb
+Office51/bin/sdgslots.tlb
+Office51/bin/smslots.tlb
+Office51/bin/sm517${LANGNO}.res
+Office51/bin/schslots.tlb
+Office51/bin/sch517${LANGNO}.res
+Office51/bin/sim517${LANGNO}.res
+Office51/bin/simslots.tlb
+Office51/bin/ss517${LANGNO}.res
+Office51/bin/eps517${LANGNO}.res
+Office51/bin/epb517${LANGNO}.res
+Office51/bin/epg517${LANGNO}.res
+Office51/bin/epp517${LANGNO}.res
+Office51/bin/egi517${LANGNO}.res
+Office51/bin/icd517${LANGNO}.res
+Office51/bin/ept517${LANGNO}.res
+Office51/bin/eme517${LANGNO}.res
+Office51/bin/epn517${LANGNO}.res
+Office51/bin/sorc
+Office51/fonts/type1/ariob___.pfa
+Office51/fonts/type1/ariob___.pfb
+Office51/fonts/type1/arion___.pfa
+Office51/fonts/type1/arion___.pfb
+Office51/fonts/type1/chevn___.pfa
+Office51/fonts/type1/chevn___.pfb
+Office51/fonts/type1/chevon__.pfa
+Office51/fonts/type1/chevon__.pfb
+Office51/fonts/type1/congb___.pfa
+Office51/fonts/type1/congb___.pfb
+Office51/fonts/type1/congn___.pfa
+Office51/fonts/type1/congn___.pfb
+Office51/fonts/type1/fonts.alias
+Office51/fonts/type1/fonts.dir
+Office51/fonts/type1/fonts.scale
+Office51/fonts/type1/helmb___.pfa
+Office51/fonts/type1/helmb___.pfb
+Office51/fonts/type1/helmbi__.pfa
+Office51/fonts/type1/helmbi__.pfb
+Office51/fonts/type1/helmcb__.pfa
+Office51/fonts/type1/psres.upr
+Office51/fonts/type1/helmcb__.pfb
+Office51/fonts/type1/helmcbi_.pfa
+Office51/fonts/type1/helmcbi_.pfb
+Office51/fonts/type1/helmci__.pfa
+Office51/fonts/type1/helmci__.pfb
+Office51/fonts/type1/helmcn__.pfa
+Office51/fonts/type1/helmcn__.pfb
+Office51/fonts/type1/helmi___.pfa
+Office51/fonts/type1/helmi___.pfb
+Office51/fonts/type1/helmn___.pfa
+Office51/fonts/type1/helmn___.pfb
+Office51/fonts/type1/starbats.pfa
+Office51/fonts/type1/starbats.pfb
+Office51/fonts/type1/starmath.pfa
+Office51/fonts/type1/starmath.pfb
+Office51/fonts/type1/timmb___.pfa
+Office51/fonts/type1/timmb___.pfb
+Office51/fonts/type1/timmbi__.pfa
+Office51/fonts/type1/timmbi__.pfb
+Office51/fonts/type1/timmi___.pfa
+Office51/fonts/type1/timmi___.pfb
+Office51/fonts/type1/timmn___.pfa
+Office51/fonts/type1/timmn___.pfb
+Office51/fonts/75dpi/bdf/ariob10.bdf
+Office51/fonts/75dpi/bdf/ariob12.bdf
+Office51/fonts/75dpi/bdf/ariob14.bdf
+Office51/fonts/75dpi/bdf/ariob17.bdf
+Office51/fonts/75dpi/bdf/ariob20.bdf
+Office51/fonts/75dpi/bdf/ariob24.bdf
+Office51/fonts/75dpi/bdf/ariob8.bdf
+Office51/fonts/75dpi/bdf/arion10.bdf
+Office51/fonts/75dpi/bdf/arion12.bdf
+Office51/fonts/75dpi/bdf/arion14.bdf
+Office51/fonts/75dpi/bdf/arion17.bdf
+Office51/fonts/75dpi/bdf/arion20.bdf
+Office51/fonts/75dpi/bdf/arion24.bdf
+Office51/fonts/75dpi/bdf/arion8.bdf
+Office51/fonts/75dpi/bdf/chevn10.bdf
+Office51/fonts/75dpi/bdf/chevn12.bdf
+Office51/fonts/75dpi/bdf/chevn14.bdf
+Office51/fonts/75dpi/bdf/chevn17.bdf
+Office51/fonts/75dpi/bdf/chevn20.bdf
+Office51/fonts/75dpi/bdf/chevn24.bdf
+Office51/fonts/75dpi/bdf/chevn8.bdf
+Office51/fonts/75dpi/bdf/chevon10.bdf
+Office51/fonts/75dpi/bdf/chevon12.bdf
+Office51/fonts/75dpi/bdf/chevon8.bdf
+Office51/fonts/75dpi/bdf/chevon14.bdf
+Office51/fonts/75dpi/bdf/chevon17.bdf
+Office51/fonts/75dpi/bdf/chevon20.bdf
+Office51/fonts/75dpi/bdf/chevon24.bdf
+Office51/fonts/75dpi/bdf/congb10.bdf
+Office51/fonts/75dpi/bdf/congb12.bdf
+Office51/fonts/75dpi/bdf/congb14.bdf
+Office51/fonts/75dpi/bdf/congb17.bdf
+Office51/fonts/75dpi/bdf/congb20.bdf
+Office51/fonts/75dpi/bdf/congb24.bdf
+Office51/fonts/75dpi/bdf/congb8.bdf
+Office51/fonts/75dpi/bdf/congn10.bdf
+Office51/fonts/75dpi/bdf/congn12.bdf
+Office51/fonts/75dpi/bdf/congn14.bdf
+Office51/fonts/75dpi/bdf/congn17.bdf
+Office51/fonts/75dpi/bdf/congn20.bdf
+Office51/fonts/75dpi/bdf/congn24.bdf
+Office51/fonts/75dpi/bdf/congn8.bdf
+Office51/fonts/75dpi/bdf/fonts.dir
+Office51/fonts/75dpi/bdf/helmb10.bdf
+Office51/fonts/75dpi/bdf/helmb12.bdf
+Office51/fonts/75dpi/bdf/helmb14.bdf
+Office51/fonts/75dpi/bdf/helmb17.bdf
+Office51/fonts/75dpi/bdf/helmb20.bdf
+Office51/fonts/75dpi/bdf/helmb24.bdf
+Office51/fonts/75dpi/bdf/helmb8.bdf
+Office51/fonts/75dpi/bdf/helmbi10.bdf
+Office51/fonts/75dpi/bdf/helmbi12.bdf
+Office51/fonts/75dpi/bdf/helmbi14.bdf
+Office51/fonts/75dpi/bdf/helmbi17.bdf
+Office51/fonts/75dpi/bdf/helmbi20.bdf
+Office51/fonts/75dpi/bdf/helmbi24.bdf
+Office51/fonts/75dpi/bdf/helmbi8.bdf
+Office51/fonts/75dpi/bdf/helmcb10.bdf
+Office51/fonts/75dpi/bdf/helmcb12.bdf
+Office51/fonts/75dpi/bdf/helmcb14.bdf
+Office51/fonts/75dpi/bdf/helmcb17.bdf
+Office51/fonts/75dpi/bdf/helmcb20.bdf
+Office51/fonts/75dpi/bdf/helmcb24.bdf
+Office51/fonts/75dpi/bdf/helmcb8.bdf
+Office51/fonts/75dpi/bdf/helmcbi10.bdf
+Office51/fonts/75dpi/bdf/helmcbi12.bdf
+Office51/fonts/75dpi/bdf/helmcbi14.bdf
+Office51/fonts/75dpi/bdf/helmcbi17.bdf
+Office51/fonts/75dpi/bdf/helmcbi20.bdf
+Office51/fonts/75dpi/bdf/helmcbi24.bdf
+Office51/fonts/75dpi/bdf/helmcbi8.bdf
+Office51/fonts/75dpi/bdf/helmci10.bdf
+Office51/fonts/75dpi/bdf/helmci12.bdf
+Office51/fonts/75dpi/bdf/helmci14.bdf
+Office51/fonts/75dpi/bdf/helmci17.bdf
+Office51/fonts/75dpi/bdf/helmci20.bdf
+Office51/fonts/75dpi/bdf/helmci24.bdf
+Office51/fonts/75dpi/bdf/helmci8.bdf
+Office51/fonts/75dpi/bdf/helmcn10.bdf
+Office51/fonts/75dpi/bdf/helmcn12.bdf
+Office51/fonts/75dpi/bdf/helmcn14.bdf
+Office51/fonts/75dpi/bdf/helmcn17.bdf
+Office51/fonts/75dpi/bdf/helmcn20.bdf
+Office51/fonts/75dpi/bdf/helmcn24.bdf
+Office51/fonts/75dpi/bdf/helmcn8.bdf
+Office51/fonts/75dpi/bdf/helmi10.bdf
+Office51/fonts/75dpi/bdf/helmi12.bdf
+Office51/fonts/75dpi/bdf/helmi14.bdf
+Office51/fonts/75dpi/bdf/helmi17.bdf
+Office51/fonts/75dpi/bdf/helmi20.bdf
+Office51/fonts/75dpi/bdf/helmi24.bdf
+Office51/fonts/75dpi/bdf/helmi8.bdf
+Office51/fonts/75dpi/bdf/helmn10.bdf
+Office51/fonts/75dpi/bdf/helmn12.bdf
+Office51/fonts/75dpi/bdf/helmn14.bdf
+Office51/fonts/75dpi/bdf/helmn17.bdf
+Office51/fonts/75dpi/bdf/helmn20.bdf
+Office51/fonts/75dpi/bdf/helmn24.bdf
+Office51/fonts/75dpi/bdf/helmn8.bdf
+Office51/fonts/75dpi/bdf/starbats10.bdf
+Office51/fonts/75dpi/bdf/starbats12.bdf
+Office51/fonts/75dpi/bdf/starbats14.bdf
+Office51/fonts/75dpi/bdf/starbats17.bdf
+Office51/fonts/75dpi/bdf/starbats20.bdf
+Office51/fonts/75dpi/bdf/starbats24.bdf
+Office51/fonts/75dpi/bdf/starbats8.bdf
+Office51/fonts/75dpi/bdf/starmath10.bdf
+Office51/fonts/75dpi/bdf/starmath12.bdf
+Office51/fonts/75dpi/bdf/starmath14.bdf
+Office51/fonts/75dpi/bdf/starmath17.bdf
+Office51/fonts/75dpi/bdf/starmath20.bdf
+Office51/fonts/75dpi/bdf/starmath24.bdf
+Office51/fonts/75dpi/bdf/starmath8.bdf
+Office51/fonts/75dpi/bdf/timmb10.bdf
+Office51/fonts/75dpi/bdf/timmb12.bdf
+Office51/fonts/75dpi/bdf/timmb14.bdf
+Office51/fonts/75dpi/bdf/timmb17.bdf
+Office51/fonts/75dpi/bdf/timmb20.bdf
+Office51/fonts/75dpi/bdf/timmb24.bdf
+Office51/fonts/75dpi/bdf/timmb8.bdf
+Office51/fonts/75dpi/bdf/timmbi10.bdf
+Office51/fonts/75dpi/bdf/timmbi12.bdf
+Office51/fonts/75dpi/bdf/timmbi14.bdf
+Office51/fonts/75dpi/bdf/timmbi17.bdf
+Office51/fonts/75dpi/bdf/timmbi20.bdf
+Office51/fonts/75dpi/bdf/timmbi24.bdf
+Office51/fonts/75dpi/bdf/timmbi8.bdf
+Office51/fonts/75dpi/bdf/timmi10.bdf
+Office51/fonts/75dpi/bdf/timmi12.bdf
+Office51/fonts/75dpi/bdf/timmi14.bdf
+Office51/fonts/75dpi/bdf/timmi17.bdf
+Office51/fonts/75dpi/bdf/timmi20.bdf
+Office51/fonts/75dpi/bdf/timmi24.bdf
+Office51/fonts/75dpi/bdf/timmi8.bdf
+Office51/fonts/75dpi/bdf/timmn10.bdf
+Office51/fonts/75dpi/bdf/timmn12.bdf
+Office51/fonts/75dpi/bdf/timmn14.bdf
+Office51/fonts/75dpi/bdf/timmn17.bdf
+Office51/fonts/75dpi/bdf/timmn20.bdf
+Office51/fonts/75dpi/bdf/timmn24.bdf
+Office51/fonts/75dpi/bdf/timmn8.bdf
+Office51/fonts/75dpi/ariob10.pcf.Z
+Office51/fonts/75dpi/ariob12.pcf.Z
+Office51/fonts/75dpi/ariob14.pcf.Z
+Office51/fonts/75dpi/ariob17.pcf.Z
+Office51/fonts/75dpi/ariob20.pcf.Z
+Office51/fonts/75dpi/ariob24.pcf.Z
+Office51/fonts/75dpi/ariob8.pcf.Z
+Office51/fonts/75dpi/arion10.pcf.Z
+Office51/fonts/75dpi/arion12.pcf.Z
+Office51/fonts/75dpi/arion14.pcf.Z
+Office51/fonts/75dpi/arion17.pcf.Z
+Office51/fonts/75dpi/arion20.pcf.Z
+Office51/fonts/75dpi/arion24.pcf.Z
+Office51/fonts/75dpi/arion8.pcf.Z
+Office51/fonts/75dpi/chevn10.pcf.Z
+Office51/fonts/75dpi/chevn12.pcf.Z
+Office51/fonts/75dpi/chevn14.pcf.Z
+Office51/fonts/75dpi/chevn17.pcf.Z
+Office51/fonts/75dpi/chevn20.pcf.Z
+Office51/fonts/75dpi/fonts.dir
+Office51/fonts/75dpi/chevn24.pcf.Z
+Office51/fonts/75dpi/chevn8.pcf.Z
+Office51/fonts/75dpi/chevon10.pcf.Z
+Office51/fonts/75dpi/chevon12.pcf.Z
+Office51/fonts/75dpi/chevon14.pcf.Z
+Office51/fonts/75dpi/chevon17.pcf.Z
+Office51/fonts/75dpi/chevon20.pcf.Z
+Office51/fonts/75dpi/chevon24.pcf.Z
+Office51/fonts/75dpi/chevon8.pcf.Z
+Office51/fonts/75dpi/congb10.pcf.Z
+Office51/fonts/75dpi/congb12.pcf.Z
+Office51/fonts/75dpi/congb14.pcf.Z
+Office51/fonts/75dpi/congb17.pcf.Z
+Office51/fonts/75dpi/congb20.pcf.Z
+Office51/fonts/75dpi/congb24.pcf.Z
+Office51/fonts/75dpi/congb8.pcf.Z
+Office51/fonts/75dpi/congn10.pcf.Z
+Office51/fonts/75dpi/congn12.pcf.Z
+Office51/fonts/75dpi/congn14.pcf.Z
+Office51/fonts/75dpi/congn17.pcf.Z
+Office51/fonts/75dpi/congn20.pcf.Z
+Office51/fonts/75dpi/congn24.pcf.Z
+Office51/fonts/75dpi/congn8.pcf.Z
+Office51/fonts/75dpi/helmb10.pcf.Z
+Office51/fonts/75dpi/helmb12.pcf.Z
+Office51/fonts/75dpi/helmb14.pcf.Z
+Office51/fonts/75dpi/helmb17.pcf.Z
+Office51/fonts/75dpi/helmb20.pcf.Z
+Office51/fonts/75dpi/helmb24.pcf.Z
+Office51/fonts/75dpi/helmb8.pcf.Z
+Office51/fonts/75dpi/helmbi10.pcf.Z
+Office51/fonts/75dpi/helmbi12.pcf.Z
+Office51/fonts/75dpi/helmbi14.pcf.Z
+Office51/fonts/75dpi/helmbi17.pcf.Z
+Office51/fonts/75dpi/helmbi20.pcf.Z
+Office51/fonts/75dpi/helmbi24.pcf.Z
+Office51/fonts/75dpi/helmbi8.pcf.Z
+Office51/fonts/75dpi/helmcb10.pcf.Z
+Office51/fonts/75dpi/helmcb12.pcf.Z
+Office51/fonts/75dpi/helmcb14.pcf.Z
+Office51/fonts/75dpi/helmcb17.pcf.Z
+Office51/fonts/75dpi/helmcb20.pcf.Z
+Office51/fonts/75dpi/helmcb24.pcf.Z
+Office51/fonts/75dpi/helmcb8.pcf.Z
+Office51/fonts/75dpi/helmcbi10.pcf.Z
+Office51/fonts/75dpi/helmcbi12.pcf.Z
+Office51/fonts/75dpi/helmcbi14.pcf.Z
+Office51/fonts/75dpi/helmcbi17.pcf.Z
+Office51/fonts/75dpi/helmcbi20.pcf.Z
+Office51/fonts/75dpi/helmcbi24.pcf.Z
+Office51/fonts/75dpi/helmcbi8.pcf.Z
+Office51/fonts/75dpi/helmci10.pcf.Z
+Office51/fonts/75dpi/helmci12.pcf.Z
+Office51/fonts/75dpi/helmci14.pcf.Z
+Office51/fonts/75dpi/helmci17.pcf.Z
+Office51/fonts/75dpi/helmci20.pcf.Z
+Office51/fonts/75dpi/helmci24.pcf.Z
+Office51/fonts/75dpi/helmci8.pcf.Z
+Office51/fonts/75dpi/helmcn10.pcf.Z
+Office51/fonts/75dpi/helmcn12.pcf.Z
+Office51/fonts/75dpi/helmcn14.pcf.Z
+Office51/fonts/75dpi/helmcn17.pcf.Z
+Office51/fonts/75dpi/helmcn20.pcf.Z
+Office51/fonts/75dpi/helmcn24.pcf.Z
+Office51/fonts/75dpi/helmcn8.pcf.Z
+Office51/fonts/75dpi/helmi10.pcf.Z
+Office51/fonts/75dpi/helmi12.pcf.Z
+Office51/fonts/75dpi/helmi14.pcf.Z
+Office51/fonts/75dpi/helmi17.pcf.Z
+Office51/fonts/75dpi/helmi20.pcf.Z
+Office51/fonts/75dpi/helmi24.pcf.Z
+Office51/fonts/75dpi/helmi8.pcf.Z
+Office51/fonts/75dpi/helmn10.pcf.Z
+Office51/fonts/75dpi/helmn12.pcf.Z
+Office51/fonts/75dpi/helmn14.pcf.Z
+Office51/fonts/75dpi/helmn17.pcf.Z
+Office51/fonts/75dpi/helmn20.pcf.Z
+Office51/fonts/75dpi/helmn24.pcf.Z
+Office51/fonts/75dpi/helmn8.pcf.Z
+Office51/fonts/75dpi/starbats10.pcf.Z
+Office51/fonts/75dpi/starbats12.pcf.Z
+Office51/fonts/75dpi/starbats14.pcf.Z
+Office51/fonts/75dpi/starbats17.pcf.Z
+Office51/fonts/75dpi/starbats20.pcf.Z
+Office51/fonts/75dpi/starbats24.pcf.Z
+Office51/fonts/75dpi/starbats8.pcf.Z
+Office51/fonts/75dpi/starmath10.pcf.Z
+Office51/fonts/75dpi/starmath12.pcf.Z
+Office51/fonts/75dpi/starmath14.pcf.Z
+Office51/fonts/75dpi/starmath17.pcf.Z
+Office51/fonts/75dpi/starmath20.pcf.Z
+Office51/fonts/75dpi/starmath24.pcf.Z
+Office51/fonts/75dpi/starmath8.pcf.Z
+Office51/fonts/75dpi/timmb10.pcf.Z
+Office51/fonts/75dpi/timmb12.pcf.Z
+Office51/fonts/75dpi/timmb14.pcf.Z
+Office51/fonts/75dpi/timmb17.pcf.Z
+Office51/fonts/75dpi/timmb20.pcf.Z
+Office51/fonts/75dpi/timmb24.pcf.Z
+Office51/fonts/75dpi/timmb8.pcf.Z
+Office51/fonts/75dpi/timmbi10.pcf.Z
+Office51/fonts/75dpi/timmbi12.pcf.Z
+Office51/fonts/75dpi/timmbi14.pcf.Z
+Office51/fonts/75dpi/timmbi17.pcf.Z
+Office51/fonts/75dpi/timmbi20.pcf.Z
+Office51/fonts/75dpi/timmbi24.pcf.Z
+Office51/fonts/75dpi/timmbi8.pcf.Z
+Office51/fonts/75dpi/timmi10.pcf.Z
+Office51/fonts/75dpi/timmi12.pcf.Z
+Office51/fonts/75dpi/timmi14.pcf.Z
+Office51/fonts/75dpi/timmi17.pcf.Z
+Office51/fonts/75dpi/timmi20.pcf.Z
+Office51/fonts/75dpi/timmi24.pcf.Z
+Office51/fonts/75dpi/timmi8.pcf.Z
+Office51/fonts/75dpi/timmn10.pcf.Z
+Office51/fonts/75dpi/timmn12.pcf.Z
+Office51/fonts/75dpi/timmn14.pcf.Z
+Office51/fonts/75dpi/timmn17.pcf.Z
+Office51/fonts/75dpi/timmn20.pcf.Z
+Office51/fonts/75dpi/timmn24.pcf.Z
+Office51/fonts/75dpi/timmn8.pcf.Z
+Office51/config/help/desktop.${LANGNO}
+Office51/config/help/scalc.${LANGNO}
+Office51/config/help/schart.${LANGNO}
+Office51/config/help/schedule.${LANGNO}
+Office51/config/help/sdraw.${LANGNO}
+Office51/config/help/simpress.${LANGNO}
+Office51/config/help/smath.${LANGNO}
+Office51/config/help/swriter.${LANGNO}
+Office51/config/help/simage.${LANGNO}
+Office51/config/help/sbasic.${LANGNO}
+Office51/config/symbol/sc00000.bmp
+Office51/config/symbol/sc05300.bmp
+Office51/config/symbol/sc05302.bmp
+Office51/config/symbol/sc05325.bmp
+Office51/config/symbol/sc05331.bmp
+Office51/config/symbol/sc05338.bmp
+Office51/config/symbol/sc05339.bmp
+Office51/config/symbol/sc05361.bmp
+Office51/config/symbol/sc05362.bmp
+Office51/config/symbol/sc05363.bmp
+Office51/config/symbol/sc05364.bmp
+Office51/config/symbol/sc05365.bmp
+Office51/config/symbol/sc05366.bmp
+Office51/config/symbol/sc05367.bmp
+Office51/config/symbol/sc05368.bmp
+Office51/config/symbol/sc05369.bmp
+Office51/config/symbol/sc05370.bmp
+Office51/config/symbol/sc05371.bmp
+Office51/config/symbol/sc05373.bmp
+Office51/config/symbol/sc05374.bmp
+Office51/config/symbol/sc05375.bmp
+Office51/config/symbol/sc05377.bmp
+Office51/config/symbol/sc05381.bmp
+Office51/config/symbol/sc05382.bmp
+Office51/config/symbol/sc05383.bmp
+Office51/config/symbol/sc05384.bmp
+Office51/config/symbol/sc05386.bmp
+Office51/config/symbol/sc05387.bmp
+Office51/config/symbol/sc05401.bmp
+Office51/config/symbol/sc05402.bmp
+Office51/config/symbol/sc05410.bmp
+Office51/config/symbol/sc05411.bmp
+Office51/config/symbol/sc05412.bmp
+Office51/config/symbol/sc05413.bmp
+Office51/config/symbol/sc05414.bmp
+Office51/config/symbol/sc05415.bmp
+Office51/config/symbol/sc05500.bmp
+Office51/config/symbol/sc05501.bmp
+Office51/config/symbol/sc05502.bmp
+Office51/config/symbol/sc05503.bmp
+Office51/config/symbol/sc05504.bmp
+Office51/config/symbol/sc05505.bmp
+Office51/config/symbol/sc05508.bmp
+Office51/config/symbol/sc05509.bmp
+Office51/config/symbol/sc05532.bmp
+Office51/config/symbol/sc05533.bmp
+Office51/config/symbol/sc05535.bmp
+Office51/config/symbol/sc05537.bmp
+Office51/config/symbol/sc05538.bmp
+Office51/config/symbol/sc05539.bmp
+Office51/config/symbol/sc05552.bmp
+Office51/config/symbol/sc05555.bmp
+Office51/config/symbol/sc05556.bmp
+Office51/config/symbol/sc05561.bmp
+Office51/config/symbol/sc05563.bmp
+Office51/config/symbol/sc05595.bmp
+Office51/config/symbol/sc05596.bmp
+Office51/config/symbol/sc05624.bmp
+Office51/config/symbol/sc05646.bmp
+Office51/config/symbol/sc05647.bmp
+Office51/config/symbol/sc05648.bmp
+Office51/config/symbol/sc05649.bmp
+Office51/config/symbol/sc05650.bmp
+Office51/config/symbol/sc05651.bmp
+Office51/config/symbol/sc05672.bmp
+Office51/config/symbol/sc05673.bmp
+Office51/config/symbol/sc05675.bmp
+Office51/config/symbol/sc05694.bmp
+Office51/config/symbol/sc05700.bmp
+Office51/config/symbol/sc05701.bmp
+Office51/config/symbol/sc05702.bmp
+Office51/config/symbol/sc05710.bmp
+Office51/config/symbol/sc05711.bmp
+Office51/config/symbol/sc05712.bmp
+Office51/config/symbol/sc05713.bmp
+Office51/config/symbol/sc05723.bmp
+Office51/config/symbol/sc05800.bmp
+Office51/config/symbol/sc05801.bmp
+Office51/config/symbol/sc05802.bmp
+Office51/config/symbol/sc05904.bmp
+Office51/config/symbol/sc05905.bmp
+Office51/config/symbol/sc05906.bmp
+Office51/config/symbol/sc05951.bmp
+Office51/config/symbol/sc05952.bmp
+Office51/config/symbol/sc05953.bmp
+Office51/config/symbol/sc05954.bmp
+Office51/config/symbol/sc05955.bmp
+Office51/config/symbol/sc05956.bmp
+Office51/config/symbol/sc05957.bmp
+Office51/config/symbol/sc05958.bmp
+Office51/config/symbol/sc05959.bmp
+Office51/config/symbol/sc05960.bmp
+Office51/config/symbol/sc05961.bmp
+Office51/config/symbol/sc05962.bmp
+Office51/config/symbol/sc05963.bmp
+Office51/config/symbol/sc06300.bmp
+Office51/config/symbol/sc06301.bmp
+Office51/config/symbol/sc06302.bmp
+Office51/config/symbol/sc06303.bmp
+Office51/config/symbol/sc06304.bmp
+Office51/config/symbol/sc06305.bmp
+Office51/config/symbol/sc06306.bmp
+Office51/config/symbol/sc06308.bmp
+Office51/config/symbol/sc06309.bmp
+Office51/config/symbol/sc06312.bmp
+Office51/config/symbol/sc06313.bmp
+Office51/config/symbol/sc06314.bmp
+Office51/config/symbol/sc06315.bmp
+Office51/config/symbol/sc06318.bmp
+Office51/config/symbol/sc06330.bmp
+Office51/config/symbol/sc06331.bmp
+Office51/config/symbol/sc06332.bmp
+Office51/config/symbol/sc06333.bmp
+Office51/config/symbol/sc06334.bmp
+Office51/config/symbol/sc06335.bmp
+Office51/config/symbol/sc06336.bmp
+Office51/config/symbol/sc06337.bmp
+Office51/config/symbol/sc06338.bmp
+Office51/config/symbol/sc06339.bmp
+Office51/config/symbol/sc06350.bmp
+Office51/config/symbol/sc06351.bmp
+Office51/config/symbol/sc06352.bmp
+Office51/config/symbol/sc06353.bmp
+Office51/config/symbol/sc06354.bmp
+Office51/config/symbol/sc06355.bmp
+Office51/config/symbol/sc06356.bmp
+Office51/config/symbol/sc06357.bmp
+Office51/config/symbol/sc06362.bmp
+Office51/config/symbol/sc06363.bmp
+Office51/config/symbol/sc06364.bmp
+Office51/config/symbol/sc06370.bmp
+Office51/config/symbol/sc06377.bmp
+Office51/config/symbol/sc06379.bmp
+Office51/config/symbol/sc06384.bmp
+Office51/config/symbol/sc06522.bmp
+Office51/config/symbol/sc10000.bmp
+Office51/config/symbol/sc10006.bmp
+Office51/config/symbol/sc10007.bmp
+Office51/config/symbol/sc10008.bmp
+Office51/config/symbol/sc10009.bmp
+Office51/config/symbol/sc10010.bmp
+Office51/config/symbol/sc10012.bmp
+Office51/config/symbol/sc10013.bmp
+Office51/config/symbol/sc10014.bmp
+Office51/config/symbol/sc10015.bmp
+Office51/config/symbol/sc10016.bmp
+Office51/config/symbol/sc10017.bmp
+Office51/config/symbol/sc10028.bmp
+Office51/config/symbol/sc10029.bmp
+Office51/config/symbol/sc10030.bmp
+Office51/config/symbol/sc10031.bmp
+Office51/config/symbol/sc10035.bmp
+Office51/config/symbol/sc10036.bmp
+Office51/config/symbol/sc10045.bmp
+Office51/config/symbol/sc10050.bmp
+Office51/config/symbol/sc10055.bmp
+Office51/config/symbol/sc10087.bmp
+Office51/config/symbol/sc10096.bmp
+Office51/config/symbol/sc10097.bmp
+Office51/config/symbol/sc10098.bmp
+Office51/config/symbol/sc10099.bmp
+Office51/config/symbol/sc10100.bmp
+Office51/config/symbol/sc10101.bmp
+Office51/config/symbol/sc10102.bmp
+Office51/config/symbol/sc10103.bmp
+Office51/config/symbol/sc10104.bmp
+Office51/config/symbol/sc10105.bmp
+Office51/config/symbol/sc10106.bmp
+Office51/config/symbol/sc10109.bmp
+Office51/config/symbol/sc10110.bmp
+Office51/config/symbol/sc10112.bmp
+Office51/config/symbol/sc10114.bmp
+Office51/config/symbol/sc10115.bmp
+Office51/config/symbol/sc10116.bmp
+Office51/config/symbol/sc10117.bmp
+Office51/config/symbol/sc10118.bmp
+Office51/config/symbol/sc10119.bmp
+Office51/config/symbol/sc10120.bmp
+Office51/config/symbol/sc10121.bmp
+Office51/config/symbol/sc10122.bmp
+Office51/config/symbol/sc10123.bmp
+Office51/config/symbol/sc10124.bmp
+Office51/config/symbol/sc10125.bmp
+Office51/config/symbol/sc10126.bmp
+Office51/config/symbol/sc10127.bmp
+Office51/config/symbol/sc10128.bmp
+Office51/config/symbol/sc10129.bmp
+Office51/config/symbol/sc10130.bmp
+Office51/config/symbol/sc10131.bmp
+Office51/config/symbol/sc10132.bmp
+Office51/config/symbol/sc10133.bmp
+Office51/config/symbol/sc10134.bmp
+Office51/config/symbol/sc10135.bmp
+Office51/config/symbol/sc10136.bmp
+Office51/config/symbol/sc10137.bmp
+Office51/config/symbol/sc10138.bmp
+Office51/config/symbol/sc10139.bmp
+Office51/config/symbol/sc10140.bmp
+Office51/config/symbol/sc10141.bmp
+Office51/config/symbol/sc10142.bmp
+Office51/config/symbol/sc10143.bmp
+Office51/config/symbol/sc10144.bmp
+Office51/config/symbol/sc10145.bmp
+Office51/config/symbol/sc10146.bmp
+Office51/config/symbol/sc10147.bmp
+Office51/config/symbol/sc10148.bmp
+Office51/config/symbol/sc10150.bmp
+Office51/config/symbol/sc10151.bmp
+Office51/config/symbol/sc10152.bmp
+Office51/config/symbol/sc10153.bmp
+Office51/config/symbol/sc10154.bmp
+Office51/config/symbol/sc10155.bmp
+Office51/config/symbol/sc10156.bmp
+Office51/config/symbol/sc10157.bmp
+Office51/config/symbol/sc10158.bmp
+Office51/config/symbol/sc10159.bmp
+Office51/config/symbol/sc10160.bmp
+Office51/config/symbol/sc10161.bmp
+Office51/config/symbol/sc10162.bmp
+Office51/config/symbol/sc10163.bmp
+Office51/config/symbol/sc10164.bmp
+Office51/config/symbol/sc10185.bmp
+Office51/config/symbol/sc10186.bmp
+Office51/config/symbol/sc10187.bmp
+Office51/config/symbol/sc10188.bmp
+Office51/config/symbol/sc10189.bmp
+Office51/config/symbol/sc10190.bmp
+Office51/config/symbol/sc10191.bmp
+Office51/config/symbol/sc10192.bmp
+Office51/config/symbol/sc10193.bmp
+Office51/config/symbol/sc10194.bmp
+Office51/config/symbol/sc10195.bmp
+Office51/config/symbol/sc10196.bmp
+Office51/config/symbol/sc10197.bmp
+Office51/config/symbol/sc10199.bmp
+Office51/config/symbol/sc10200.bmp
+Office51/config/symbol/sc10201.bmp
+Office51/config/symbol/sc10217.bmp
+Office51/config/symbol/sc10223.bmp
+Office51/config/symbol/sc10224.bmp
+Office51/config/symbol/sc10231.bmp
+Office51/config/symbol/sc10232.bmp
+Office51/config/symbol/sc10233.bmp
+Office51/config/symbol/sc10240.bmp
+Office51/config/symbol/sc10241.bmp
+Office51/config/symbol/sc10242.bmp
+Office51/config/symbol/sc10243.bmp
+Office51/config/symbol/sc10244.bmp
+Office51/config/symbol/sc10253.bmp
+Office51/config/symbol/sc10254.bmp
+Office51/config/symbol/sc10255.bmp
+Office51/config/symbol/sc10256.bmp
+Office51/config/symbol/sc10282.bmp
+Office51/config/symbol/sc10283.bmp
+Office51/config/symbol/sc10286.bmp
+Office51/config/symbol/sc10287.bmp
+Office51/config/symbol/sc10294.bmp
+Office51/config/symbol/sc10295.bmp
+Office51/config/symbol/sc10296.bmp
+Office51/config/symbol/sc10297.bmp
+Office51/config/symbol/sc10301.bmp
+Office51/config/symbol/sc10350.bmp
+Office51/config/symbol/sc10360.bmp
+Office51/config/symbol/sc10366.bmp
+Office51/config/symbol/sc10371.bmp
+Office51/config/symbol/sc10375.bmp
+Office51/config/symbol/sc10376.bmp
+Office51/config/symbol/sc10378.bmp
+Office51/config/symbol/sc10379.bmp
+Office51/config/symbol/sc10380.bmp
+Office51/config/symbol/sc10381.bmp
+Office51/config/symbol/sc10382.bmp
+Office51/config/symbol/sc10383.bmp
+Office51/config/symbol/sc10384.bmp
+Office51/config/symbol/sc10385.bmp
+Office51/config/symbol/sc10386.bmp
+Office51/config/symbol/sc10387.bmp
+Office51/config/symbol/sc10388.bmp
+Office51/config/symbol/sc10389.bmp
+Office51/config/symbol/sc10390.bmp
+Office51/config/symbol/sc10391.bmp
+Office51/config/symbol/sc10393.bmp
+Office51/config/symbol/sc10394.bmp
+Office51/config/symbol/sc10395.bmp
+Office51/config/symbol/sc10396.bmp
+Office51/config/symbol/sc10397.bmp
+Office51/config/symbol/sc10398.bmp
+Office51/config/symbol/sc10399.bmp
+Office51/config/symbol/sc10401.bmp
+Office51/config/symbol/sc10402.bmp
+Office51/config/symbol/sc10403.bmp
+Office51/config/symbol/sc10434.bmp
+Office51/config/symbol/sc10458.bmp
+Office51/config/symbol/sc10461.bmp
+Office51/config/symbol/sc10462.bmp
+Office51/config/symbol/sc10463.bmp
+Office51/config/symbol/sc10464.bmp
+Office51/config/symbol/sc10465.bmp
+Office51/config/symbol/sc10503.bmp
+Office51/config/symbol/sc12021.bmp
+Office51/config/symbol/sc12201.bmp
+Office51/config/symbol/sc12202.bmp
+Office51/config/symbol/sc12203.bmp
+Office51/config/symbol/sc12204.bmp
+Office51/config/symbol/sc12212.bmp
+Office51/config/symbol/sc12221.bmp
+Office51/config/symbol/sc12222.bmp
+Office51/config/symbol/sc12223.bmp
+Office51/config/symbol/sc12224.bmp
+Office51/config/symbol/sc12225.bmp
+Office51/config/symbol/sc12226.bmp
+Office51/config/symbol/sc12227.bmp
+Office51/config/symbol/sc12228.bmp
+Office51/config/symbol/sc12229.bmp
+Office51/config/symbol/sc12230.bmp
+Office51/config/symbol/sc12231.bmp
+Office51/config/symbol/sc12232.bmp
+Office51/config/symbol/sc12234.bmp
+Office51/config/symbol/sc14780.bmp
+Office51/config/symbol/sc14781.bmp
+Office51/config/symbol/sc14785.bmp
+Office51/config/symbol/sc14786.bmp
+Office51/config/symbol/sc21050.bmp
+Office51/config/symbol/sc21051.bmp
+Office51/config/symbol/sc21060.bmp
+Office51/config/symbol/sc21061.bmp
+Office51/config/symbol/sc21062.bmp
+Office51/config/symbol/sc21070.bmp
+Office51/config/symbol/sc21080.bmp
+Office51/config/symbol/sc21100.bmp
+Office51/config/symbol/sc21101.bmp
+Office51/config/symbol/sc21102.bmp
+Office51/config/symbol/sc21103.bmp
+Office51/config/symbol/sc21104.bmp
+Office51/config/symbol/sc21105.bmp
+Office51/config/symbol/sc21110.bmp
+Office51/config/symbol/sc21111.bmp
+Office51/config/symbol/sc21120.bmp
+Office51/config/symbol/sc21121.bmp
+Office51/config/symbol/sc21130.bmp
+Office51/config/symbol/sc21140.bmp
+Office51/config/symbol/sc21141.bmp
+Office51/config/symbol/sc21142.bmp
+Office51/config/symbol/sc21150.bmp
+Office51/config/symbol/sc21160.bmp
+Office51/config/symbol/sc21170.bmp
+Office51/config/symbol/sc21180.bmp
+Office51/config/symbol/sc21190.bmp
+Office51/config/symbol/sc21200.bmp
+Office51/config/symbol/sc21210.bmp
+Office51/config/symbol/sc21220.bmp
+Office51/config/symbol/sc21230.bmp
+Office51/config/symbol/sc21240.bmp
+Office51/config/symbol/sc21250.bmp
+Office51/config/symbol/sc27030.bmp
+Office51/config/symbol/sc27065.bmp
+Office51/config/symbol/sc27066.bmp
+Office51/config/symbol/sc27067.bmp
+Office51/config/symbol/sc30000.bmp
+Office51/config/symbol/sc30002.bmp
+Office51/config/symbol/sc30003.bmp
+Office51/config/symbol/sc30004.bmp
+Office51/config/symbol/sc30005.bmp
+Office51/config/symbol/sc30007.bmp
+Office51/config/symbol/sc30008.bmp
+Office51/config/symbol/sc30009.bmp
+Office51/config/symbol/sc30010.bmp
+Office51/config/symbol/sc30011.bmp
+Office51/config/symbol/sc30012.bmp
+Office51/config/symbol/sc30770.bmp
+Office51/config/symbol/sc30773.bmp
+Office51/config/symbol/sc30774.bmp
+Office51/config/symbol/sc30782.bmp
+Office51/config/symbol/sc6377.bmp
+Office51/config/symbol/scbullet.bmp
+Office51/config/symbol/scnumb.bmp
+Office51/config/symbol/sco161.bmp
+Office51/config/symbol/sco261.bmp
+Office51/config/symbol/sco262.bmp
+Office51/config/symbol/sortd.bmp
+Office51/config/symbol/sortu.bmp
+Office51/config/symbol/u_high.bmp
+Office51/config/symbol/u_low.bmp
+Office51/config/symbol/u_normal.bmp
+Office51/config/start/_50_prog.url
+Office51/config/start/_65_set.url
+Office51/config/start/_75_exec.url
+Office51/config/start/_15_mail.url
+Office51/config/start/_45_sep.url
+Office51/config/start/_55_book.url
+Office51/config/start/_60_doc.url
+Office51/config/start/_68_find.url
+Office51/config/start/_30_more.url
+Office51/config/start/_70_help.url
+Office51/config/start/_05_text.url
+Office51/config/start/_10_sprd.url
+Office51/config/start/_20_pres.url
+Office51/config/start/_25_draw.url
+Office51/config/alarm.wav
+Office51/config/autotbl.fmt
+Office51/config/cmyk.soc
+Office51/config/gpm.ini
+Office51/config/labels.ini
+Office51/config/modern.sog
+Office51/config/palette.soc
+Office51/config/psetup.xpm
+Office51/config/psetupl.xpm
+Office51/config/srcheng.ini
+Office51/config/ssimport.ini
+Office51/config/ssprsize.ini
+Office51/config/standard.sob
+Office51/config/standard.soc
+Office51/config/standard.sod
+Office51/config/standard.soe
+Office51/config/standard.sog
+Office51/config/standard.soh
+Office51/config/starmath.sms
+Office51/config/web.soc
+Office51/config/groups/bookmark.url
+Office51/config/groups/explorer.url
+Office51/config/groups/tasks.url
+Office51/config/groups/work.url
+Office51/config/new/_50_sep.url
+Office51/config/new/_75_tpl.url
+Office51/config/new/_35_mail.url
+Office51/config/new/_40_fram.url
+Office51/config/new/_48_data.url
+Office51/config/new/_05_text.url
+Office51/config/new/_30_html.url
+Office51/config/new/_45_mstr.url
+Office51/config/new/_25_sep.url
+Office51/config/new/_10_sprd.url
+Office51/config/new/_15_pres.url
+Office51/config/new/_20_draw.url
+Office51/config/new/_70_sep.url
+Office51/config/new/_65_for.url
+Office51/config/new/_55_chrt.url
+Office51/config/new/_60_img.url
+Office51/config/settings/_10_prin.url
+Office51/config/more/_10_fram.url
+Office51/config/more/_18_data.url
+Office51/config/more/_20_sep.url
+Office51/config/more/_40_sep.url
+Office51/config/more/_45_tpl.url
+Office51/config/more/_05_html.url
+Office51/config/more/_15_mstr.url
+Office51/config/more/_35_for.url
+Office51/config/more/_25_chrt.url
+Office51/config/more/_30_img.url
+Office51/config/tasks/dbase.url
+Office51/config/tasks/frameset.url
+Office51/config/tasks/mail.url
+Office51/config/tasks/writer.url
+Office51/config/tasks/global.url
+Office51/config/tasks/html.url
+Office51/config/tasks/calc.url
+Office51/config/tasks/impress.url
+Office51/config/tasks/draw.url
+Office51/config/tasks/formula.url
+Office51/config/tasks/chart.url
+Office51/config/tasks/image.url
+Office51/config/wizard/_50_tabl.url
+Office51/config/wizard/_55_rprt.url
+Office51/config/wizard/_60_form.url
+Office51/config/wizard/_70_sep.url
+Office51/config/wizard/_75_msi.url
+Office51/config/wizard/_80_iset.url
+Office51/config/wizard/_10_fax.url
+Office51/config/wizard/_20_memo.url
+Office51/config/wizard/_25_sep.url
+Office51/config/wizard/_40_web.url
+Office51/config/wizard/_45_sep.url
+Office51/config/wizard/_35_sep.url
+Office51/config/desk_bck.gif
+Office51/config/base_bck.gif
+Office51/config/mydocs.gif
+Office51/config/cmponent.ini
+Office51/config/hlpagent.ini
+Office51/config/writ_bck.gif
+Office51/config/defcal.txt
+Office51/config/defuser.txt
+Office51/config/helpmenu/h100002.url
+Office51/config/helpmenu/h100008.url
+Office51/config/helpmenu/h100018.url
+Office51/config/helpmenu/h100020.url
+Office51/config/helpmenu/h100127.url
+Office51/config/helpmenu/h100009.url
+Office51/config/helpmenu/h100011.url
+Office51/config/helpmenu/h100016.url
+Office51/config/convert.ini
+Office51/config/calc_bck.gif
+Office51/config/impr_bck.gif
+Office51/config/draw_bck.gif
+Office51/config/math_bck.gif
+Office51/config/sshelp.hid
+Office51/explorer/address.sdb
+Office51/explorer/bookmark.url
+Office51/explorer/work.url
+Office51/explorer/samples.url
+Office51/gallery/sg1.sdg
+Office51/gallery/sg1.sdv
+Office51/gallery/sg1.thm
+Office51/gallery/sg2.sdg
+Office51/gallery/sg2.sdv
+Office51/gallery/sg2.thm
+Office51/gallery/sg3.sdg
+Office51/gallery/sg3.sdv
+Office51/gallery/sg3.thm
+Office51/gallery/sg16.sdg
+Office51/gallery/sg16.sdv
+Office51/gallery/sg16.thm
+Office51/gallery/sg24.sdg
+Office51/gallery/sg24.sdv
+Office51/gallery/sg24.thm
+Office51/gallery/sg25.sdg
+Office51/gallery/sg25.sdv
+Office51/gallery/sg25.thm
+Office51/gallery/sdddndx1
+Office51/gallery/bullets/blkpearl.gif
+Office51/gallery/bullets/bluarrow.gif
+Office51/gallery/bullets/bluball.gif
+Office51/gallery/bullets/bludiamd.gif
+Office51/gallery/bullets/blusqare.gif
+Office51/gallery/bullets/blustar.gif
+Office51/gallery/bullets/darkball.gif
+Office51/gallery/bullets/gldpearl.gif
+Office51/gallery/bullets/golfball.gif
+Office51/gallery/bullets/grnarrow.gif
+Office51/gallery/bullets/grnball.gif
+Office51/gallery/bullets/grndiamd.gif
+Office51/gallery/bullets/grnpearl.gif
+Office51/gallery/bullets/grnsqare.gif
+Office51/gallery/bullets/grnstar.gif
+Office51/gallery/bullets/gryarrow.gif
+Office51/gallery/bullets/gryball.gif
+Office51/gallery/bullets/grydiamd.gif
+Office51/gallery/bullets/grysqare.gif
+Office51/gallery/bullets/grystar.gif
+Office51/gallery/bullets/orgball.gif
+Office51/gallery/bullets/poliball.gif
+Office51/gallery/bullets/redarrow.gif
+Office51/gallery/bullets/redball.gif
+Office51/gallery/bullets/reddiamd.gif
+Office51/gallery/bullets/redsqare.gif
+Office51/gallery/bullets/redstar.gif
+Office51/gallery/bullets/whtpearl.gif
+Office51/gallery/bullets/ylwball.gif
+Office51/gallery/rulers/blkballs.gif
+Office51/gallery/rulers/blurulr1.gif
+Office51/gallery/rulers/blurulr2.gif
+Office51/gallery/rulers/blurulr3.gif
+Office51/gallery/rulers/blurulr4.gif
+Office51/gallery/rulers/blurulr5.gif
+Office51/gallery/rulers/blurulr6.gif
+Office51/gallery/rulers/gldballs.gif
+Office51/gallery/rulers/grnballs.gif
+Office51/gallery/rulers/grnrulr1.gif
+Office51/gallery/rulers/grnrulr2.gif
+Office51/gallery/rulers/grnrulr3.gif
+Office51/gallery/rulers/grnrulr4.gif
+Office51/gallery/rulers/gryrulr1.gif
+Office51/gallery/rulers/gryrulr2.gif
+Office51/gallery/rulers/gryrulr3.gif
+Office51/gallery/rulers/orgrulr1.gif
+Office51/gallery/rulers/redrulr1.gif
+Office51/gallery/rulers/redrulr2.gif
+Office51/gallery/rulers/redrulr3.gif
+Office51/gallery/rulers/redrulr4.gif
+Office51/gallery/rulers/redrulr5.gif
+Office51/gallery/rulers/striped.gif
+Office51/gallery/rulers/whtballs.gif
+Office51/gallery/rulers/ylwrulr1.gif
+Office51/gallery/www-back/back.jpg
+Office51/gallery/www-back/backdark.jpg
+Office51/gallery/www-back/blocks.jpg
+Office51/gallery/www-back/blue.jpg
+Office51/gallery/www-back/brback.jpg
+Office51/gallery/www-back/brnpaws.gif
+Office51/gallery/www-back/bulb.gif
+Office51/gallery/www-back/bumps1.jpg
+Office51/gallery/www-back/bumps2.jpg
+Office51/gallery/www-back/circle.jpg
+Office51/gallery/www-back/fond_ora.jpg
+Office51/gallery/www-back/grcross.jpg
+Office51/gallery/www-back/gregre.gif
+Office51/gallery/www-back/grey.gif
+Office51/gallery/www-back/grey2bri.jpg
+Office51/gallery/www-back/grypaws.gif
+Office51/gallery/www-back/mazes.jpg
+Office51/gallery/www-back/mint.gif
+Office51/gallery/www-back/notes.gif
+Office51/gallery/www-back/pattern2.jpg
+Office51/gallery/www-back/pink.gif
+Office51/gallery/www-back/purple.jpg
+Office51/gallery/www-back/reddark.jpg
+Office51/gallery/www-back/smgreen.jpg
+Office51/gallery/www-back/tissue.jpg
+Office51/gallery/www-back/velvet.jpg
+Office51/gallery/www-back/watback.jpg
+Office51/gallery/www-back/water.jpg
+Office51/gallery/www-back/wood.gif
+Office51/gallery/www-back/yellow.jpg
+Office51/gallery/htmlexpo/bludown.gif
+Office51/gallery/htmlexpo/blufirs.gif
+Office51/gallery/htmlexpo/blufirs_.gif
+Office51/gallery/htmlexpo/blulast.gif
+Office51/gallery/htmlexpo/blulast_.gif
+Office51/gallery/htmlexpo/blunav.gif
+Office51/gallery/htmlexpo/blunext.gif
+Office51/gallery/htmlexpo/blunext_.gif
+Office51/gallery/htmlexpo/bluprev.gif
+Office51/gallery/htmlexpo/bluprev_.gif
+Office51/gallery/htmlexpo/blutext.gif
+Office51/gallery/htmlexpo/bluup.gif
+Office51/gallery/htmlexpo/cubdown.gif
+Office51/gallery/htmlexpo/cubfirs.gif
+Office51/gallery/htmlexpo/cubfirs_.gif
+Office51/gallery/htmlexpo/cublast.gif
+Office51/gallery/htmlexpo/cublast_.gif
+Office51/gallery/htmlexpo/cubnav.gif
+Office51/gallery/htmlexpo/cubnext.gif
+Office51/gallery/htmlexpo/cubnext_.gif
+Office51/gallery/htmlexpo/cubprev.gif
+Office51/gallery/htmlexpo/cubprev_.gif
+Office51/gallery/htmlexpo/cubtext.gif
+Office51/gallery/htmlexpo/cubup.gif
+Office51/gallery/htmlexpo/gredown.gif
+Office51/gallery/htmlexpo/grefirs.gif
+Office51/gallery/htmlexpo/grefirs_.gif
+Office51/gallery/htmlexpo/grelast.gif
+Office51/gallery/htmlexpo/grelast_.gif
+Office51/gallery/htmlexpo/grenav.gif
+Office51/gallery/htmlexpo/grenext.gif
+Office51/gallery/htmlexpo/grenext_.gif
+Office51/gallery/htmlexpo/greprev.gif
+Office51/gallery/htmlexpo/greprev_.gif
+Office51/gallery/htmlexpo/gretext.gif
+Office51/gallery/htmlexpo/greup.gif
+Office51/gallery/htmlexpo/simdown.gif
+Office51/gallery/htmlexpo/simfirs.gif
+Office51/gallery/htmlexpo/simfirs_.gif
+Office51/gallery/htmlexpo/simlast.gif
+Office51/gallery/htmlexpo/simlast_.gif
+Office51/gallery/htmlexpo/simnav.gif
+Office51/gallery/htmlexpo/simnext.gif
+Office51/gallery/htmlexpo/simnext_.gif
+Office51/gallery/htmlexpo/simprev.gif
+Office51/gallery/htmlexpo/simprev_.gif
+Office51/gallery/htmlexpo/simtext.gif
+Office51/gallery/htmlexpo/simup.gif
+Office51/gallery/htmlexpo/sologo.gif
+Office51/gallery/sg9.sdg
+Office51/gallery/sg9.sdv
+Office51/gallery/sg9.thm
+Office51/gallery/sounds/apert.wav
+Office51/gallery/sounds/apert2.wav
+Office51/gallery/sounds/applause.wav
+Office51/gallery/sounds/beam.wav
+Office51/gallery/sounds/beam2.wav
+Office51/gallery/sounds/cow.wav
+Office51/gallery/sounds/curve.wav
+Office51/gallery/sounds/drama.wav
+Office51/gallery/sounds/explos.wav
+Office51/gallery/sounds/falling.wav
+Office51/gallery/sounds/glasses.wav
+Office51/gallery/sounds/gong.wav
+Office51/gallery/sounds/horse.wav
+Office51/gallery/sounds/kling.wav
+Office51/gallery/sounds/kongas.wav
+Office51/gallery/sounds/laser.wav
+Office51/gallery/sounds/left.wav
+Office51/gallery/sounds/nature1.wav
+Office51/gallery/sounds/nature2.wav
+Office51/gallery/sounds/ok.wav
+Office51/gallery/sounds/pluck.wav
+Office51/gallery/sounds/roll.wav
+Office51/gallery/sounds/romans.wav
+Office51/gallery/sounds/soft.wav
+Office51/gallery/sounds/space.wav
+Office51/gallery/sounds/space2.wav
+Office51/gallery/sounds/space3.wav
+Office51/gallery/sounds/sparcle.wav
+Office51/gallery/sounds/strom.wav
+Office51/gallery/sounds/theetone.wav
+Office51/gallery/sounds/top.wav
+Office51/gallery/sounds/train.wav
+Office51/gallery/sounds/untie.wav
+Office51/gallery/sounds/ups.wav
+Office51/gallery/sounds/wallewal.wav
+Office51/gallery/clipart/arrow1.wmf
+Office51/gallery/clipart/arrow2.wmf
+Office51/gallery/clipart/arrow3.wmf
+Office51/gallery/clipart/arrow4.wmf
+Office51/gallery/clipart/arrow5.wmf
+Office51/gallery/clipart/birthday.wmf
+Office51/gallery/clipart/bottle.wmf
+Office51/gallery/clipart/bowling.wmf
+Office51/gallery/clipart/cake.wmf
+Office51/gallery/clipart/candle.wmf
+Office51/gallery/clipart/car.wmf
+Office51/gallery/clipart/cards.wmf
+Office51/gallery/clipart/disk.wmf
+Office51/gallery/clipart/dog.wmf
+Office51/gallery/clipart/eagle.wmf
+Office51/gallery/clipart/flash.wmf
+Office51/gallery/clipart/formula1.wmf
+Office51/gallery/clipart/gifts.wmf
+Office51/gallery/clipart/glas.wmf
+Office51/gallery/clipart/heart.wmf
+Office51/gallery/clipart/helicptr.wmf
+Office51/gallery/clipart/laptop.wmf
+Office51/gallery/clipart/locomotv.wmf
+Office51/gallery/clipart/mac.wmf
+Office51/gallery/clipart/monitor.wmf
+Office51/gallery/clipart/moving.wmf
+Office51/gallery/clipart/mtrbike.wmf
+Office51/gallery/clipart/notebook.wmf
+Office51/gallery/clipart/notepad1.wmf
+Office51/gallery/clipart/notepad2.wmf
+Office51/gallery/clipart/notes.wmf
+Office51/gallery/clipart/panda.wmf
+Office51/gallery/clipart/paper.wmf
+Office51/gallery/clipart/pawprnts.wmf
+Office51/gallery/clipart/pc.wmf
+Office51/gallery/clipart/plane.wmf
+Office51/gallery/clipart/printer.wmf
+Office51/gallery/clipart/pumpkin.wmf
+Office51/gallery/clipart/rose.wmf
+Office51/gallery/clipart/santa.wmf
+Office51/gallery/clipart/sleigh.wmf
+Office51/gallery/clipart/snowmen.wmf
+Office51/gallery/clipart/soap.wmf
+Office51/gallery/clipart/soccer.wmf
+Office51/gallery/clipart/sound.wmf
+Office51/gallery/clipart/talk.wmf
+Office51/gallery/clipart/teddy.wmf
+Office51/gallery/clipart/thought.wmf
+Office51/gallery/clipart/toys.wmf
+Office51/gallery/clipart/wedding.wmf
+Office51/gallery/clipart/xmas.gif
+Office51/gallery/clipart/xmastree.wmf
+Office51/gallery/flags/argent1.wmf
+Office51/gallery/flags/argent2.wmf
+Office51/gallery/flags/austral1.wmf
+Office51/gallery/flags/austral2.wmf
+Office51/gallery/flags/austria1.wmf
+Office51/gallery/flags/austria2.wmf
+Office51/gallery/flags/belgium1.wmf
+Office51/gallery/flags/belgium2.wmf
+Office51/gallery/flags/brasil1.wmf
+Office51/gallery/flags/brasil2.wmf
+Office51/gallery/flags/bulgari1.wmf
+Office51/gallery/flags/bulgari2.wmf
+Office51/gallery/flags/canada1.wmf
+Office51/gallery/flags/canada2.wmf
+Office51/gallery/flags/chile1.wmf
+Office51/gallery/flags/chile2.wmf
+Office51/gallery/flags/china1.wmf
+Office51/gallery/flags/china2.wmf
+Office51/gallery/flags/colombi1.wmf
+Office51/gallery/flags/colombi2.wmf
+Office51/gallery/flags/cuba1.wmf
+Office51/gallery/flags/cuba2.wmf
+Office51/gallery/flags/cyprus1.wmf
+Office51/gallery/flags/cyprus2.wmf
+Office51/gallery/flags/czech1.wmf
+Office51/gallery/flags/czech2.wmf
+Office51/gallery/flags/denmark1.wmf
+Office51/gallery/flags/denmark2.wmf
+Office51/gallery/flags/egypt1.wmf
+Office51/gallery/flags/egypt2.wmf
+Office51/gallery/flags/europe1.wmf
+Office51/gallery/flags/finland1.wmf
+Office51/gallery/flags/finland2.wmf
+Office51/gallery/flags/france1.wmf
+Office51/gallery/flags/france2.wmf
+Office51/gallery/flags/germany1.wmf
+Office51/gallery/flags/germany2.wmf
+Office51/gallery/flags/greatbr1.wmf
+Office51/gallery/flags/greatbr2.wmf
+Office51/gallery/flags/greece1.wmf
+Office51/gallery/flags/greece2.wmf
+Office51/gallery/flags/guatema1.wmf
+Office51/gallery/flags/guatema2.wmf
+Office51/gallery/flags/hungary1.wmf
+Office51/gallery/flags/hungary2.wmf
+Office51/gallery/flags/iceland1.wmf
+Office51/gallery/flags/iceland2.wmf
+Office51/gallery/flags/india1.wmf
+Office51/gallery/flags/india2.wmf
+Office51/gallery/flags/ireland1.wmf
+Office51/gallery/flags/ireland2.wmf
+Office51/gallery/flags/israel1.wmf
+Office51/gallery/flags/israel2.wmf
+Office51/gallery/flags/italy1.wmf
+Office51/gallery/flags/italy2.wmf
+Office51/gallery/flags/japan1.wmf
+Office51/gallery/flags/japan2.wmf
+Office51/gallery/flags/kenya1.wmf
+Office51/gallery/flags/kenya2.wmf
+Office51/gallery/flags/liecht1.wmf
+Office51/gallery/flags/liecht2.wmf
+Office51/gallery/flags/luxemb1.wmf
+Office51/gallery/flags/luxemb2.wmf
+Office51/gallery/flags/mexico1.wmf
+Office51/gallery/flags/mexico2.wmf
+Office51/gallery/flags/nederl1.wmf
+Office51/gallery/flags/nederl2.wmf
+Office51/gallery/flags/newzea1.wmf
+Office51/gallery/flags/newzea2.wmf
+Office51/gallery/flags/norge1.wmf
+Office51/gallery/flags/norge2.wmf
+Office51/gallery/flags/pakist1.wmf
+Office51/gallery/flags/pakist2.wmf
+Office51/gallery/flags/paragua1.wmf
+Office51/gallery/flags/paragua2.wmf
+Office51/gallery/flags/peru1.wmf
+Office51/gallery/flags/peru2.wmf
+Office51/gallery/flags/poland1.wmf
+Office51/gallery/flags/poland2.wmf
+Office51/gallery/flags/portug1.wmf
+Office51/gallery/flags/portug2.wmf
+Office51/gallery/flags/romania1.wmf
+Office51/gallery/flags/romania2.wmf
+Office51/gallery/flags/russia1.wmf
+Office51/gallery/flags/russia2.wmf
+Office51/gallery/flags/slowak1.wmf
+Office51/gallery/flags/slowak2.wmf
+Office51/gallery/flags/spain1.wmf
+Office51/gallery/flags/spain2.wmf
+Office51/gallery/flags/sthafri1.wmf
+Office51/gallery/flags/sthafri2.wmf
+Office51/gallery/flags/sweden1.wmf
+Office51/gallery/flags/sweden2.wmf
+Office51/gallery/flags/switz1.wmf
+Office51/gallery/flags/switz2.wmf
+Office51/gallery/flags/turkey1.wmf
+Office51/gallery/flags/turkey2.wmf
+Office51/gallery/flags/uno1.wmf
+Office51/gallery/flags/uruguay1.wmf
+Office51/gallery/flags/uruguay2.wmf
+Office51/gallery/flags/usa1.wmf
+Office51/gallery/flags/usa2.wmf
+Office51/gallery/flags/venez1.wmf
+Office51/gallery/flags/venez2.wmf
+Office51/gallery/maps/afrika.wmf
+Office51/gallery/maps/america.wmf
+Office51/gallery/maps/argent.wmf
+Office51/gallery/maps/asia.wmf
+Office51/gallery/maps/ausnew.wmf
+Office51/gallery/maps/austria.wmf
+Office51/gallery/maps/belgium.wmf
+Office51/gallery/maps/brasilia.wmf
+Office51/gallery/maps/canada.wmf
+Office51/gallery/maps/denmark.wmf
+Office51/gallery/maps/england.wmf
+Office51/gallery/maps/france.wmf
+Office51/gallery/maps/germany.wmf
+Office51/gallery/maps/greatbrt.wmf
+Office51/gallery/maps/ireland.wmf
+Office51/gallery/maps/italy.wmf
+Office51/gallery/maps/mexico.wmf
+Office51/gallery/maps/neder.wmf
+Office51/gallery/maps/norge.wmf
+Office51/gallery/maps/northam.wmf
+Office51/gallery/maps/northire.wmf
+Office51/gallery/maps/portug.wmf
+Office51/gallery/maps/scandina.wmf
+Office51/gallery/maps/scotland.wmf
+Office51/gallery/maps/southam.wmf
+Office51/gallery/maps/spain.wmf
+Office51/gallery/maps/sweden.wmf
+Office51/gallery/maps/switz.wmf
+Office51/gallery/maps/usa.wmf
+Office51/gallery/maps/wales.wmf
+Office51/gallery/maps/world1.wmf
+Office51/gallery/maps/world2.wmf
+Office51/gallery/maps/world3.wmf
+Office51/gallery/photos/apples.jpg
+Office51/gallery/photos/autumn.jpg
+Office51/gallery/photos/canyon.jpg
+Office51/gallery/photos/castle.jpg
+Office51/gallery/photos/clouds.jpg
+Office51/gallery/photos/desert1.jpg
+Office51/gallery/photos/desert2.jpg
+Office51/gallery/photos/desert3.jpg
+Office51/gallery/photos/flowers.jpg
+Office51/gallery/photos/forest1.jpg
+Office51/gallery/photos/forest2.jpg
+Office51/gallery/photos/gldngate.jpg
+Office51/gallery/photos/leafs.jpg
+Office51/gallery/photos/meadow.jpg
+Office51/gallery/photos/mountns1.jpg
+Office51/gallery/photos/mountns2.jpg
+Office51/gallery/photos/mountns3.jpg
+Office51/gallery/photos/ocean.jpg
+Office51/gallery/photos/railroad.jpg
+Office51/gallery/photos/sunflowr.jpg
+Office51/gallery/photos/sunset1.jpg
+Office51/gallery/photos/sunset2.jpg
+Office51/gallery/photos/sunset3.jpg
+Office51/gallery/photos/sunset4.jpg
+Office51/gallery/photos/tajmahal.jpg
+Office51/gallery/photos/watrlily.jpg
+Office51/gallery/sg10.sdg
+Office51/gallery/sg10.sdv
+Office51/gallery/sg10.thm
+Office51/gallery/sg11.sdg
+Office51/gallery/sg11.sdv
+Office51/gallery/sg11.thm
+Office51/gallery/sg12.sdg
+Office51/gallery/sg12.sdv
+Office51/gallery/sg12.thm
+Office51/gallery/sg13.sdg
+Office51/gallery/sg13.sdv
+Office51/gallery/sg13.thm
+Office51/gallery/sg14.sdg
+Office51/gallery/sg14.sdv
+Office51/gallery/sg14.thm
+Office51/gallery/sg15.sdg
+Office51/gallery/sg15.sdv
+Office51/gallery/sg15.thm
+Office51/gallery/sg17.sdg
+Office51/gallery/sg17.sdv
+Office51/gallery/sg17.thm
+Office51/gallery/sg4.sdg
+Office51/gallery/sg4.sdv
+Office51/gallery/sg4.thm
+Office51/gallery/sg5.sdg
+Office51/gallery/sg5.sdv
+Office51/gallery/sg5.thm
+Office51/gallery/sg6.sdg
+Office51/gallery/sg6.sdv
+Office51/gallery/sg6.thm
+Office51/gallery/sg7.sdg
+Office51/gallery/sg7.sdv
+Office51/gallery/sg7.thm
+Office51/gallery/sg8.sdg
+Office51/gallery/sg8.sdv
+Office51/gallery/sg8.thm
+Office51/gallery/surface/berries.jpg
+Office51/gallery/surface/blue2.jpg
+Office51/gallery/surface/blue3.jpg
+Office51/gallery/surface/blue4.jpg
+Office51/gallery/surface/bluegray.jpg
+Office51/gallery/surface/chaossky.jpg
+Office51/gallery/surface/choc.jpg
+Office51/gallery/surface/green.jpg
+Office51/gallery/surface/gregrn.jpg
+Office51/gallery/surface/grey1.jpg
+Office51/gallery/surface/grey2.jpg
+Office51/gallery/surface/leaves.jpg
+Office51/gallery/surface/marble.jpg
+Office51/gallery/surface/net.jpg
+Office51/gallery/surface/orange1.jpg
+Office51/gallery/surface/orange2.jpg
+Office51/gallery/surface/pebbles.jpg
+Office51/gallery/surface/pink.jpg
+Office51/gallery/surface/power.jpg
+Office51/gallery/surface/raindrop.jpg
+Office51/gallery/surface/star.jpg
+Office51/gallery/surface/stones.jpg
+Office51/gallery/surface/violet1.jpg
+Office51/gallery/surface/wall1.jpg
+Office51/gallery/surface/wall2.jpg
+Office51/gallery/surface/water.jpg
+Office51/gallery/surface/yellow.jpg
+Office51/gallery/symbols/disabled.wmf
+Office51/gallery/symbols/exting.wmf
+Office51/gallery/symbols/flash.wmf
+Office51/gallery/symbols/man1.wmf
+Office51/gallery/symbols/man2.wmf
+Office51/gallery/symbols/nosmoke.wmf
+Office51/gallery/symbols/woman1.wmf
+Office51/gallery/symbols/woman2.wmf
+Office51/gallery/www-anim/barblak.gif
+Office51/gallery/www-anim/barwhit.gif
+Office51/gallery/www-anim/boxnew.gif
+Office51/gallery/www-anim/constrct.gif
+Office51/gallery/www-anim/cubes.gif
+Office51/gallery/www-anim/diskblak.gif
+Office51/gallery/www-anim/diskwhit.gif
+Office51/gallery/www-anim/email.gif
+Office51/gallery/www-anim/envelope.gif
+Office51/gallery/www-anim/gearsnew.gif
+Office51/gallery/www-anim/glb4dark.gif
+Office51/gallery/www-anim/glb4lght.gif
+Office51/gallery/www-graf/bluat.gif
+Office51/gallery/www-graf/bluback.gif
+Office51/gallery/www-graf/bludisk.gif
+Office51/gallery/www-graf/bludown.gif
+Office51/gallery/www-graf/bluhome.gif
+Office51/gallery/www-graf/bluinfo.gif
+Office51/gallery/www-graf/bluleft.gif
+Office51/gallery/www-graf/blumail.gif
+Office51/gallery/www-graf/bluminus.gif
+Office51/gallery/www-graf/bluplus.gif
+Office51/gallery/www-graf/bluquest.gif
+Office51/gallery/www-graf/bluright.gif
+Office51/gallery/www-graf/bluup.gif
+Office51/gallery/www-graf/created.gif
+Office51/gallery/www-graf/grnat.gif
+Office51/gallery/www-graf/grnback.gif
+Office51/gallery/www-graf/grndisk.gif
+Office51/gallery/www-graf/grndown.gif
+Office51/gallery/www-graf/grnexcla.gif
+Office51/gallery/www-graf/grninfo.gif
+Office51/gallery/www-graf/grnleft.gif
+Office51/gallery/www-graf/grnmail.gif
+Office51/gallery/www-graf/grnminus.gif
+Office51/gallery/www-graf/grnplus.gif
+Office51/gallery/www-graf/grnquest.gif
+Office51/gallery/www-graf/grnright.gif
+Office51/gallery/www-graf/grnup.gif
+Office51/gallery/www-graf/gryat.gif
+Office51/gallery/www-graf/gryback.gif
+Office51/gallery/www-graf/grydisk.gif
+Office51/gallery/www-graf/grydown.gif
+Office51/gallery/www-graf/gryhome.gif
+Office51/gallery/www-graf/gryinfo.gif
+Office51/gallery/www-graf/gryleft.gif
+Office51/gallery/www-graf/grymail.gif
+Office51/gallery/www-graf/gryminus.gif
+Office51/gallery/www-graf/gryplus.gif
+Office51/gallery/www-graf/gryquest.gif
+Office51/gallery/www-graf/gryright.gif
+Office51/gallery/www-graf/gryup.gif
+Office51/gallery/www-graf/men@work.gif
+Office51/gallery/www-graf/office.gif
+Office51/gallery/www-graf/redat.gif
+Office51/gallery/www-graf/redback.gif
+Office51/gallery/www-graf/reddisk.gif
+Office51/gallery/www-graf/reddown.gif
+Office51/gallery/www-graf/redhome.gif
+Office51/gallery/www-graf/redinfo.gif
+Office51/gallery/www-graf/redleft.gif
+Office51/gallery/www-graf/redmail.gif
+Office51/gallery/www-graf/redminus.gif
+Office51/gallery/www-graf/redplus.gif
+Office51/gallery/www-graf/redquest.gif
+Office51/gallery/www-graf/redright.gif
+Office51/gallery/www-graf/redup.gif
+Office51/gallery/www-graf/sologo.gif
+Office51/help/${LANGNO}/desktop.svh
+Office51/help/${LANGNO}/schedule.svh
+Office51/help/${LANGNO}/shelp.svh
+Office51/help/${LANGNO}/tips.svh
+Office51/help/${LANGNO}/smath.svh
+Office51/help/${LANGNO}/swriter.svh
+Office51/help/${LANGNO}/scalc.svh
+Office51/help/${LANGNO}/simpress.svh
+Office51/help/${LANGNO}/sdraw.svh
+Office51/help/${LANGNO}/schart.svh
+Office51/help/${LANGNO}/simage.svh
+Office51/help/${LANGNO}/sbasic.svh
+Office51/help/${LANGNO}/shelp.dir
+Office51/help/${LANGNO}/shelp.dat
+Office51/lib/liboic517li.so
+Office51/lib/libssw517li.so
+Office51/lib/libjvm517li.so
+Office51/lib/libaps517li.so
+Office51/lib/sandbox.jar
+Office51/lib/libni517li.so
+Office51/lib/classes.jar
+Office51/lib/libcnt517li.so
+Office51/lib/libdo517li.so
+Office51/lib/libgo517li.so
+Office51/lib/libofa517li.so
+Office51/lib/libosl517li.so
+Office51/lib/librtl517li.so
+Office51/lib/libsb517li.so
+Office51/lib/libsba517li.so
+Office51/lib/libsd517li.so
+Office51/lib/libsdb517li.so
+Office51/lib/libsfx517li.so
+Office51/lib/libsot517li.so
+Office51/lib/libso517li.so
+Office51/lib/tkt.jar
+Office51/lib/libsvt517li.so
+Office51/lib/libsvx517li.so
+Office51/lib/libsw517li.so
+Office51/lib/libtkt517li.so
+Office51/lib/libtl517li.so
+Office51/lib/libuno517li.so
+Office51/lib/libusr517li.so
+Office51/lib/libvcl517li.so
+Office51/lib/libvos517li.so
+Office51/lib/libspl517li.so
+Office51/lib/libstu517li.so
+Office51/lib/libzip517li.so
+Office51/lib/libgal517li.so
+Office51/lib/libone517li.so
+Office51/lib/libcsp517li.so
+Office51/lib/libj517li_g.so
+Office51/lib/libsex517li.so
+Office51/lib/libtk517li.so
+Office51/lib/libreg517li.so
+Office51/lib/libset517li.so
+Office51/lib/libres517li.so
+Office51/lib/libdmn517li.so
+Office51/lib/librts517li.so
+Office51/lib/libtfu517li.so
+Office51/lib/libpl517li.so
+Office51/lib/libasv517li.so
+Office51/lib/libje517li.so
+Office51/lib/libsc517li.so
+Office51/lib/libsm517li.so
+Office51/lib/libsch517li.so
+Office51/lib/libsim517li.so
+Office51/lib/libssc517li.so
+Office51/lib/libss517li.so
+Office51/basic/init.sbl
+Office51/basic/letterwi.sbl
+Office51/basic/internet.sbl
+Office51/basic/createre.sbl
+Office51/basic/dbhandle.sbl
+Office51/basic/formedit.sbl
+Office51/basic/formwiza.sbl
+Office51/basic/gimmicks.sbl
+Office51/basic/querywiz.sbl
+Office51/basic/reportwi.sbl
+Office51/basic/tablewiz.sbl
+Office51/basic/template.sbl
+Office51/basic/tools.sbl
+Office51/basic/webwizar.sbl
+Office51/basic/ssprint.sbl
+Office51/basic/schedule.sbl
+Office51/basic/gridwiza.sbl
+Office51/basic/combowiz.sbl
+Office51/basic/soffice.new
+Office51/basic/ssfuncs.sbl
+Office51/basic/groupwiz.sbl
+Office51/basic/importwi.sbl
+Office51/template/wizard/eventca.htm
+Office51/template/wizard/eventrp.htm
+Office51/template/wizard/eventrq.htm
+Office51/template/wizard/taskca.htm
+Office51/template/wizard/taskrp.htm
+Office51/template/wizard/taskrq.htm
+Office51/template/wizard/ss00.vor
+Office51/template/wizard/bitmap/brd.bmp
+Office51/template/wizard/bitmap/cgleft1.bmp
+Office51/template/wizard/bitmap/cgleft2.bmp
+Office51/template/wizard/bitmap/choose.bmp
+Office51/template/wizard/bitmap/cjblock.bmp
+Office51/template/wizard/bitmap/cjbuend.bmp
+Office51/template/wizard/bitmap/cjcombo0.bmp
+Office51/template/wizard/bitmap/cjform01.bmp
+Office51/template/wizard/bitmap/cjform02.bmp
+Office51/template/wizard/bitmap/cjform03.bmp
+Office51/template/wizard/bitmap/cjform04.bmp
+Office51/template/wizard/bitmap/cjform05.bmp
+Office51/template/wizard/bitmap/cjform2b.bmp
+Office51/template/wizard/bitmap/cjform2c.bmp
+Office51/template/wizard/bitmap/cjgl.bmp
+Office51/template/wizard/bitmap/cjst1.bmp
+Office51/template/wizard/bitmap/cjst2.bmp
+Office51/template/wizard/bitmap/cjtable0.bmp
+Office51/template/wizard/bitmap/cjtabula.bmp
+Office51/template/wizard/bitmap/cjtrep01.bmp
+Office51/template/wizard/bitmap/cjtrep02.bmp
+Office51/template/wizard/bitmap/cjtrep04.bmp
+Office51/template/wizard/bitmap/cjtrep05.bmp
+Office51/template/wizard/bitmap/cjtrep06.bmp
+Office51/template/wizard/bitmap/cjtrep07.bmp
+Office51/template/wizard/bitmap/cjtrep08.bmp
+Office51/template/wizard/bitmap/cjtrep09.bmp
+Office51/template/wizard/bitmap/db00.bmp
+Office51/template/wizard/bitmap/db01.bmp
+Office51/template/wizard/bitmap/db02.bmp
+Office51/template/wizard/bitmap/db03.bmp
+Office51/template/wizard/bitmap/db04.bmp
+Office51/template/wizard/bitmap/db05.bmp
+Office51/template/wizard/bitmap/db06.bmp
+Office51/template/wizard/bitmap/dbpg1.bmp
+Office51/template/wizard/bitmap/dbpg2.bmp
+Office51/template/wizard/bitmap/dbt01.bmp
+Office51/template/wizard/bitmap/dbt02.bmp
+Office51/template/wizard/bitmap/dbt03.bmp
+Office51/template/wizard/bitmap/dbt04.bmp
+Office51/template/wizard/bitmap/dbt05.bmp
+Office51/template/wizard/bitmap/dbt06.bmp
+Office51/template/wizard/bitmap/end.bmp
+Office51/template/wizard/bitmap/excelin.bmp
+Office51/template/wizard/bitmap/excelout.bmp
+Office51/template/wizard/bitmap/france.bmp
+Office51/template/wizard/bitmap/inet01.bmp
+Office51/template/wizard/bitmap/inet02.bmp
+Office51/template/wizard/bitmap/inet03.bmp
+Office51/template/wizard/bitmap/inet04a.bmp
+Office51/template/wizard/bitmap/inet04b.bmp
+Office51/template/wizard/bitmap/inet05.bmp
+Office51/template/wizard/bitmap/inet06a.bmp
+Office51/template/wizard/bitmap/inet06b.bmp
+Office51/template/wizard/bitmap/inet06c.bmp
+Office51/template/wizard/bitmap/inet07.bmp
+Office51/template/wizard/bitmap/inet09.bmp
+Office51/template/wizard/bitmap/inet11.bmp
+Office51/template/wizard/bitmap/italia.bmp
+Office51/template/wizard/bitmap/nedland.bmp
+Office51/template/wizard/bitmap/portugal.bmp
+Office51/template/wizard/bitmap/powerin.bmp
+Office51/template/wizard/bitmap/powerout.bmp
+Office51/template/wizard/bitmap/progress.bmp
+Office51/template/wizard/bitmap/spain.bmp
+Office51/template/wizard/bitmap/ss01.bmp
+Office51/template/wizard/bitmap/ss02.bmp
+Office51/template/wizard/bitmap/ss03.bmp
+Office51/template/wizard/bitmap/ss04.bmp
+Office51/template/wizard/bitmap/ss06.bmp
+Office51/template/wizard/bitmap/ss07.bmp
+Office51/template/wizard/bitmap/ss08.bmp
+Office51/template/wizard/bitmap/ss09.bmp
+Office51/template/wizard/bitmap/ss10.bmp
+Office51/template/wizard/bitmap/summary.bmp
+Office51/template/wizard/bitmap/sweden.bmp
+Office51/template/wizard/bitmap/usa.bmp
+Office51/template/wizard/bitmap/welcome.bmp
+Office51/template/wizard/bitmap/wordin.bmp
+Office51/template/wizard/bitmap/wordout.bmp
+Office51/template/wizard/db01.vor
+Office51/template/wizard/db02.vor
+Office51/template/wizard/db03.vor
+Office51/template/wizard/db04.vor
+Office51/template/wizard/db05.vor
+Office51/template/wizard/db06.vor
+Office51/template/wizard/dbform.vor
+Office51/template/wizard/prnchaos.vor
+Office51/template/wizard/prnmail.vor
+Office51/template/wizard/repblock.vor
+Office51/template/wizard/repclmn.vor
+Office51/template/wizard/repleft1.vor
+Office51/template/wizard/repleft2.vor
+Office51/template/wizard/repnrml.vor
+Office51/template/wizard/repoutl1.vor
+Office51/template/wizard/repoutl2.vor
+Office51/template/wizard/repstep.vor
+Office51/template/wizard/rplymail.vor
+Office51/template/wizard/rplytext.vor
+Office51/template/wizard/rpst01.vor
+Office51/template/wizard/rpst02.vor
+Office51/template/wizard/rpst03.vor
+Office51/template/wizard/rpst04.vor
+Office51/template/wizard/template.vor
+Office51/template/wizard/webc001.vor
+Office51/template/wizard/webc002.vor
+Office51/template/wizard/webc003.vor
+Office51/template/wizard/webc004.vor
+Office51/template/wizard/webc005.vor
+Office51/template/wizard/webc006.vor
+Office51/template/wizard/webc007.vor
+Office51/template/wizard/webc008.vor
+Office51/template/wizard/webc009.vor
+Office51/template/wizard/webs001.vor
+Office51/template/wizard/webs002.vor
+Office51/template/wizard/webs003.vor
+Office51/template/wizard/webs004.vor
+Office51/template/wizard/webs005.vor
+Office51/template/wizard/webs006.vor
+Office51/template/wizard/webs007.vor
+Office51/template/wizard/webs008.vor
+Office51/template/wizard/webs009.vor
+Office51/template/wizard/webs010.vor
+Office51/template/wizard/webs011.vor
+Office51/template/wizard/webs012.vor
+Office51/template/wizard/webs013.vor
+Office51/template/wizard/webs014.vor
+Office51/template/wizard/webs015.vor
+Office51/template/wizard/webs016.vor
+Office51/template/wizard/wizagn1.vor
+Office51/template/wizard/wizagn2.vor
+Office51/template/wizard/wizagn3.vor
+Office51/template/wizard/wizbrf1.vor
+Office51/template/wizard/wizbrf2.vor
+Office51/template/wizard/wizbrf3.vor
+Office51/template/wizard/wizfax1.vor
+Office51/template/wizard/wizfax2.vor
+Office51/template/wizard/wizfax3.vor
+Office51/template/wizard/wizmem1.vor
+Office51/template/wizard/wizmem2.vor
+Office51/template/wizard/wizmem3.vor
+Office51/template/html/html.vor
+Office51/template/html/htmlcolo.vor
+Office51/template/html/htmlcont.vor
+Office51/template/sfx.tlx
+Office51/template/educate/diploma.vor
+Office51/template/educate/paper.vor
+Office51/template/educate/timetabl.vor
+Office51/template/educate/scientfc.vor
+Office51/template/forms/expenses.vor
+Office51/template/forms/gnrlsale.vor
+Office51/template/forms/intrnlnt.vor
+Office51/template/forms/leporell.vor
+Office51/template/forms/notes.vor
+Office51/template/forms/notes2.vor
+Office51/template/forms/phonenot.vor
+Office51/template/misc/book.vor
+Office51/template/misc/giftcert.vor
+Office51/template/misc/newslttr.vor
+Office51/template/misc/calendar.vor
+Office51/template/misc/schedule.vor
+Office51/template/misc/cassette.vor
+Office51/template/misc/cd.vor
+Office51/template/misc/zip.vor
+Office51/template/officorr/faxcont.vor
+Office51/template/officorr/faxeleg.vor
+Office51/template/officorr/faxprof.vor
+Office51/template/officorr/ltrcont.vor
+Office51/template/officorr/ltreleg.vor
+Office51/template/officorr/ltrprof.vor
+Office51/template/officorr/memcont.vor
+Office51/template/officorr/memeleg.vor
+Office51/template/officorr/memprof.vor
+Office51/template/offimisc/deliver.vor
+Office51/template/offimisc/invoice.vor
+Office51/template/offimisc/mincont.vor
+Office51/template/offimisc/mineleg.vor
+Office51/template/offimisc/minprof.vor
+Office51/template/offimisc/prsprof.vor
+Office51/template/offimisc/report.vor
+Office51/template/personal/currvita.vor
+Office51/template/personal/envelope.vor
+Office51/template/personal/faxfrml.vor
+Office51/template/personal/faxpriv.vor
+Office51/template/personal/ltrfrml.vor
+Office51/template/personal/ltrpriv.vor
+Office51/template/personal/visit.vor
+Office51/template/finance/budget.vor
+Office51/template/finance/carfince.vor
+Office51/template/finance/carmoney.vor
+Office51/template/finance/depot.vor
+Office51/template/finance/journal.vor
+Office51/template/finance/loancalc.vor
+Office51/template/layout/1997.vor
+Office51/template/layout/1998.vor
+Office51/template/layout/1999.vor
+Office51/template/layout/2000.vor
+Office51/template/layout/2buttons.vor
+Office51/template/layout/america.vor
+Office51/template/layout/blublack.vor
+Office51/template/layout/blue.vor
+Office51/template/layout/bluebtns.vor
+Office51/template/layout/bluegray.vor
+Office51/template/layout/bluetube.vor
+Office51/template/layout/blutitle.vor
+Office51/template/layout/chocolat.vor
+Office51/template/layout/clouds.vor
+Office51/template/layout/europe.vor
+Office51/template/layout/film.vor
+Office51/template/layout/fotoshow.vor
+Office51/template/layout/goldstar.vor
+Office51/template/layout/liteblue.vor
+Office51/template/layout/marble.vor
+Office51/template/layout/metal.vor
+Office51/template/layout/notes.vor
+Office51/template/layout/orange.vor
+Office51/template/layout/purple.vor
+Office51/template/layout/rainbow.vor
+Office51/template/layout/redwhite.vor
+Office51/template/layout/star.vor
+Office51/template/layout/sun.vor
+Office51/template/layout/sunset.vor
+Office51/template/layout/suprnova.vor
+Office51/template/layout/triangle.vor
+Office51/template/layout/turqgrad.vor
+Office51/template/layout/turquois.vor
+Office51/template/layout/undrwatr.vor
+Office51/template/layout/violet.vor
+Office51/template/layout/watrdrop.vor
+Office51/template/layout/whiteblu.vor
+Office51/template/layout/whiturqs.vor
+Office51/template/layout/winter.vor
+Office51/template/layout/world.vor
+Office51/template/presnt/bad.vor
+Office51/template/presnt/branche.vor
+Office51/template/presnt/concept.vor
+Office51/template/presnt/finance.vor
+Office51/template/presnt/ideas.vor
+Office51/template/presnt/info.vor
+Office51/template/presnt/market.vor
+Office51/template/presnt/meeting.vor
+Office51/template/presnt/newemplo.vor
+Office51/template/presnt/novelty.vor
+Office51/template/presnt/pres.vor
+Office51/template/presnt/project.vor
+Office51/template/presnt/prorep.vor
+Office51/template/presnt/report.vor
+Office51/template/presnt/sell.vor
+Office51/template/presnt/standard.vor
+Office51/template/presnt/strategy.vor
+Office51/template/presnt/team.vor
+Office51/template/presnt/tech.vor
+Office51/template/presnt/training.vor
+Office51/Desktop/psetup.url
+Office51/Desktop/mail.url
+Office51/Desktop/staroffi.url
+Office51/Desktop/sun.url
+Office51/Desktop/tasks.url
+Office51/Desktop/events.url
+Office51/Desktop/writer.url
+Office51/Desktop/web.url
+Office51/Desktop/impress.url
+Office51/Desktop/calc.url
+Office51/Desktop/draw.url
+Office51/kde/applnk/SPAdmin.kdelnk
+Office51/kde/applnk/StarOffice.kdelnk
+Office51/kde/applnk/Setup.kdelnk
+Office51/kde/icons/mini/html.xpm
+Office51/kde/icons/mini/sdf.xpm
+Office51/kde/icons/mini/sds.xpm
+Office51/kde/icons/mini/psetup.xpm
+Office51/kde/icons/mini/sdc.xpm
+Office51/kde/icons/mini/sdd.xpm
+Office51/kde/icons/mini/sdw.xpm
+Office51/kde/icons/mini/setup.xpm
+Office51/kde/icons/mini/so.xpm
+Office51/kde/icons/mini/smf.xpm
+Office51/kde/icons/mini/sgl.xpm
+Office51/kde/icons/mini/sda.xpm
+Office51/kde/icons/mini/sch.xpm
+Office51/kde/icons/mini/htm.xpm
+Office51/kde/icons/html.xpm
+Office51/kde/icons/sdf.xpm
+Office51/kde/icons/sds.xpm
+Office51/kde/icons/sdw.xpm
+Office51/kde/icons/psetup.xpm
+Office51/kde/icons/sdc.xpm
+Office51/kde/icons/sdd.xpm
+Office51/kde/icons/setup.xpm
+Office51/kde/icons/so.xpm
+Office51/kde/icons/smf.xpm
+Office51/kde/icons/sgl.xpm
+Office51/kde/icons/sda.xpm
+Office51/kde/icons/sch.xpm
+Office51/kde/icons/htm.xpm
+Office51/kde/mimelnk/application/x-sdf.kdelnk
+Office51/kde/mimelnk/application/x-scalc.kdelnk
+Office51/kde/mimelnk/application/x-sds.kdelnk
+Office51/kde/mimelnk/application/x-sdraw.kdelnk
+Office51/kde/mimelnk/application/x-swriter.kdelnk
+Office51/kde/mimelnk/application/x-smf.kdelnk
+Office51/kde/mimelnk/application/x-sgl.kdelnk
+Office51/kde/mimelnk/application/x-sda.kdelnk
+Office51/kde/mimelnk/text/html.kdelnk
+Office51/kino/ende.bmp
+Office51/kino/allgemein.bmp
+Office51/kino/base.bmp
+Office51/kino/calc.bmp
+Office51/kino/desktop.bmp
+Office51/kino/register.bmp
+Office51/kino/schedule.bmp
+Office51/kino/writer.bmp
+Office51/kino/impress.bmp
+Office51/kino/draw.bmp
+Office51/cde/staroffice.dt
+Office51/cde/soffice1.fp
+Office51/wordbook/stardiv.dic
+Office51/xp3/ppds/AC500503.PS
+Office51/xp3/ppds/ALJII523.PS
+Office51/xp3/ppds/AMCHR518.PS
+Office51/xp3/ppds/APLWIIf1.PS
+Office51/xp3/ppds/APLWIIg1.PS
+Office51/xp3/ppds/APLWNTR1.PS
+Office51/xp3/ppds/APPLE230.PS
+Office51/xp3/ppds/APPLE380.PS
+Office51/xp3/ppds/APPLE422.PS
+Office51/xp3/ppds/APS08522.PS
+Office51/xp3/ppds/APS12522.PS
+Office51/xp3/ppds/APS26522.PS
+Office51/xp3/ppds/APS80522.PS
+Office51/xp3/ppds/AP_NTXJ1.PS
+Office51/xp3/ppds/AST__470.PS
+Office51/xp3/ppds/A_PNT518.PS
+Office51/xp3/ppds/CG94_493.PS
+Office51/xp3/ppds/CNLBP4_1.PS
+Office51/xp3/ppds/CNLBP8R1.PS
+Office51/xp3/ppds/CNLBP8T1.PS
+Office51/xp3/ppds/CNLBP8_1.PS
+Office51/xp3/ppds/CN_500J1.PS
+Office51/xp3/ppds/CN_500_1.PS
+Office51/xp3/ppds/CPPMQ151.PS
+Office51/xp3/ppds/CPPMQ201.PS
+Office51/xp3/ppds/DATAP462.PS
+Office51/xp3/ppds/DCD11501.PS
+Office51/xp3/ppds/DCD21501.PS
+Office51/xp3/ppds/DCD22501.PS
+Office51/xp3/ppds/DCLPS201.PS
+Office51/xp3/ppds/DCLPS401.PS
+Office51/xp3/ppds/DPL15601.PS
+Office51/xp3/ppds/DPLZ9601.PS
+Office51/xp3/ppds/DP_US470.PS
+Office51/xp3/ppds/EP826051.PS
+Office51/xp3/ppds/EPL3KF21.PS
+Office51/xp3/ppds/EPL3KF51.PS
+Office51/xp3/ppds/EPL75523.PS
+Office51/xp3/ppds/F71RX503.PS
+Office51/xp3/ppds/GCBL4921.PS
+Office51/xp3/ppds/GCBL5141.PS
+Office51/xp3/ppds/GCBLP2S1.PS
+Office51/xp3/ppds/GCBLP2_1.PS
+Office51/xp3/ppds/GCBLPEL1.PS
+Office51/xp3/ppds/GENERIC.PS
+Office51/xp3/ppds/GSGL8001.PS
+Office51/xp3/ppds/HP3SI.PCL
+Office51/xp3/ppds/HP3SI.PS
+Office51/xp3/ppds/HP3SI523.PS
+Office51/xp3/ppds/HP4L.PCL
+Office51/xp3/ppds/HP4L.PS
+Office51/xp3/ppds/HP4M.PCL
+Office51/xp3/ppds/HP4SI.PCL
+Office51/xp3/ppds/HP4SI.PS
+Office51/xp3/ppds/HPDJ1200.PCL
+Office51/xp3/ppds/HPDJ1200.PS
+Office51/xp3/ppds/HPII.PCL
+Office51/xp3/ppds/HPIID.PCL
+Office51/xp3/ppds/HPIID522.PS
+Office51/xp3/ppds/HPIII.PCL
+Office51/xp3/ppds/HPIII.PS
+Office51/xp3/ppds/HPIII522.PS
+Office51/xp3/ppds/HPIIID.PCL
+Office51/xp3/ppds/HPIIIP.PCL
+Office51/xp3/ppds/HPIIP.PCL
+Office51/xp3/ppds/HPIIP.PS
+Office51/xp3/ppds/HPIIP522.PS
+Office51/xp3/ppds/HPIV.PCL
+Office51/xp3/ppds/HPIV.PS
+Office51/xp3/ppds/HPIVC.PCL
+Office51/xp3/ppds/HPLJ_31.PS
+Office51/xp3/ppds/HPLJ_3D1.PS
+Office51/xp3/ppds/HPLJ_3P1.PS
+Office51/xp3/ppds/HPPJXL31.PCL
+Office51/xp3/ppds/HPPJXL31.PS
+Office51/xp3/ppds/HP_3D522.PS
+Office51/xp3/ppds/HP_3P522.PS
+Office51/xp3/ppds/IB4029A1.PS
+Office51/xp3/ppds/IB4029B1.PS
+Office51/xp3/ppds/IBM17523.PS
+Office51/xp3/ppds/IBM20470.PS
+Office51/xp3/ppds/IBM30505.PS
+Office51/xp3/ppds/IBM39523.PS
+Office51/xp3/ppds/KDCOLOR1.PS
+Office51/xp3/ppds/L100_425.PS
+Office51/xp3/ppds/L200_471.PS
+Office51/xp3/ppds/L200_493.PS
+Office51/xp3/ppds/L300_471.PS
+Office51/xp3/ppds/L300_493.PS
+Office51/xp3/ppds/L330_523.PS
+Office51/xp3/ppds/L3330523.PS
+Office51/xp3/ppds/L500_493.PS
+Office51/xp3/ppds/L530_523.PS
+Office51/xp3/ppds/L5330523.PS
+Office51/xp3/ppds/LEX4039.PCL
+Office51/xp3/ppds/LEX4039.PS
+Office51/xp3/ppds/LEX4047.PCL
+Office51/xp3/ppds/LEXOPTRA.PCL
+Office51/xp3/ppds/LEXOPTRA.PS
+Office51/xp3/ppds/LH_630_1.PS
+Office51/xp3/ppds/LWNTX470.PS
+Office51/xp3/ppds/LWNTX518.PS
+Office51/xp3/ppds/LWNT_470.PS
+Office51/xp3/ppds/MOIM1201.PS
+Office51/xp3/ppds/Mono_522.PS
+Office51/xp3/ppds/N2090522.PS
+Office51/xp3/ppds/N2290520.PS
+Office51/xp3/ppds/N890X505.PS
+Office51/xp3/ppds/N890_470.PS
+Office51/xp3/ppds/NC95FAX1.PS
+Office51/xp3/ppds/NC97FAX1.PS
+Office51/xp3/ppds/NCCPS401.PS
+Office51/xp3/ppds/NCCPS801.PS
+Office51/xp3/ppds/NCOL_519.PS
+Office51/xp3/ppds/NCS29901.PS
+Office51/xp3/ppds/NCSW_951.PS
+Office51/xp3/ppds/NC_N4F21.PS
+Office51/xp3/ppds/NC_N4F51.PS
+Office51/xp3/ppds/NP20.PS
+Office51/xp3/ppds/NPCLPLUS.PS
+Office51/xp3/ppds/NX_NLP_1.PS
+Office51/xp3/ppds/O5242503.PS
+Office51/xp3/ppds/OK801PF1.PS
+Office51/xp3/ppds/OL830525.PS
+Office51/xp3/ppds/SPRN.PS
+Office51/xp3/ppds/OL840518.PS
+Office51/xp3/ppds/P4455514.PS
+Office51/xp3/ppds/Q2200523.PS
+Office51/xp3/ppds/Q2210523.PS
+Office51/xp3/ppds/Q2220523.PS
+Office51/xp3/ppds/Q810T517.PS
+Office51/xp3/ppds/Q820T517.PS
+Office51/xp3/ppds/Q820_517.PS
+Office51/xp3/ppds/QCS10503.PS
+Office51/xp3/ppds/QCS20503.PS
+Office51/xp3/ppds/QCS30503.PS
+Office51/xp3/ppds/QM1700_1.PS
+Office51/xp3/ppds/QM2000_1.PS
+Office51/xp3/ppds/QM815MR1.PS
+Office51/xp3/ppds/QM825MR1.PS
+Office51/xp3/ppds/QMPS4101.PS
+Office51/xp3/ppds/QMPS8151.PS
+Office51/xp3/ppds/QMPS8251.PS
+Office51/xp3/ppds/QMS81470.PS
+Office51/xp3/ppds/QMS8P461.PS
+Office51/xp3/ppds/QMS8_461.PS
+Office51/xp3/ppds/QMSCS494.PS
+Office51/xp3/ppds/QMSJP461.PS
+Office51/xp3/ppds/QMSJ_461.PS
+Office51/xp3/ppds/QUME_470.PS
+Office51/xp3/ppds/R6000505.PS
+Office51/xp3/ppds/S5232503.PS
+Office51/xp3/ppds/S746J522.PS
+Office51/xp3/ppds/SCG20522.PS
+Office51/xp3/ppds/SGENPRT.PS
+Office51/xp3/ppds/T1513470.PS
+Office51/xp3/ppds/T1535470.PS
+Office51/xp3/ppds/TI08_450.PS
+Office51/xp3/ppds/TITRB161.PS
+Office51/xp3/ppds/TITRBO61.PS
+Office51/xp3/ppds/TITRBO91.PS
+Office51/xp3/ppds/TIm17521.PS
+Office51/xp3/ppds/TIm35521.PS
+Office51/xp3/ppds/TIx17521.PS
+Office51/xp3/ppds/TIx35521.PS
+Office51/xp3/ppds/TKPH2SD1.PS
+Office51/xp3/ppds/TKPHZ2J1.PS
+Office51/xp3/ppds/TKPHZ3J1.PS
+Office51/xp3/ppds/TKPHZR21.PS
+Office51/xp3/ppds/TKPHZR22.PS
+Office51/xp3/ppds/TKPHZR31.PS
+Office51/xp3/ppds/TKPHZR32.PS
+Office51/xp3/ppds/TKPXE171.PS
+Office51/xp3/ppds/TKPXE391.PS
+Office51/xp3/ppds/U9415470.PS
+Office51/xp3/ppds/UNI17521.PS
+Office51/xp3/ppds/UNI39521.PS
+Office51/xp3/ppds/V5334522.PS
+Office51/xp3/ppds/VT42P522.PS
+Office51/xp3/ppds/VT43P522.PS
+Office51/xp3/ppds/VT4510A1.PS
+Office51/xp3/ppds/VT4530A1.PS
+Office51/xp3/ppds/VT4530B1.PS
+Office51/xp3/ppds/VT4530C1.PS
+Office51/xp3/ppds/VT4533B1.PS
+Office51/xp3/ppds/VT4533C1.PS
+Office51/xp3/ppds/VT453EA1.PS
+Office51/xp3/ppds/VT453EB1.PS
+Office51/xp3/ppds/VT4550A1.PS
+Office51/xp3/ppds/VT4550B1.PS
+Office51/xp3/ppds/VT4550C1.PS
+Office51/xp3/ppds/VT4551A1.PS
+Office51/xp3/ppds/VT4563A1.PS
+Office51/xp3/ppds/VT4563B1.PS
+Office51/xp3/ppds/VT49901.PS
+Office51/xp3/ppds/VT4L3001.PS
+Office51/xp3/ppds/VT4L3301.PS
+Office51/xp3/ppds/VT4L5001.PS
+Office51/xp3/ppds/VT4L5301.PS
+Office51/xp3/ppds/VT530522.PS
+Office51/xp3/ppds/VT550522.PS
+Office51/xp3/ppds/VT600P1.PS
+Office51/xp3/ppds/VT600W1.PS
+Office51/xp3/ppds/VT60P480.PS
+Office51/xp3/ppds/VT60W480.PS
+Office51/xp3/ppds/XRDOCU11.PS
+Office51/xp3/ppds/XRDT0851.PS
+Office51/xp3/ppds/XRDT0901.PS
+Office51/xp3/ppds/XRDT1351.PS
+Office51/xp3/pssoftfonts/ariob___.pfb
+Office51/xp3/pssoftfonts/arion___.pfb
+Office51/xp3/pssoftfonts/chevn___.pfb
+Office51/xp3/pssoftfonts/chevon__.pfb
+Office51/xp3/pssoftfonts/congb___.pfb
+Office51/xp3/pssoftfonts/congn___.pfb
+Office51/xp3/pssoftfonts/helmb___.pfb
+Office51/xp3/pssoftfonts/helmbi__.pfb
+Office51/xp3/pssoftfonts/helmcb__.pfb
+Office51/xp3/pssoftfonts/helmcbi_.pfb
+Office51/xp3/pssoftfonts/helmci__.pfb
+Office51/xp3/pssoftfonts/helmcn__.pfb
+Office51/xp3/pssoftfonts/helmi___.pfb
+Office51/xp3/pssoftfonts/helmn___.pfb
+Office51/xp3/pssoftfonts/starbats.pfb
+Office51/xp3/pssoftfonts/starmath.pfb
+Office51/xp3/pssoftfonts/timmb___.pfb
+Office51/xp3/pssoftfonts/timmbi__.pfb
+Office51/xp3/pssoftfonts/timmi___.pfb
+Office51/xp3/pssoftfonts/timmn___.pfb
+Office51/xp3/fontmetrics/afm/AGaramond-Bold.afm
+Office51/xp3/fontmetrics/afm/AvantGarde-Book.afm
+Office51/xp3/fontmetrics/afm/AvantGarde-BookOblique.afm
+Office51/xp3/fontmetrics/afm/AvantGarde-Demi.afm
+Office51/xp3/fontmetrics/afm/AvantGarde-DemiOblique.afm
+Office51/xp3/fontmetrics/afm/Bookman-Demi.afm
+Office51/xp3/fontmetrics/afm/Bookman-DemiItalic.afm
+Office51/xp3/fontmetrics/afm/Bookman-Light.afm
+Office51/xp3/fontmetrics/afm/Bookman-LightItalic.afm
+Office51/xp3/fontmetrics/afm/Courier-Bold.afm
+Office51/xp3/fontmetrics/afm/Courier-BoldOblique.afm
+Office51/xp3/fontmetrics/afm/Courier-Oblique.afm
+Office51/xp3/fontmetrics/afm/Courier.afm
+Office51/xp3/fontmetrics/afm/GothicBBB-Medium-83pv-RKSJ-H.afm
+Office51/xp3/fontmetrics/afm/GothicBBB-Medium.Roman.afm
+Office51/xp3/fontmetrics/afm/Helvetica.afm
+Office51/xp3/fontmetrics/afm/Helvetica-Bold.afm
+Office51/xp3/fontmetrics/afm/Helvetica-BoldOblique.afm
+Office51/xp3/fontmetrics/afm/Helvetica-Oblique.afm
+Office51/xp3/fontmetrics/afm/NewBaskerville-Bold.afm
+Office51/xp3/fontmetrics/afm/NewBaskerville-BoldItalic.afm
+Office51/xp3/fontmetrics/afm/NewBaskerville-Italic.afm
+Office51/xp3/fontmetrics/afm/NewBaskerville-Roman.afm
+Office51/xp3/fontmetrics/afm/NewCenturySchlbk-Bold.afm
+Office51/xp3/fontmetrics/afm/NewCenturySchlbk-BoldItalic.afm
+Office51/xp3/fontmetrics/afm/NewCenturySchlbk-Italic.afm
+Office51/xp3/fontmetrics/afm/NewCenturySchlbk-Roman.afm
+Office51/xp3/fontmetrics/afm/Palatino-Bold.afm
+Office51/xp3/fontmetrics/afm/Palatino-BoldItalic.afm
+Office51/xp3/fontmetrics/afm/Palatino-Italic.afm
+Office51/xp3/fontmetrics/afm/Palatino-Roman.afm
+Office51/xp3/fontmetrics/afm/Ryumin-Light-83pv-RKSJ-H.afm
+Office51/xp3/fontmetrics/afm/Ryumin-Light.Roman.afm
+Office51/xp3/fontmetrics/afm/Symbol.afm
+Office51/xp3/fontmetrics/afm/Times-Bold.afm
+Office51/xp3/fontmetrics/afm/Times-BoldItalic.afm
+Office51/xp3/fontmetrics/afm/Times-Italic.afm
+Office51/xp3/fontmetrics/afm/Times-Roman.afm
+Office51/xp3/fontmetrics/afm/Windsor.afm
+Office51/xp3/fontmetrics/afm/ZapfChancery-MediumItalic.afm
+Office51/xp3/fontmetrics/afm/ZapfDingbats.afm
+Office51/xp3/fontmetrics/afm/ariob___.afm
+Office51/xp3/fontmetrics/afm/arion___.afm
+Office51/xp3/fontmetrics/afm/chevn___.afm
+Office51/xp3/fontmetrics/afm/chevon__.afm
+Office51/xp3/fontmetrics/afm/congb___.afm
+Office51/xp3/fontmetrics/afm/congn___.afm
+Office51/xp3/fontmetrics/afm/helmb___.afm
+Office51/xp3/fontmetrics/afm/helmbi__.afm
+Office51/xp3/fontmetrics/afm/helmcb__.afm
+Office51/xp3/fontmetrics/afm/helmcbi_.afm
+Office51/xp3/fontmetrics/afm/helmci__.afm
+Office51/xp3/fontmetrics/afm/helmcn__.afm
+Office51/xp3/fontmetrics/afm/helmi___.afm
+Office51/xp3/fontmetrics/afm/helmn___.afm
+Office51/xp3/fontmetrics/afm/starbats.afm
+Office51/xp3/fontmetrics/afm/starmath.afm
+Office51/xp3/fontmetrics/afm/timmb___.afm
+Office51/xp3/fontmetrics/afm/timmbi__.afm
+Office51/xp3/fontmetrics/afm/timmi___.afm
+Office51/xp3/fontmetrics/afm/timmn___.afm
+Office51/xp3/fontmetrics/tfm/9NB00041.TFM
+Office51/xp3/fontmetrics/tfm/9NB00042.TFM
+Office51/xp3/fontmetrics/tfm/9NB00050.TFM
+Office51/xp3/fontmetrics/tfm/9NB00153.TFM
+Office51/xp3/fontmetrics/tfm/9NB00292.TFM
+Office51/xp3/fontmetrics/tfm/9NB00491.TFM
+Office51/xp3/fontmetrics/tfm/9NB01869.TFM
+Office51/xp3/fontmetrics/tfm/9NB02995.TFM
+Office51/xp3/fontmetrics/tfm/9NB03902.TFM
+Office51/xp3/fontmetrics/tfm/9NB03903.TFM
+Office51/xp3/fontmetrics/tfm/9NB04827.TFM
+Office51/xp3/fontmetrics/tfm/9NB05436.TFM
+Office51/xp3/fontmetrics/tfm/9NB05447.TFM
+Office51/xp3/fontmetrics/tfm/9NB05448.TFM
+Office51/xp3/fontmetrics/tfm/9NB05705.TFM
+Office51/xp3/fontmetrics/tfm/9NB06334.TFM
+Office51/xp3/fontmetrics/tfm/9NB06335.TFM
+Office51/xp3/fontmetrics/tfm/9NB09894.TFM
+Office51/xp3/fontmetrics/tfm/9NB09961.TFM
+Office51/xp3/fontmetrics/tfm/9NB11478.TFM
+Office51/xp3/fontmetrics/tfm/9NB11538.TFM
+Office51/xp3/fontmetrics/tfm/9NB11942.TFM
+Office51/xp3/fontmetrics/tfm/9NB12382.TFM
+Office51/xp3/fontmetrics/tfm/9NB14604.TFM
+Office51/xp3/fontmetrics/tfm/9NB14771.TFM
+Office51/xp3/fontmetrics/tfm/9NB15724.TFM
+Office51/xp3/fontmetrics/tfm/9NB16827.TFM
+Office51/xp3/fontmetrics/tfm/9NB17035.TFM
+Office51/xp3/fontmetrics/tfm/9NB17421.TFM
+Office51/xp3/fontmetrics/tfm/9NB17673.TFM
+Office51/xp3/fontmetrics/tfm/9NB18467.TFM
+Office51/xp3/fontmetrics/tfm/9NB18468.TFM
+Office51/xp3/fontmetrics/tfm/9NB18716.TFM
+Office51/xp3/fontmetrics/tfm/9NB18717.TFM
+Office51/xp3/fontmetrics/tfm/9NB19169.TFM
+Office51/xp3/fontmetrics/tfm/9NB19170.TFM
+Office51/xp3/fontmetrics/tfm/9NB19718.TFM
+Office51/xp3/fontmetrics/tfm/9NB19895.TFM
+Office51/xp3/fontmetrics/tfm/9NB19896.TFM
+Office51/xp3/fontmetrics/tfm/9NB19912.TFM
+Office51/xp3/fontmetrics/tfm/9NB21726.TFM
+Office51/xp3/fontmetrics/tfm/9NB21727.TFM
+Office51/xp3/fontmetrics/tfm/9NB23281.TFM
+Office51/xp3/fontmetrics/tfm/9NB23811.TFM
+Office51/xp3/fontmetrics/tfm/9NB24464.TFM
+Office51/xp3/fontmetrics/tfm/9NB25667.TFM
+Office51/xp3/fontmetrics/tfm/9NB26299.TFM
+Office51/xp3/fontmetrics/tfm/9NB26500.TFM
+Office51/xp3/fontmetrics/tfm/9NB26501.TFM
+Office51/xp3/fontmetrics/tfm/9NB26962.TFM
+Office51/xp3/fontmetrics/tfm/9NB28145.TFM
+Office51/xp3/fontmetrics/tfm/9NB28703.TFM
+Office51/xp3/fontmetrics/tfm/9NB29358.TFM
+Office51/xp3/fontmetrics/tfm/9NB30333.TFM
+Office51/xp3/fontmetrics/tfm/9NB31322.TFM
+Office51/xp3/fontmetrics/tfm/9NB32391.TFM
+Office51/xp3/fontmetrics/tfm/CRB14E1A.TFM
+Office51/xp3/fontmetrics/tfm/CRB14LGA.TFM
+Office51/xp3/fontmetrics/tfm/CRB14PCA.TFM
+Office51/xp3/fontmetrics/tfm/CRB14PDA.TFM
+Office51/xp3/fontmetrics/tfm/CRB14PMA.TFM
+Office51/xp3/fontmetrics/tfm/CRB14R8A.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CE1A.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CLGA.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CLGC.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CPCA.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CPDA.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CPMA.TFM
+Office51/xp3/fontmetrics/tfm/CRB1CR8A.TFM
+Office51/xp3/fontmetrics/tfm/CRI14E1A.TFM
+Office51/xp3/fontmetrics/tfm/CRI14LGA.TFM
+Office51/xp3/fontmetrics/tfm/CRI14PCA.TFM
+Office51/xp3/fontmetrics/tfm/CRI14PDA.TFM
+Office51/xp3/fontmetrics/tfm/CRI14PMA.TFM
+Office51/xp3/fontmetrics/tfm/CRI14R8A.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CE1A.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CLGA.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CPCA.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CPDA.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CPMA.TFM
+Office51/xp3/fontmetrics/tfm/CRI1CR8A.TFM
+Office51/xp3/fontmetrics/tfm/CRR14E1A.TFM
+Office51/xp3/fontmetrics/tfm/CRR14LGA.TFM
+Office51/xp3/fontmetrics/tfm/CRR14PCA.TFM
+Office51/xp3/fontmetrics/tfm/CRR14PDA.TFM
+Office51/xp3/fontmetrics/tfm/CRR14PMA.TFM
+Office51/xp3/fontmetrics/tfm/CRR14R8A.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CE1A.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CLGA.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CPCA.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CPDA.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CPMA.TFM
+Office51/xp3/fontmetrics/tfm/CRR1CR8A.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YE1A.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YLGA.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YPCA.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YPDA.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YPMA.TFM
+Office51/xp3/fontmetrics/tfm/LPR0YR8A.TFM
+Office51/xp3/fontmetrics/tfm/TRB0000S.TFM
+Office51/xp3/fontmetrics/tfm/TRI0000S.TFM
+Office51/xp3/fontmetrics/tfm/TRJ0000S.TFM
+Office51/xp3/fontmetrics/tfm/TRR0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNA0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNB0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNC0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNF0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNH0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNI0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNJ0000S.TFM
+Office51/xp3/fontmetrics/tfm/UNR0000S.TFM
+Office51/xp3/fontmetrics/tfm/ZDR0000S.TFM
+Office51/xp3/Xpdefaults
+Office51/xp3/pclstd.fonts
+Office51/xp3/psstd.fonts
+Office51/xp3/rgb.txt
+Office51/xp3/xprinter.prolog
+Office51/filter/libicg517li.flt
+Office51/filter/libemp517li.flt
+Office51/filter/libipd517li.flt
+Office51/filter/libitg517li.flt
+Office51/filter/libips517li.flt
+Office51/filter/libeps517li.flt
+Office51/filter/libexp517li.flt
+Office51/filter/libera517li.flt
+Office51/filter/libira517li.flt
+Office51/filter/libepp517li.flt
+Office51/filter/libepb517li.flt
+Office51/filter/libipb517li.flt
+Office51/filter/libepg517li.flt
+Office51/filter/libegi517li.flt
+Office51/filter/libidx517li.flt
+Office51/filter/libicd517li.flt
+Office51/filter/libept517li.flt
+Office51/filter/libipt517li.flt
+Office51/filter/libeme517li.flt
+Office51/filter/libime517li.flt
+Office51/filter/libipx517li.flt
+Office51/filter/libepn517li.flt
+Office51/filter/libeti517li.flt
+Office51/filter/libiti517li.flt
+Office51/autotext/signatur.bau
+Office51/autotext/standard.bau
+Office51/autotext/template.bau
+Office51/bookmark/Java/boutique.url
+Office51/bookmark/Java/jars.url
+Office51/bookmark/Java/javasoft.url
+Office51/bookmark/Java/jconsole.url
+Office51/bookmark/Java/jsetupix.url
+Office51/bookmark/Java/jsystem.url
+Office51/bookmark/nsbook.url
+Office51/bookmark/staroffi.url
+Office51/bookmark/sun.url
+Office51/service/sschdled.bin
+Office51/LICENSE
+Office51/README
+Office51/l_soffice.xpm
+Office51/s_soffice.xpm
+Office51/libsk517li.so
+Office51/install-kde
+Office51/deinstall-kde
+Office51/01_hyph.dat
+Office51/01_spell.dat
+Office51/01_thes.dat
+Office51/44_hyph.dat
+Office51/44_spell.dat
+Office51/44_thes.dat
+Office51/49_hyph.dat
+Office51/49_spell.dat
+Office51/49_thes.dat
+Office51/install.ini
+Office51/instdb.ins
+Office51/instdb.ins.orig
+@dirrm Office51/fonts/type1
+@dirrm Office51/fonts/75dpi/bdf
+@dirrm Office51/fonts/75dpi
+@dirrm Office51/fonts
+@dirrm Office51/config/help
+@dirrm Office51/config/symbol
+@dirrm Office51/config/start
+@dirrm Office51/config/groups
+@dirrm Office51/config/new
+@dirrm Office51/config/settings
+@dirrm Office51/config/more
+@dirrm Office51/config/tasks
+@dirrm Office51/config/wizard
+@dirrm Office51/config/helpmenu
+@dirrm Office51/explorer
+@dirrm Office51/gallery/bullets
+@dirrm Office51/gallery/rulers
+@dirrm Office51/gallery/www-back
+@dirrm Office51/gallery/htmlexpo
+@dirrm Office51/gallery/sounds
+@dirrm Office51/gallery/clipart
+@dirrm Office51/gallery/flags
+@dirrm Office51/gallery/maps
+@dirrm Office51/gallery/photos
+@dirrm Office51/gallery/surface
+@dirrm Office51/gallery/symbols
+@dirrm Office51/gallery/www-anim
+@dirrm Office51/gallery/www-graf
+@dirrm Office51/gallery
+@dirrm Office51/help/${LANGNO}
+@dirrm Office51/help
+@dirrm Office51/lib
+@dirrm Office51/basic
+@dirrm Office51/template/wizard/bitmap
+@dirrm Office51/template/wizard
+@dirrm Office51/template/html
+@dirrm Office51/template/educate
+@dirrm Office51/template/forms
+@dirrm Office51/template/misc
+@dirrm Office51/template/officorr
+@dirrm Office51/template/offimisc
+@dirrm Office51/template/personal
+@dirrm Office51/template/finance
+@dirrm Office51/template/layout
+@dirrm Office51/template/presnt
+@dirrm Office51/template
+@dirrm Office51/Desktop
+@dirrm Office51/kde/applnk
+@dirrm Office51/kde/icons/mini
+@dirrm Office51/kde/icons
+@dirrm Office51/kde/mimelnk/application
+@dirrm Office51/kde/mimelnk/text
+@dirrm Office51/kde/mimelnk
+@dirrm Office51/kde
+@dirrm Office51/kino
+@dirrm Office51/cde
+@dirrm Office51/wordbook
+@dirrm Office51/xp3/ppds
+@dirrm Office51/xp3/pssoftfonts
+@dirrm Office51/xp3/fontmetrics/afm
+@dirrm Office51/xp3/fontmetrics/tfm
+@dirrm Office51/xp3/fontmetrics
+@dirrm Office51/xp3
+@dirrm Office51/filter
+@dirrm Office51/autotext
+@dirrm Office51/bookmark/Java
+@dirrm Office51/bookmark
+@dirrm Office51/service
+@dirrm Office51/config
+@dirrm Office51/bin
+@dirrm Office51/backup
+@dirrm Office51/store/trash
+@dirrm Office51/store
+@dirrm Office51/download
+@dirrm Office51/work
+@dirrm Office51
diff --git a/misc/staroffice/pkg/PLIST.01 b/misc/staroffice/pkg/PLIST.01
new file mode 100644
index 00000000000..8e578be5460
--- /dev/null
+++ b/misc/staroffice/pkg/PLIST.01
@@ -0,0 +1,141 @@
+@comment $NetBSD: PLIST.01,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+Office51/config/arrowhd.soe
+Office51/config/classic.sog
+Office51/config/dbbusin.def
+Office51/config/hatching.soh
+Office51/config/styles.sod
+Office51/config/dbpriv.def
+Office51/config/wizard/_65_qury.url
+Office51/config/wizard/_05_lttr.url
+Office51/config/wizard/_15_agnd.url
+Office51/config/wizard/_30_pres.url
+Office51/config/helpmenu/h100135.url
+Office51/explorer/Samples/Formulas/Annuities.smf
+Office51/explorer/Samples/Formulas/Cauchy.smf
+Office51/explorer/Samples/Formulas/ChemicalElement.smf
+Office51/explorer/Samples/Formulas/DefinitionStraightLine.smf
+Office51/explorer/Samples/Formulas/EffectiveAnnualInterestRate.smf
+Office51/explorer/Samples/Formulas/HamiltonOperator.smf
+Office51/explorer/Samples/Formulas/InvestmentReturns.smf
+Office51/explorer/Samples/Formulas/LawOfErrorPropagation.smf
+Office51/explorer/Samples/Formulas/Limes.smf
+Office51/explorer/Samples/Formulas/LinearRegression.smf
+Office51/explorer/Samples/Formulas/Maxwell.smf
+Office51/explorer/Samples/Formulas/ScalarProduct.smf
+Office51/explorer/Samples/Formulas/Sinus.smf
+Office51/explorer/Samples/Formulas/SquareRoot.smf
+Office51/explorer/Samples/Formulas/StandardDeviation.smf
+Office51/explorer/Samples/Formulas/VectorProduct.smf
+Office51/explorer/Samples/TextDocuments/Brochure.sdw
+Office51/explorer/Samples/TextDocuments/Chapters/Chapter1.sdw
+Office51/explorer/Samples/TextDocuments/Chapters/Chapter2.sdw
+Office51/explorer/Samples/TextDocuments/Chapters/Chapter3.sdw
+Office51/explorer/Samples/TextDocuments/Chapters/Glass.jpg
+Office51/explorer/Samples/TextDocuments/Chapters/Ham.jpg
+Office51/explorer/Samples/TextDocuments/Chapters/Strwbrry.jpg
+Office51/explorer/Samples/TextDocuments/Chapters/Tennis.jpg
+Office51/explorer/Samples/TextDocuments/Chapters/Villa1.jpg
+Office51/explorer/Samples/TextDocuments/Chapters/Villa2.jpg
+Office51/explorer/Samples/TextDocuments/CoverLetter.sdw
+Office51/explorer/Samples/TextDocuments/Flyers.sdw
+Office51/explorer/Samples/TextDocuments/Games.sdw
+Office51/explorer/Samples/TextDocuments/IceCreamMenu.sdw
+Office51/explorer/Samples/TextDocuments/Invitation.sdw
+Office51/explorer/Samples/TextDocuments/JobAd.sdw
+Office51/explorer/Samples/TextDocuments/LostDogNotice.sdw
+Office51/explorer/Samples/TextDocuments/Book.sgl
+Office51/explorer/Samples/TextDocuments/Homepage/about.gif
+Office51/explorer/Samples/TextDocuments/Homepage/about.html
+Office51/explorer/Samples/TextDocuments/Homepage/abouto.gif
+Office51/explorer/Samples/TextDocuments/Homepage/backgrnd.jpg
+Office51/explorer/Samples/TextDocuments/Homepage/bar.gif
+Office51/explorer/Samples/TextDocuments/Homepage/contact.gif
+Office51/explorer/Samples/TextDocuments/Homepage/contact.html
+Office51/explorer/Samples/TextDocuments/Homepage/contacto.gif
+Office51/explorer/Samples/TextDocuments/Homepage/coop.html
+Office51/explorer/Samples/TextDocuments/Homepage/empty.html
+Office51/explorer/Samples/TextDocuments/Homepage/hole.gif
+Office51/explorer/Samples/TextDocuments/Homepage/home.gif
+Office51/explorer/Samples/TextDocuments/Homepage/info.gif
+Office51/explorer/Samples/TextDocuments/Homepage/info.html
+Office51/explorer/Samples/TextDocuments/Homepage/leftbar.gif
+Office51/explorer/Samples/TextDocuments/Homepage/motor.html
+Office51/explorer/Samples/TextDocuments/Homepage/partnero.gif
+Office51/explorer/Samples/TextDocuments/Homepage/partners.gif
+Office51/explorer/Samples/TextDocuments/Homepage/partners.html
+Office51/explorer/Samples/TextDocuments/Homepage/producto.gif
+Office51/explorer/Samples/TextDocuments/Homepage/products.gif
+Office51/explorer/Samples/TextDocuments/Homepage/products.html
+Office51/explorer/Samples/TextDocuments/Homepage/question.gif
+Office51/explorer/Samples/TextDocuments/Homepage/question.html
+Office51/explorer/Samples/TextDocuments/Homepage/race.html
+Office51/explorer/Samples/TextDocuments/Homepage/recar.sdc
+Office51/explorer/Samples/TextDocuments/Homepage/soffice.gif
+Office51/explorer/Samples/TextDocuments/Homepage/start.html
+Office51/explorer/Samples/TextDocuments/Homepage/story.gif
+Office51/explorer/Samples/TextDocuments/Homepage/title.gif
+Office51/explorer/Samples/TextDocuments/Homepage.html
+Office51/explorer/Samples/Spreadsheets/Biorhythm.sdc
+Office51/explorer/Samples/Spreadsheets/Buffet.sdc
+Office51/explorer/Samples/Spreadsheets/Calculation.sdc
+Office51/explorer/Samples/Spreadsheets/DataAnalysis.sdc
+Office51/explorer/Samples/Spreadsheets/Euro-Converter.sdc
+Office51/explorer/Samples/Spreadsheets/Movie1.sdc
+Office51/explorer/Samples/Spreadsheets/Movie2.sdc
+Office51/explorer/Samples/Spreadsheets/Movie3.sdc
+Office51/explorer/Samples/Spreadsheets/OfficeAssociation.sdc
+Office51/explorer/Samples/Spreadsheets/Recar-Scenarios.sdc
+Office51/explorer/Samples/Spreadsheets/UnitConverter.sdc
+Office51/explorer/Samples/Presentations/Chess.sdd
+Office51/explorer/Samples/Presentations/HolidayPictures.sdd
+Office51/explorer/Samples/Presentations/Orgchart.sdd
+Office51/explorer/Samples/Presentations/Recar-agm.sdd
+Office51/explorer/Samples/Presentations/ThreeDimensions.sdd
+Office51/explorer/Samples/Drawings/Automobile.sda
+Office51/explorer/Samples/Drawings/Blueprint.sda
+Office51/explorer/Samples/Drawings/ColorProfile.sda
+Office51/explorer/Samples/Drawings/Jazz.sda
+Office51/explorer/Samples/Drawings/Motor.sda
+Office51/explorer/Samples/Drawings/Ship.sda
+Office51/explorer/Samples/Drawings/Workshop.sda
+Office51/database/address.dbf
+Office51/database/address.dbt
+Office51/autotext/acor1033.dat
+Office51/bookmark/Fun & More/amazon.url
+Office51/bookmark/Fun & More/dilbert.url
+Office51/bookmark/Fun & More/imdb.url
+Office51/bookmark/Fun & More/people.url
+Office51/bookmark/Fun & More/tv-now.url
+Office51/bookmark/Fun & More/webcam.url
+Office51/bookmark/Information/cnn.url
+Office51/bookmark/Information/currconv.url
+Office51/bookmark/Information/fool.url
+Office51/bookmark/Information/intlphon.url
+Office51/bookmark/Information/phonsrch.url
+Office51/bookmark/Information/stocks.url
+Office51/bookmark/Information/weather.url
+Office51/bookmark/Information/zdnet.url
+Office51/bookmark/Information/zip-code.url
+Office51/bookmark/Internet/acronyms.url
+Office51/bookmark/Internet/cliparts.url
+Office51/bookmark/Internet/howtodo.url
+Office51/bookmark/Internet/htmlmanl.url
+Office51/bookmark/Internet/smiley.url
+Office51/bookmark/Internet/textures.url
+Office51/bookmark/Travel/amtrak.url
+Office51/bookmark/Travel/city-net.url
+Office51/bookmark/Travel/greyhnd.url
+Office51/bookmark/Travel/webtrip.url
+@dirrm Office51/explorer/Samples/Formulas
+@dirrm Office51/explorer/Samples/TextDocuments/Chapters
+@dirrm Office51/explorer/Samples/TextDocuments/Homepage
+@dirrm Office51/explorer/Samples/TextDocuments
+@dirrm Office51/explorer/Samples/Spreadsheets
+@dirrm Office51/explorer/Samples/Presentations
+@dirrm Office51/explorer/Samples/Drawings
+@dirrm Office51/explorer/Samples
+@dirrm Office51/bookmark/Fun & More
+@dirrm Office51/bookmark/Information
+@dirrm Office51/bookmark/Internet
+@dirrm Office51/bookmark/Travel
+@dirrm Office51/database
diff --git a/misc/staroffice/pkg/PLIST.49 b/misc/staroffice/pkg/PLIST.49
new file mode 100644
index 00000000000..26f98954ea3
--- /dev/null
+++ b/misc/staroffice/pkg/PLIST.49
@@ -0,0 +1,151 @@
+@comment $NetBSD: PLIST.49,v 1.1.1.1 1999/11/22 21:23:49 rh Exp $
+Office51/config/dbgesch.def
+Office51/config/dbpriv.def
+Office51/config/enden.soe
+Office51/config/klassik.sog
+Office51/config/linien.sod
+Office51/config/schraffu.soh
+Office51/config/wizard/_65_qry.url
+Office51/config/wizard/_05_brie.url
+Office51/config/wizard/_15_agen.url
+Office51/config/wizard/_30_prae.url
+Office51/config/helpmenu/h100010.url
+Office51/config/helpmenu/h100012.url
+Office51/config/helpmenu/h100001.url
+Office51/config/helpmenu/h100003.url
+Office51/config/helpmenu/h100004.url
+Office51/config/helpmenu/h100005.url
+Office51/config/helpmenu/h100006.url
+Office51/config/helpmenu/h100007.url
+Office51/config/helpmenu/H100135.url
+Office51/explorer/Beispiele/Formeln/Annuitaet.smf
+Office51/explorer/Beispiele/Formeln/Cauchy.smf
+Office51/explorer/Beispiele/Formeln/Chemie.smf
+Office51/explorer/Beispiele/Formeln/Effektivzins.smf
+Office51/explorer/Beispiele/Formeln/Fehlerfortpflanzung.smf
+Office51/explorer/Beispiele/Formeln/Geradendefinition.smf
+Office51/explorer/Beispiele/Formeln/HamiltonOperator.smf
+Office51/explorer/Beispiele/Formeln/Investitionsertraege.smf
+Office51/explorer/Beispiele/Formeln/Limes.smf
+Office51/explorer/Beispiele/Formeln/Maxwell.smf
+Office51/explorer/Beispiele/Formeln/Quadratwurzel.smf
+Office51/explorer/Beispiele/Formeln/Regression.smf
+Office51/explorer/Beispiele/Formeln/Sinus.smf
+Office51/explorer/Beispiele/Formeln/Skalarprodukt.smf
+Office51/explorer/Beispiele/Formeln/Spatprodukt.smf
+Office51/explorer/Beispiele/Formeln/Standardabweichung.smf
+Office51/explorer/Beispiele/Texte/Anschreiben.sdw
+Office51/explorer/Beispiele/Texte/Einladung.sdw
+Office51/explorer/Beispiele/Texte/Eiskarte.sdw
+Office51/explorer/Beispiele/Texte/Flugblatt.sdw
+Office51/explorer/Beispiele/Texte/Freizeit.sdw
+Office51/explorer/Beispiele/Texte/Kapitel/Kapitel1.sdw
+Office51/explorer/Beispiele/Texte/Kapitel/Kapitel2.sdw
+Office51/explorer/Beispiele/Texte/Kapitel/Kapitel3.sdw
+Office51/explorer/Beispiele/Texte/Kapitel/Erdbeere.jpg
+Office51/explorer/Beispiele/Texte/Kapitel/Glas.jpg
+Office51/explorer/Beispiele/Texte/Kapitel/Schinken.jpg
+Office51/explorer/Beispiele/Texte/Kapitel/Tennis.jpg
+Office51/explorer/Beispiele/Texte/Kapitel/Villa1.jpg
+Office51/explorer/Beispiele/Texte/Kapitel/Villa2.jpg
+Office51/explorer/Beispiele/Texte/Prospekt.sdw
+Office51/explorer/Beispiele/Texte/Stellenanzeige.sdw
+Office51/explorer/Beispiele/Texte/Verlustanzeige.sdw
+Office51/explorer/Beispiele/Texte/Buch.sgl
+Office51/explorer/Beispiele/Texte/Homepage/about.gif
+Office51/explorer/Beispiele/Texte/Homepage/about.html
+Office51/explorer/Beispiele/Texte/Homepage/abouto.gif
+Office51/explorer/Beispiele/Texte/Homepage/backgrnd.jpg
+Office51/explorer/Beispiele/Texte/Homepage/bar.gif
+Office51/explorer/Beispiele/Texte/Homepage/contact.gif
+Office51/explorer/Beispiele/Texte/Homepage/contact.html
+Office51/explorer/Beispiele/Texte/Homepage/contacto.gif
+Office51/explorer/Beispiele/Texte/Homepage/coop.html
+Office51/explorer/Beispiele/Texte/Homepage/empty.html
+Office51/explorer/Beispiele/Texte/Homepage/hole.gif
+Office51/explorer/Beispiele/Texte/Homepage/home.gif
+Office51/explorer/Beispiele/Texte/Homepage/info.gif
+Office51/explorer/Beispiele/Texte/Homepage/info.html
+Office51/explorer/Beispiele/Texte/Homepage/leftbar.gif
+Office51/explorer/Beispiele/Texte/Homepage/motor.html
+Office51/explorer/Beispiele/Texte/Homepage/partnero.gif
+Office51/explorer/Beispiele/Texte/Homepage/partners.gif
+Office51/explorer/Beispiele/Texte/Homepage/partners.html
+Office51/explorer/Beispiele/Texte/Homepage/producto.gif
+Office51/explorer/Beispiele/Texte/Homepage/products.gif
+Office51/explorer/Beispiele/Texte/Homepage/products.html
+Office51/explorer/Beispiele/Texte/Homepage/question.gif
+Office51/explorer/Beispiele/Texte/Homepage/question.html
+Office51/explorer/Beispiele/Texte/Homepage/race.html
+Office51/explorer/Beispiele/Texte/Homepage/recar.sdc
+Office51/explorer/Beispiele/Texte/Homepage/soffice.gif
+Office51/explorer/Beispiele/Texte/Homepage/start.html
+Office51/explorer/Beispiele/Texte/Homepage/story.gif
+Office51/explorer/Beispiele/Texte/Homepage/title.gif
+Office51/explorer/Beispiele/Texte/Homepage.html
+Office51/explorer/Beispiele/Tabellen/Biorhythmus.sdc
+Office51/explorer/Beispiele/Tabellen/Buffet.sdc
+Office51/explorer/Beispiele/Tabellen/Datenanalyse.sdc
+Office51/explorer/Beispiele/Tabellen/Euro-Umrechner.sdc
+Office51/explorer/Beispiele/Tabellen/Hausverwaltung.sdc
+Office51/explorer/Beispiele/Tabellen/Kalkulation.sdc
+Office51/explorer/Beispiele/Tabellen/Kino1.sdc
+Office51/explorer/Beispiele/Tabellen/Kino2.sdc
+Office51/explorer/Beispiele/Tabellen/Kino3.sdc
+Office51/explorer/Beispiele/Tabellen/Recar-Szenarien.sdc
+Office51/explorer/Beispiele/Tabellen/Umrechnungstabelle.sdc
+Office51/explorer/Beispiele/Praesentationen/DreiDimensionen.sdd
+Office51/explorer/Beispiele/Praesentationen/Organigramm.sdd
+Office51/explorer/Beispiele/Praesentationen/Recar-Hauptversammlung.sdd
+Office51/explorer/Beispiele/Praesentationen/Schach.sdd
+Office51/explorer/Beispiele/Praesentationen/Urlaubsbilder.sdd
+Office51/explorer/Beispiele/Zeichnungen/Automobile.sda
+Office51/explorer/Beispiele/Zeichnungen/Farbprofil.sda
+Office51/explorer/Beispiele/Zeichnungen/Jazz.sda
+Office51/explorer/Beispiele/Zeichnungen/Motor.sda
+Office51/explorer/Beispiele/Zeichnungen/Raumplan.sda
+Office51/explorer/Beispiele/Zeichnungen/Schiff.sda
+Office51/explorer/Beispiele/Zeichnungen/Workshop.sda
+Office51/template/forms/carsale.vor
+Office51/template/forms/receipt.vor
+Office51/template/officorr/ltrcont2.vor
+Office51/template/officorr/ltreleg2.vor
+Office51/template/officorr/ltrprof2.vor
+Office51/database/adressen.dbf
+Office51/database/adressen.dbt
+Office51/autotext/acor1031.dat
+Office51/bookmark/Freizeit/amazon.url
+Office51/bookmark/Freizeit/geo.url
+Office51/bookmark/Freizeit/imdb.url
+Office51/bookmark/Freizeit/tv-progr.url
+Office51/bookmark/Freizeit/webcam-d.url
+Office51/bookmark/Internet/clip.url
+Office51/bookmark/Internet/einfuehr.url
+Office51/bookmark/Internet/klein.url
+Office51/bookmark/Internet/text.url
+Office51/bookmark/Reisen/bahn.url
+Office51/bookmark/Reisen/city-net.url
+Office51/bookmark/Reisen/flug.url
+Office51/bookmark/Info/bk24chrt.url
+Office51/bookmark/Info/detemed.url
+Office51/bookmark/Info/heise.url
+Office51/bookmark/Info/intltele.url
+Office51/bookmark/Info/mietrcht.url
+Office51/bookmark/Info/NeuMarkt.url
+Office51/bookmark/Info/plz.url
+Office51/bookmark/Info/tschau.url
+Office51/bookmark/Info/waehrung.url
+Office51/bookmark/Info/wetter.url
+@dirrm Office51/explorer/Beispiele/Formeln
+@dirrm Office51/explorer/Beispiele/Texte/Homepage
+@dirrm Office51/explorer/Beispiele/Texte/Kapitel
+@dirrm Office51/explorer/Beispiele/Texte
+@dirrm Office51/explorer/Beispiele/Tabellen
+@dirrm Office51/explorer/Beispiele/Praesentationen
+@dirrm Office51/explorer/Beispiele/Zeichnungen
+@dirrm Office51/explorer/Beispiele
+@dirrm Office51/bookmark/Freizeit
+@dirrm Office51/bookmark/Internet
+@dirrm Office51/bookmark/Reisen
+@dirrm Office51/bookmark/Info
+@dirrm Office51/database
diff --git a/misc/staroffice/scripts/post-extract b/misc/staroffice/scripts/post-extract
new file mode 100644
index 00000000000..2a43915aeb5
--- /dev/null
+++ b/misc/staroffice/scripts/post-extract
@@ -0,0 +1,4 @@
+#!/bin/sh
+cd ${WRKSRC}
+unzip -qqXL setup.zip
+chmod 0755 setup.bin