summaryrefslogtreecommitdiff
path: root/misc/libreoffice
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2012-06-01 06:12:13 +0000
committerwiz <wiz@pkgsrc.org>2012-06-01 06:12:13 +0000
commitb1890947f12468792e9e7413714d90c6b2d73546 (patch)
treea48a685dc050eb4f8a34d2253a53d6296c9d949a /misc/libreoffice
parentb4ca86d9d38c26a5e28dda3b57943604a377da0b (diff)
downloadpkgsrc-b1890947f12468792e9e7413714d90c6b2d73546.tar.gz
Initial import of libreoffice-3.5.4.2 from wip, packaged by Francois Tigeot.
Doesn't work on NetBSD-6, but reportedly works on NetBSD-5*/amd64 and /i386, as well as DragonFly/x86_64 and /i386. LibreOffice is a free, community-developed, multi-platform office productivity suite. It includes key desktop applications: word processor, spreadsheet, presentation manager, and drawing program, with a user interface and feature set similar to other office suites.
Diffstat (limited to 'misc/libreoffice')
-rw-r--r--misc/libreoffice/DESCR4
-rw-r--r--misc/libreoffice/Makefile227
-rw-r--r--misc/libreoffice/PLIST2395
-rw-r--r--misc/libreoffice/distinfo50
-rw-r--r--misc/libreoffice/patches/patch-configure.in57
-rw-r--r--misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char.txt15
-rw-r--r--misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char_in.txt31
-rw-r--r--misc/libreoffice/patches/patch-lotuswordpro_Module_lotuswordpro.mk17
-rw-r--r--misc/libreoffice/patches/patch-sc_Module_sc.mk18
-rw-r--r--misc/libreoffice/patches/patch-sd_Module_sd.mk15
-rw-r--r--misc/libreoffice/patches/patch-set_soenv.in15
-rw-r--r--misc/libreoffice/patches/patch-sw_Module_sw.mk20
-rw-r--r--misc/libreoffice/patches/patch-writerfilter_Module_writerfilter.mk19
13 files changed, 2883 insertions, 0 deletions
diff --git a/misc/libreoffice/DESCR b/misc/libreoffice/DESCR
new file mode 100644
index 00000000000..06431f70a46
--- /dev/null
+++ b/misc/libreoffice/DESCR
@@ -0,0 +1,4 @@
+LibreOffice is a free, community-developed, multi-platform office
+productivity suite. It includes key desktop applications:
+word processor, spreadsheet, presentation manager, and drawing program,
+with a user interface and feature set similar to other office suites.
diff --git a/misc/libreoffice/Makefile b/misc/libreoffice/Makefile
new file mode 100644
index 00000000000..18f04587efb
--- /dev/null
+++ b/misc/libreoffice/Makefile
@@ -0,0 +1,227 @@
+# $NetBSD: Makefile,v 1.1.1.1 2012/06/01 06:12:13 wiz Exp $
+
+VER= 3.5.4.2
+DISTNAME= libreoffice-${VER}
+PKGNAME= libreoffice-${VER:S/-//g}
+CATEGORIES= misc
+MASTER_SITES= http://download.documentfoundation.org/libreoffice/src/3.5.4/ \
+ http://dev-www.libreoffice.org/src/ \
+ http://www.numbertext.org/linux/
+
+MAINTAINER= ftigeot@wolfpond.org
+HOMEPAGE= http://www.libreoffice.org/
+COMMENT= Office productivity suite
+LICENSE= gnu-lgpl-v3
+
+NOT_FOR_PLATFORM= NetBSD-6.*-*
+
+PKG_DESTDIR_SUPPORT= user-destdir
+CHECK_SHLIBS_SUPPORTED= no
+
+DIST_SUBDIR= libreoffice
+
+
+LO_BOOTSTRAP= libreoffice-core-${VER}
+LO_COMPONENTS= dictionaries help
+
+MORE_DISTFILES= \
+ 1756c4fa6c616ae15973c104cd8cb256-Adobe-Core35_AFMs-314.tar.gz \
+ e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip \
+ f872f4ac066433d8ff92f5e316b36ff9-dejavu-fonts-ttf-2.33.zip \
+ 35efabc239af896dfb79be7ebdd6e6b9-gentiumbasic-fonts-1.10.zip \
+ 48a9f787f43a09c0a9b7b00cd1fddbbf-hyphen-2.7.1.tar.gz \
+ 7c2549f6b0a8bb604e6c4c729ffdcfe6-libcmis-0.1.0.tar.gz \
+ 0be45d54cc5e1c2e3102e32b8c190346-liberation-fonts-ttf-1.07.1.tar.gz \
+ 067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz \
+ fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz \
+ 1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz
+
+DISTFILES= ${LO_BOOTSTRAP}.tar.xz
+EXTRACT_ONLY= ${LO_BOOTSTRAP}.tar.xz
+.for component in ${LO_COMPONENTS}
+DISTFILES+= libreoffice-${component}-${VER}.tar.xz
+EXTRACT_ONLY+= libreoffice-${component}-${VER}.tar.xz
+.endfor
+
+.for md in ${MORE_DISTFILES}
+DISTFILES+= ${md}
+.endfor
+
+.include "../../mk/bsd.prefs.mk"
+
+# ftp: Unsupported URL scheme `https'
+.if ${OPSYS} == "NetBSD"
+FETCH_USING= curl
+.endif
+
+# tar: Invalid header, starting valid header search.
+EXTRACT_USING= gtar
+
+WRKSRC= ${WRKDIR}/${LO_BOOTSTRAP}
+
+BUILD_DEPENDS+= cppunit>1.12:../../devel/cppunit
+BUILD_DEPENDS+= gperf-[0-9]*:../../devel/gperf
+BUILD_DEPENDS+= hunspell>=1.2.8:../../textproc/hunspell
+BUILD_DEPENDS+= p5-Archive-Zip-[0-9]*:../../archivers/p5-Archive-Zip
+BUILD_DEPENDS+= zip-[0-9]*:../../archivers/zip
+
+# dmake scripts use relative path with -rpath-link ld arguments, which
+# is a no-go with normal pkgsrc wrappers.
+# dmake is slowly beeing removed from the LibreOffice build process
+# and this option will hopefully become unneeded in the future
+WRAPPER_SKIP_TRANSFORM=yes
+
+USE_LANGUAGES+= c c++
+
+CONFLICTS+= staroffice-[0-9]*
+CONFLICTS+= openoffice-[0-9]*
+CONFLICTS+= openoffice2-[0-9]*
+CONFLICTS+= openoffice-bin-[0-9]*
+CONFLICTS+= openoffice2-bin-[0-9]*
+CONFLICTS+= openoffice3-[0-9]*
+CONFLICTS+= openoffice3-bin-[0-9]*
+CONFLICTS+= openoffice-linux-[0-9]*
+CONFLICTS+= libreoffice3-bin-[0-9]*
+
+USE_TOOLS+= automake bash bison gmake perl pkg-config unzip
+PTHREAD_OPTS+= require
+
+HAS_CONFIGURE= yes
+CHECK_PORTABILITY_SKIP= configure
+
+CONFIGURE_ARGS+= --prefix=${DESTDIR}${PREFIX}/${PKGNAME}
+CONFIGURE_ARGS+= --disable-ccache
+CONFIGURE_ARGS+= --disable-epm
+CONFIGURE_ARGS+= --disable-ext-presenter-console
+CONFIGURE_ARGS+= --disable-gconf
+CONFIGURE_ARGS+= --disable-gnome-vfs
+CONFIGURE_ARGS+= --disable-mozilla
+CONFIGURE_ARGS+= --disable-neon
+CONFIGURE_ARGS+= --disable-odk
+CONFIGURE_ARGS+= --disable-opengl
+CONFIGURE_ARGS+= --disable-postgresql-sdbc
+CONFIGURE_ARGS+= --disable-strip-solver
+CONFIGURE_ARGS+= --disable-systray
+CONFIGURE_ARGS+= --with-alloc=system
+CONFIGURE_ARGS+= --with-fonts
+CONFIGURE_ARGS+= --with-num-cpus=${MAKE_JOBS}
+CONFIGURE_ARGS+= --with-system-headers
+CONFIGURE_ARGS+= --with-system-libs
+CONFIGURE_ARGS+= --with-vendor="The LibreOffice pkgsrc team"
+CONFIGURE_ARGS+= --without-java
+CONFIGURE_ARGS+= --without-system-altlinuxhyph
+CONFIGURE_ARGS+= --without-system-jars
+CONFIGURE_ARGS+= --without-system-libcmis
+CONFIGURE_ARGS+= --without-system-mozilla-headers
+CONFIGURE_ARGS+= --without-system-sampleicc
+
+# Some LibreOffice build scripts do strange things with library paths
+# and fail with the pkgsrc environment
+# Preset LD_LIBRARY_PATH to sane defaults and avoid complicating them
+# further
+LIBPATH= ${BUILDLINK_DIR}/lib:${X11BASE}/lib
+LIBPATH:= ${LIBPATH}:${WRKSRC}/desktop/unxdfly.pro/lib:${WRKSRC}/solver/unxdfly.pro/lib
+LIBPATH:= ${LIBPATH}:${WRKSRC}/desktop/unxnbsd.pro/lib:${WRKSRC}/solver/unxnbsd.pro/lib
+
+SUBST_CLASSES+= libpath
+SUBST_STAGE.libpath= pre-configure
+SUBST_FILES.libpath= set_soenv.in
+SUBST_SED.libpath= -e 's,@LIBPATH@,${LIBPATH},g'
+SUBST_MESSAGE.libpath= Fixing library path for dmake scripts
+
+SUBST_CLASSES+= localbase
+SUBST_STAGE.localbase= pre-configure
+SUBST_FILES.localbase= configure.in
+SUBST_SED.localbase= -e 's,@LOCALBASE@,${PREFIX},'
+SUBST_MESSAGE.localbase= Fixing executable path for configure script
+
+REPLACE_PERL= sd/res/webview/editpic.pl
+REPLACE_PERL+= sd/res/webview/poll.pl
+REPLACE_PERL+= sd/res/webview/savepic.pl
+REPLACE_PERL+= sd/res/webview/show.pl
+REPLACE_PERL+= sd/res/webview/webview.pl
+
+LO_PROGRAMS= sbase scalc sdraw simpress smath soffice swriter
+# Base depends on java, we don't install the icon
+LO_DESKTOP_FILES= calc.desktop draw.desktop impress.desktop math.desktop \
+ printeradmin.desktop startcenter.desktop writer.desktop
+
+post-extract:
+ ${MKDIR} -p ${WRKSRC}/clone
+ ${MKDIR} -p ${WRKSRC}/src
+.for comp in ${LO_COMPONENTS}
+ ${MV} ${WRKDIR}/libreoffice-${comp}-${VER} ${WRKSRC}/clone/${comp}
+.endfor
+.for md in ${MORE_DISTFILES}
+ ${LN} -s ${DISTDIR}/${DIST_SUBDIR}/${md} ${WRKSRC}/src/${md}
+.endfor
+
+do-configure:
+ cd ${WRKSRC} && ./autogen.sh ${CONFIGURE_ARGS}
+
+post-configure:
+ cd ${WRKSRC} && ./bin/create_bootstrap_links
+ ${TOUCH} ${WRKSRC}/src.downloaded
+
+AUTO_MKDIRS= yes
+post-install:
+ for f in ${LO_PROGRAMS}; do \
+ ${LN} -s ${DESTDIR}${PREFIX}/${PKGNAME}/program/$$f ${DESTDIR}${PREFIX}/bin/$$f; \
+ done
+ ${LN} -s ${DESTDIR}${PREFIX}/${PKGNAME}/program/soffice ${DESTDIR}${PREFIX}/bin/libreoffice3.5
+ for f in ${LO_DESKTOP_FILES}; do \
+ ${LN} -s ${DESTDIR}${PREFIX}/${PKGNAME}/share/xdg/$$f ${DESTDIR}${PREFIX}/share/applications; \
+ done
+
+
+.include "../../converters/libvisio/buildlink3.mk"
+.include "../../converters/libwpd/buildlink3.mk"
+.include "../../converters/libwpg/buildlink3.mk"
+.include "../../converters/libwps/buildlink3.mk"
+.include "../../databases/db4/buildlink3.mk"
+.include "../../databases/unixodbc/buildlink3.mk"
+.include "../../devel/gperf/buildlink3.mk"
+.include "../../devel/boost-libs/buildlink3.mk"
+.include "../../devel/cppunit/buildlink3.mk"
+.include "../../devel/mdds/buildlink3.mk"
+.include "../../devel/nss/buildlink3.mk"
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../fonts/fontconfig/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
+.include "../../graphics/cairo/buildlink3.mk"
+.include "../../graphics/freetype2/buildlink3.mk"
+.include "../../graphics/gdk-pixbuf2-xlib/buildlink3.mk"
+.include "../../graphics/librsvg/buildlink3.mk"
+.include "../../graphics/sane-backends/buildlink3.mk"
+.include "../../graphics/vigra/buildlink3.mk"
+.include "../../lang/python/application.mk"
+.include "../../math/lp_solve/buildlink3.mk"
+.include "../../multimedia/gstreamer0.10/buildlink3.mk"
+.include "../../multimedia/gst-plugins0.10-base/buildlink3.mk"
+.include "../../print/cups/buildlink3.mk"
+.include "../../print/poppler-cpp/buildlink3.mk"
+.include "../../print/poppler-includes/buildlink3.mk"
+.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../textproc/expat/buildlink3.mk"
+.include "../../textproc/hunspell/buildlink3.mk"
+.include "../../textproc/icu/buildlink3.mk"
+.include "../../textproc/libxml2/buildlink3.mk"
+.include "../../textproc/libxslt/buildlink3.mk"
+.include "../../textproc/redland/buildlink3.mk"
+.include "../../textproc/libexttextcat/buildlink3.mk"
+.include "../../textproc/mythes/buildlink3.mk"
+.include "../../www/curl/buildlink3.mk"
+.include "../../x11/gtk2/buildlink3.mk"
+.include "../../x11/libX11/buildlink3.mk"
+.include "../../x11/libXcursor/buildlink3.mk"
+.include "../../x11/libXext/buildlink3.mk"
+.include "../../x11/libXfixes/buildlink3.mk"
+.include "../../x11/libXi/buildlink3.mk"
+.include "../../x11/libXinerama/buildlink3.mk"
+.include "../../x11/libXrandr/buildlink3.mk"
+.include "../../x11/libXrender/buildlink3.mk"
+.include "../../x11/libXt/buildlink3.mk"
+.include "../../mk/dlopen.buildlink3.mk"
+.include "../../mk/pthread.buildlink3.mk"
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/misc/libreoffice/PLIST b/misc/libreoffice/PLIST
new file mode 100644
index 00000000000..176cc90fccf
--- /dev/null
+++ b/misc/libreoffice/PLIST
@@ -0,0 +1,2395 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+bin/libreoffice3.5
+bin/sbase
+bin/scalc
+bin/sdraw
+bin/simpress
+bin/smath
+bin/soffice
+bin/swriter
+share/applications/calc.desktop
+share/applications/draw.desktop
+share/applications/impress.desktop
+share/applications/math.desktop
+share/applications/printeradmin.desktop
+share/applications/startcenter.desktop
+share/applications/writer.desktop
+${PKGNAME}/CREDITS.odt
+${PKGNAME}/LICENSE
+${PKGNAME}/LICENSE.odt
+${PKGNAME}/THIRDPARTYLICENSEREADME.html
+${PKGNAME}/help/en/default.css
+${PKGNAME}/help/en/err.html
+${PKGNAME}/help/en/highcontrast1.css
+${PKGNAME}/help/en/highcontrast2.css
+${PKGNAME}/help/en/highcontrastblack.css
+${PKGNAME}/help/en/highcontrastwhite.css
+${PKGNAME}/help/en/sbasic.cfg
+${PKGNAME}/help/en/sbasic.db
+${PKGNAME}/help/en/sbasic.ht
+${PKGNAME}/help/en/sbasic.jar
+${PKGNAME}/help/en/sbasic.key
+${PKGNAME}/help/en/sbasic.tree
+${PKGNAME}/help/en/scalc.cfg
+${PKGNAME}/help/en/scalc.db
+${PKGNAME}/help/en/scalc.ht
+${PKGNAME}/help/en/scalc.jar
+${PKGNAME}/help/en/scalc.key
+${PKGNAME}/help/en/scalc.tree
+${PKGNAME}/help/en/schart.cfg
+${PKGNAME}/help/en/schart.db
+${PKGNAME}/help/en/schart.ht
+${PKGNAME}/help/en/schart.jar
+${PKGNAME}/help/en/schart.key
+${PKGNAME}/help/en/schart.tree
+${PKGNAME}/help/en/sdatabase.cfg
+${PKGNAME}/help/en/sdatabase.db
+${PKGNAME}/help/en/sdatabase.ht
+${PKGNAME}/help/en/sdatabase.jar
+${PKGNAME}/help/en/sdatabase.key
+${PKGNAME}/help/en/sdraw.cfg
+${PKGNAME}/help/en/sdraw.db
+${PKGNAME}/help/en/sdraw.ht
+${PKGNAME}/help/en/sdraw.jar
+${PKGNAME}/help/en/sdraw.key
+${PKGNAME}/help/en/shared.db
+${PKGNAME}/help/en/shared.ht
+${PKGNAME}/help/en/shared.jar
+${PKGNAME}/help/en/shared.key
+${PKGNAME}/help/en/shared.tree
+${PKGNAME}/help/en/simpress.cfg
+${PKGNAME}/help/en/simpress.db
+${PKGNAME}/help/en/simpress.ht
+${PKGNAME}/help/en/simpress.jar
+${PKGNAME}/help/en/simpress.key
+${PKGNAME}/help/en/simpress.tree
+${PKGNAME}/help/en/smath.cfg
+${PKGNAME}/help/en/smath.db
+${PKGNAME}/help/en/smath.ht
+${PKGNAME}/help/en/smath.jar
+${PKGNAME}/help/en/smath.key
+${PKGNAME}/help/en/smath.tree
+${PKGNAME}/help/en/swriter.cfg
+${PKGNAME}/help/en/swriter.db
+${PKGNAME}/help/en/swriter.ht
+${PKGNAME}/help/en/swriter.jar
+${PKGNAME}/help/en/swriter.key
+${PKGNAME}/help/en/swriter.tree
+${PKGNAME}/help/idxcaption.xsl
+${PKGNAME}/help/idxcontent.xsl
+${PKGNAME}/help/main_transform.xsl
+${PKGNAME}/presets/autotext/mytexts.bau
+${PKGNAME}/presets/basic/Standard/Module1.xba
+${PKGNAME}/presets/basic/Standard/dialog.xlb
+${PKGNAME}/presets/basic/Standard/script.xlb
+${PKGNAME}/presets/basic/dialog.xlc
+${PKGNAME}/presets/basic/script.xlc
+${PKGNAME}/presets/config/arrowhd.soe
+${PKGNAME}/presets/config/autotbl.fmt
+${PKGNAME}/presets/config/classic.sog
+${PKGNAME}/presets/config/cmyk.soc
+${PKGNAME}/presets/config/gallery.soc
+${PKGNAME}/presets/config/hatching.soh
+${PKGNAME}/presets/config/html.soc
+${PKGNAME}/presets/config/libreoffice.soc
+${PKGNAME}/presets/config/modern.sog
+${PKGNAME}/presets/config/palette.soc
+${PKGNAME}/presets/config/scribus.soc
+${PKGNAME}/presets/config/standard.sob
+${PKGNAME}/presets/config/standard.soc
+${PKGNAME}/presets/config/standard.sod
+${PKGNAME}/presets/config/standard.soe
+${PKGNAME}/presets/config/standard.sog
+${PKGNAME}/presets/config/standard.soh
+${PKGNAME}/presets/config/styles.sod
+${PKGNAME}/presets/config/tango.soc
+${PKGNAME}/presets/config/web.soc
+${PKGNAME}/presets/database/biblio.odb
+${PKGNAME}/presets/database/biblio/biblio.dbf
+${PKGNAME}/presets/database/biblio/biblio.dbt
+${PKGNAME}/presets/database/evolocal.odb
+${PKGNAME}/presets/gallery/sg100.sdv
+${PKGNAME}/presets/gallery/sg100.thm
+${PKGNAME}/presets/gallery/sg30.sdv
+${PKGNAME}/presets/gallery/sg30.thm
+${PKGNAME}/program/about.png
+${PKGNAME}/program/basprov.uno.so
+${PKGNAME}/program/bootstraprc
+${PKGNAME}/program/cairocanvas.uno.so
+${PKGNAME}/program/canvasfactory.uno.so
+${PKGNAME}/program/cde-open-url
+${PKGNAME}/program/cmdmail.uno.so
+${PKGNAME}/program/configmgr.uno.so
+${PKGNAME}/program/desktopbe1.uno.so
+${PKGNAME}/program/dlgprov.uno.so
+${PKGNAME}/program/expwrap.uno.so
+${PKGNAME}/program/fastsax.uno.so
+${PKGNAME}/program/fpicker.uno.so
+${PKGNAME}/program/fps_office.uno.so
+${PKGNAME}/program/fsstorage.uno.so
+${PKGNAME}/program/fundamentalrc
+${PKGNAME}/program/gdbtrace
+${PKGNAME}/program/gengal
+${PKGNAME}/program/gengal.bin
+${PKGNAME}/program/gnome-open-url
+${PKGNAME}/program/gnome-open-url.bin
+${PKGNAME}/program/hatchwindowfactory.uno.so
+${PKGNAME}/program/i18npool.uno.so
+${PKGNAME}/program/i18nsearch.uno.so
+${PKGNAME}/program/intro.png
+${PKGNAME}/program/kde-open-url
+${PKGNAME}/program/libabplo.so
+${PKGNAME}/program/libacclo.so
+${PKGNAME}/program/libadabasuilo.so
+${PKGNAME}/program/libanalysislo.so
+${PKGNAME}/program/libanimcorelo.so
+${PKGNAME}/program/libavmediagst.so
+${PKGNAME}/program/libavmedialo.so
+${PKGNAME}/program/libbasctllo.so
+${PKGNAME}/program/libbasebmplo.so
+${PKGNAME}/program/libbasegfxlo.so
+${PKGNAME}/program/libbiblo.so
+${PKGNAME}/program/libcached1.so
+${PKGNAME}/program/libcalclo.so
+${PKGNAME}/program/libcanvastoolslo.so
+${PKGNAME}/program/libchartcontrollerlo.so
+${PKGNAME}/program/libchartmodello.so
+${PKGNAME}/program/libcharttoolslo.so
+${PKGNAME}/program/libchartviewlo.so
+${PKGNAME}/program/libcollator_data.so
+${PKGNAME}/program/libcomphelpgcc3.so
+${PKGNAME}/program/libcppcanvaslo.so
+${PKGNAME}/program/libctllo.so
+${PKGNAME}/program/libcuilo.so
+${PKGNAME}/program/libdatelo.so
+${PKGNAME}/program/libdbalo.so
+${PKGNAME}/program/libdbaselo.so
+${PKGNAME}/program/libdbaxmllo.so
+${PKGNAME}/program/libdbmmlo.so
+${PKGNAME}/program/libdbplo.so
+${PKGNAME}/program/libdbpool2.so
+${PKGNAME}/program/libdbtoolslo.so
+${PKGNAME}/program/libdbulo.so
+${PKGNAME}/program/libdeployment.so
+${PKGNAME}/program/libdeploymentgui.so
+${PKGNAME}/program/libdeploymentmisclo.so
+${PKGNAME}/program/libdesktop_detectorlo.so
+${PKGNAME}/program/libdict_ja.so
+${PKGNAME}/program/libdict_zh.so
+${PKGNAME}/program/libdoctoklo.so
+${PKGNAME}/program/libdrawinglayerlo.so
+${PKGNAME}/program/libeditenglo.so
+${PKGNAME}/program/libegilo.so
+${PKGNAME}/program/libembobj.so
+${PKGNAME}/program/libemboleobj.so
+${PKGNAME}/program/libemelo.so
+${PKGNAME}/program/libepblo.so
+${PKGNAME}/program/libepglo.so
+${PKGNAME}/program/libepplo.so
+${PKGNAME}/program/libepslo.so
+${PKGNAME}/program/libeptlo.so
+${PKGNAME}/program/liberalo.so
+${PKGNAME}/program/libetilo.so
+${PKGNAME}/program/libevtattlo.so
+${PKGNAME}/program/libexplo.so
+${PKGNAME}/program/libfileacc.so
+${PKGNAME}/program/libfilelo.so
+${PKGNAME}/program/libfilterconfiglo.so
+${PKGNAME}/program/libflashlo.so
+${PKGNAME}/program/libflatlo.so
+${PKGNAME}/program/libforlo.so
+${PKGNAME}/program/libforuilo.so
+${PKGNAME}/program/libfrmlo.so
+${PKGNAME}/program/libfwelo.so
+${PKGNAME}/program/libfwilo.so
+${PKGNAME}/program/libfwklo.so
+${PKGNAME}/program/libfwllo.so
+${PKGNAME}/program/libfwmlo.so
+${PKGNAME}/program/libguesslanglo.so
+${PKGNAME}/program/libhelplinkerlo.so
+${PKGNAME}/program/libhwplo.so
+${PKGNAME}/program/libhyphenlo.so
+${PKGNAME}/program/libi18nisolang1gcc3.so
+${PKGNAME}/program/libi18npaperlo.so
+${PKGNAME}/program/libi18nregexplo.so
+${PKGNAME}/program/libi18nutilgcc3.so
+${PKGNAME}/program/libicdlo.so
+${PKGNAME}/program/libicglo.so
+${PKGNAME}/program/libidxlo.so
+${PKGNAME}/program/libimelo.so
+${PKGNAME}/program/libindex_data.so
+${PKGNAME}/program/libipblo.so
+${PKGNAME}/program/libipdlo.so
+${PKGNAME}/program/libipslo.so
+${PKGNAME}/program/libiptlo.so
+${PKGNAME}/program/libipxlo.so
+${PKGNAME}/program/libiralo.so
+${PKGNAME}/program/libitglo.so
+${PKGNAME}/program/libitilo.so
+${PKGNAME}/program/liblnglo.so
+${PKGNAME}/program/liblnthlo.so
+${PKGNAME}/program/liblocaledata_en.so
+${PKGNAME}/program/liblocaledata_es.so
+${PKGNAME}/program/liblocaledata_euro.so
+${PKGNAME}/program/liblocaledata_others.so
+${PKGNAME}/program/libloglo.so
+${PKGNAME}/program/liblwpftlo.so
+${PKGNAME}/program/libmcnttype.so
+${PKGNAME}/program/libmozbootstrap.so
+${PKGNAME}/program/libmsfilterlo.so
+${PKGNAME}/program/libmswordlo.so
+${PKGNAME}/program/libmsworkslo.so
+${PKGNAME}/program/libmysqllo.so
+${PKGNAME}/program/libnpsoplugin.so
+${PKGNAME}/program/libodbcbaselo.so
+${PKGNAME}/program/libodbclo.so
+${PKGNAME}/program/libodfflatxmllo.so
+${PKGNAME}/program/liboffacclo.so
+${PKGNAME}/program/liboooimprovecorelo.so
+${PKGNAME}/program/libooxlo.so
+${PKGNAME}/program/libooxmllo.so
+${PKGNAME}/program/libpackage2.so
+${PKGNAME}/program/libpcrlo.so
+${PKGNAME}/program/libpdffilterlo.so
+${PKGNAME}/program/libplacewarelo.so
+${PKGNAME}/program/libprotocolhandlerlo.so
+${PKGNAME}/program/libpyuno.so
+${PKGNAME}/program/librecentfile.so
+${PKGNAME}/program/libreslo.so
+${PKGNAME}/program/libresourcemodello.so
+${PKGNAME}/program/librptlo.so
+${PKGNAME}/program/librptuilo.so
+${PKGNAME}/program/librptxmllo.so
+${PKGNAME}/program/librtftoklo.so
+${PKGNAME}/program/libsaxlo.so
+${PKGNAME}/program/libsblo.so
+${PKGNAME}/program/libscdlo.so
+${PKGNAME}/program/libscfiltlo.so
+${PKGNAME}/program/libsclo.so
+${PKGNAME}/program/libscnlo.so
+${PKGNAME}/program/libscriptframe.so
+${PKGNAME}/program/libscuilo.so
+${PKGNAME}/program/libsdbc2.so
+${PKGNAME}/program/libsdbtlo.so
+${PKGNAME}/program/libsddlo.so
+${PKGNAME}/program/libsdfiltlo.so
+${PKGNAME}/program/libsdlo.so
+${PKGNAME}/program/libsduilo.so
+${PKGNAME}/program/libsfxlo.so
+${PKGNAME}/program/libsmdlo.so
+${PKGNAME}/program/libsmlo.so
+${PKGNAME}/program/libsofficeapp.so
+${PKGNAME}/program/libsolverlo.so
+${PKGNAME}/program/libsotlo.so
+${PKGNAME}/program/libspalo.so
+${PKGNAME}/program/libspelllo.so
+${PKGNAME}/program/libspl_unxlo.so
+${PKGNAME}/program/libspllo.so
+${PKGNAME}/program/libsrtrs1.so
+${PKGNAME}/program/libsvgfilterlo.so
+${PKGNAME}/program/libsvllo.so
+${PKGNAME}/program/libsvtlo.so
+${PKGNAME}/program/libsvxcorelo.so
+${PKGNAME}/program/libsvxlo.so
+${PKGNAME}/program/libswdlo.so
+${PKGNAME}/program/libswlo.so
+${PKGNAME}/program/libswuilo.so
+${PKGNAME}/program/libt602filterlo.so
+${PKGNAME}/program/libtextconv_dict.so
+${PKGNAME}/program/libtextconversiondlgslo.so
+${PKGNAME}/program/libtklo.so
+${PKGNAME}/program/libtllo.so
+${PKGNAME}/program/libtvhlp1.so
+${PKGNAME}/program/libucb1.so
+${PKGNAME}/program/libucbhelper4gcc3.so
+${PKGNAME}/program/libucpchelp1.so
+${PKGNAME}/program/libucpfile1.so
+${PKGNAME}/program/libucpftp1.so
+${PKGNAME}/program/libucphier1.so
+${PKGNAME}/program/libucppkg1.so
+${PKGNAME}/program/libunopkgapp.so
+${PKGNAME}/program/libunordflo.so
+${PKGNAME}/program/libunoxmllo.so
+${PKGNAME}/program/libupdchklo.so
+${PKGNAME}/program/libutllo.so
+${PKGNAME}/program/libuuilo.so
+${PKGNAME}/program/libvbahelperlo.so
+${PKGNAME}/program/libvcllo.so
+${PKGNAME}/program/libvclplug_genlo.so
+${PKGNAME}/program/libvclplug_gtklo.so
+${PKGNAME}/program/libvclplug_svplo.so
+${PKGNAME}/program/libvisioimportlo.so
+${PKGNAME}/program/libwpftlo.so
+${PKGNAME}/program/libwpgimportlo.so
+${PKGNAME}/program/libwriterfilterlo.so
+${PKGNAME}/program/libxcrlo.so
+${PKGNAME}/program/libxmlfalo.so
+${PKGNAME}/program/libxmlfdlo.so
+${PKGNAME}/program/libxmlsecurity.so
+${PKGNAME}/program/libxmxlo.so
+${PKGNAME}/program/libxoflo.so
+${PKGNAME}/program/libxolo.so
+${PKGNAME}/program/libxsec_fw.so
+${PKGNAME}/program/libxsec_xmlsec.so
+${PKGNAME}/program/libxsltdlglo.so
+${PKGNAME}/program/libxsltfilterlo.so
+${PKGNAME}/program/libxstor.so
+${PKGNAME}/program/localebe1.uno.so
+${PKGNAME}/program/mailmerge.py
+${PKGNAME}/program/migrationoo2.uno.so
+${PKGNAME}/program/migrationoo3.uno.so
+${PKGNAME}/program/msforms.uno.so
+${PKGNAME}/program/msgbox.py
+${PKGNAME}/program/mtfrenderer.uno.so
+${PKGNAME}/program/nsplugin
+${PKGNAME}/program/officehelper.py
+${PKGNAME}/program/oosplash
+${PKGNAME}/program/open-url
+${PKGNAME}/program/pagein-calc
+${PKGNAME}/program/pagein-common
+${PKGNAME}/program/pagein-draw
+${PKGNAME}/program/pagein-impress
+${PKGNAME}/program/pagein-writer
+${PKGNAME}/program/passwordcontainer.uno.so
+${PKGNAME}/program/pythonloader.py
+${PKGNAME}/program/pythonloader.uno.so
+${PKGNAME}/program/pythonloader.unorc
+${PKGNAME}/program/pyuno.so
+${PKGNAME}/program/redirectrc
+${PKGNAME}/program/resource/abpen-US.res
+${PKGNAME}/program/resource/accen-US.res
+${PKGNAME}/program/resource/adabasuien-US.res
+${PKGNAME}/program/resource/analysisen-US.res
+${PKGNAME}/program/resource/avmediaen-US.res
+${PKGNAME}/program/resource/basctlen-US.res
+${PKGNAME}/program/resource/biben-US.res
+${PKGNAME}/program/resource/calen-US.res
+${PKGNAME}/program/resource/chartcontrolleren-US.res
+${PKGNAME}/program/resource/cnren-US.res
+${PKGNAME}/program/resource/cuien-US.res
+${PKGNAME}/program/resource/dateen-US.res
+${PKGNAME}/program/resource/dbaen-US.res
+${PKGNAME}/program/resource/dbmmen-US.res
+${PKGNAME}/program/resource/dbpen-US.res
+${PKGNAME}/program/resource/dbuen-US.res
+${PKGNAME}/program/resource/dbwen-US.res
+${PKGNAME}/program/resource/deploymenten-US.res
+${PKGNAME}/program/resource/deploymentguien-US.res
+${PKGNAME}/program/resource/dkten-US.res
+${PKGNAME}/program/resource/editengen-US.res
+${PKGNAME}/program/resource/epsen-US.res
+${PKGNAME}/program/resource/euren-US.res
+${PKGNAME}/program/resource/foren-US.res
+${PKGNAME}/program/resource/foruien-US.res
+${PKGNAME}/program/resource/fps_officeen-US.res
+${PKGNAME}/program/resource/frmen-US.res
+${PKGNAME}/program/resource/fween-US.res
+${PKGNAME}/program/resource/galen-US.res
+${PKGNAME}/program/resource/impen-US.res
+${PKGNAME}/program/resource/ofaen-US.res
+${PKGNAME}/program/resource/pcren-US.res
+${PKGNAME}/program/resource/pdffilteren-US.res
+${PKGNAME}/program/resource/rpten-US.res
+${PKGNAME}/program/resource/rptuien-US.res
+${PKGNAME}/program/resource/sanen-US.res
+${PKGNAME}/program/resource/sben-US.res
+${PKGNAME}/program/resource/scen-US.res
+${PKGNAME}/program/resource/sdbclen-US.res
+${PKGNAME}/program/resource/sdberren-US.res
+${PKGNAME}/program/resource/sdbten-US.res
+${PKGNAME}/program/resource/sden-US.res
+${PKGNAME}/program/resource/sfxen-US.res
+${PKGNAME}/program/resource/smen-US.res
+${PKGNAME}/program/resource/solveren-US.res
+${PKGNAME}/program/resource/spaen-US.res
+${PKGNAME}/program/resource/svlen-US.res
+${PKGNAME}/program/resource/svten-US.res
+${PKGNAME}/program/resource/svxen-US.res
+${PKGNAME}/program/resource/swen-US.res
+${PKGNAME}/program/resource/t602filteren-US.res
+${PKGNAME}/program/resource/textconversiondlgsen-US.res
+${PKGNAME}/program/resource/tken-US.res
+${PKGNAME}/program/resource/tplen-US.res
+${PKGNAME}/program/resource/updchken-US.res
+${PKGNAME}/program/resource/upden-US.res
+${PKGNAME}/program/resource/uuien-US.res
+${PKGNAME}/program/resource/vclen-US.res
+${PKGNAME}/program/resource/wzien-US.res
+${PKGNAME}/program/resource/xmlsecen-US.res
+${PKGNAME}/program/resource/xsltdlgen-US.res
+${PKGNAME}/program/sbase
+${PKGNAME}/program/scalc
+${PKGNAME}/program/sdraw
+${PKGNAME}/program/senddoc
+${PKGNAME}/program/services/services.rdb
+${PKGNAME}/program/setuprc
+${PKGNAME}/program/shell/backing_left.png
+${PKGNAME}/program/shell/backing_right.png
+${PKGNAME}/program/shell/backing_rtl_left.png
+${PKGNAME}/program/shell/backing_rtl_right.png
+${PKGNAME}/program/shell/backing_space.png
+${PKGNAME}/program/simplecanvas.uno.so
+${PKGNAME}/program/simpress
+${PKGNAME}/program/slideshow.uno.so
+${PKGNAME}/program/smath
+${PKGNAME}/program/soffice
+${PKGNAME}/program/soffice.bin
+${PKGNAME}/program/sofficerc
+${PKGNAME}/program/spadmin
+${PKGNAME}/program/spadmin.bin
+${PKGNAME}/program/stringresource.uno.so
+${PKGNAME}/program/swriter
+${PKGNAME}/program/syssh.uno.so
+${PKGNAME}/program/types/offapi.rdb
+${PKGNAME}/program/types/oovbaapi.rdb
+${PKGNAME}/program/ucpcmis1.uno.so
+${PKGNAME}/program/ucpexpand1.uno.so
+${PKGNAME}/program/ucpext.uno.so
+${PKGNAME}/program/ucptdoc1.uno.so
+${PKGNAME}/program/uno.py
+${PKGNAME}/program/unohelper.py
+${PKGNAME}/program/unoinfo
+${PKGNAME}/program/unopkg
+${PKGNAME}/program/unopkg.bin
+${PKGNAME}/program/unorc
+${PKGNAME}/program/updatefeed.uno.so
+${PKGNAME}/program/uri-encode
+${PKGNAME}/program/vbaevents.uno.so
+${PKGNAME}/program/vbaobj.uno.so
+${PKGNAME}/program/vbaswobj.uno.so
+${PKGNAME}/program/vclcanvas.uno.so
+${PKGNAME}/program/versionrc
+${PKGNAME}/program/wizards/__init__.py
+${PKGNAME}/program/wizards/common/ConfigGroup.py
+${PKGNAME}/program/wizards/common/ConfigNode.py
+${PKGNAME}/program/wizards/common/ConfigSet.py
+${PKGNAME}/program/wizards/common/Configuration.py
+${PKGNAME}/program/wizards/common/DebugHelper.py
+${PKGNAME}/program/wizards/common/Desktop.py
+${PKGNAME}/program/wizards/common/FileAccess.py
+${PKGNAME}/program/wizards/common/HelpIds.py
+${PKGNAME}/program/wizards/common/Helper.py
+${PKGNAME}/program/wizards/common/NoValidPathException.py
+${PKGNAME}/program/wizards/common/NumberFormatter.py
+${PKGNAME}/program/wizards/common/Properties.py
+${PKGNAME}/program/wizards/common/PropertyNames.py
+${PKGNAME}/program/wizards/common/PropertySetHelper.py
+${PKGNAME}/program/wizards/common/Resource.py
+${PKGNAME}/program/wizards/common/SystemDialog.py
+${PKGNAME}/program/wizards/common/__init__.py
+${PKGNAME}/program/wizards/document/OfficeDocument.py
+${PKGNAME}/program/wizards/document/__init__.py
+${PKGNAME}/program/wizards/fax/CGFax.py
+${PKGNAME}/program/wizards/fax/CGFaxWizard.py
+${PKGNAME}/program/wizards/fax/CallWizard.py
+${PKGNAME}/program/wizards/fax/FaxDocument.py
+${PKGNAME}/program/wizards/fax/FaxWizardDialog.py
+${PKGNAME}/program/wizards/fax/FaxWizardDialogConst.py
+${PKGNAME}/program/wizards/fax/FaxWizardDialogImpl.py
+${PKGNAME}/program/wizards/fax/FaxWizardDialogResources.py
+${PKGNAME}/program/wizards/fax/__init__.py
+${PKGNAME}/program/wizards/text/TextDocument.py
+${PKGNAME}/program/wizards/text/TextFieldHandler.py
+${PKGNAME}/program/wizards/text/TextSectionHandler.py
+${PKGNAME}/program/wizards/text/ViewHandler.py
+${PKGNAME}/program/wizards/text/__init__.py
+${PKGNAME}/program/wizards/ui/ControlScroller.py
+${PKGNAME}/program/wizards/ui/DocumentPreview.py
+${PKGNAME}/program/wizards/ui/ImageList.py
+${PKGNAME}/program/wizards/ui/PathSelection.py
+${PKGNAME}/program/wizards/ui/PeerConfig.py
+${PKGNAME}/program/wizards/ui/UIConsts.py
+${PKGNAME}/program/wizards/ui/UnoDialog.py
+${PKGNAME}/program/wizards/ui/UnoDialog2.py
+${PKGNAME}/program/wizards/ui/WizardDialog.py
+${PKGNAME}/program/wizards/ui/XPathSelectionListener.py
+${PKGNAME}/program/wizards/ui/__init__.py
+${PKGNAME}/program/wizards/ui/event/CommonListener.py
+${PKGNAME}/program/wizards/ui/event/DataAware.py
+${PKGNAME}/program/wizards/ui/event/ListModelBinder.py
+${PKGNAME}/program/wizards/ui/event/RadioDataAware.py
+${PKGNAME}/program/wizards/ui/event/UnoDataAware.py
+${PKGNAME}/program/wizards/ui/event/__init__.py
+${PKGNAME}/readmes/README_en-US
+${PKGNAME}/share/Scripts/beanshell/Capitalise/capitalise.bsh
+${PKGNAME}/share/Scripts/beanshell/Capitalise/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/beanshell/HelloWorld/helloworld.bsh
+${PKGNAME}/share/Scripts/beanshell/HelloWorld/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/beanshell/Highlight/ButtonPressHandler.bsh
+${PKGNAME}/share/Scripts/beanshell/Highlight/ShowDialog.bsh
+${PKGNAME}/share/Scripts/beanshell/Highlight/highlighter.bsh
+${PKGNAME}/share/Scripts/beanshell/Highlight/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/beanshell/MemoryUsage/memusage.bsh
+${PKGNAME}/share/Scripts/beanshell/MemoryUsage/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/beanshell/WordCount/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/beanshell/WordCount/wordcount.bsh
+${PKGNAME}/share/Scripts/javascript/ExportSheetsToHTML/exportsheetstohtml.js
+${PKGNAME}/share/Scripts/javascript/ExportSheetsToHTML/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/javascript/HelloWorld/helloworld.js
+${PKGNAME}/share/Scripts/javascript/HelloWorld/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/javascript/Highlight/ButtonPressHandler.js
+${PKGNAME}/share/Scripts/javascript/Highlight/ShowDialog.js
+${PKGNAME}/share/Scripts/javascript/Highlight/parcel-descriptor.xml
+${PKGNAME}/share/Scripts/python/Capitalise.py
+${PKGNAME}/share/Scripts/python/HelloWorld.py
+${PKGNAME}/share/Scripts/python/pythonSamples/TableSample.py
+${PKGNAME}/share/autocorr/acor_af-ZA.dat
+${PKGNAME}/share/autocorr/acor_bg-BG.dat
+${PKGNAME}/share/autocorr/acor_cs-CZ.dat
+${PKGNAME}/share/autocorr/acor_da-DK.dat
+${PKGNAME}/share/autocorr/acor_de-DE.dat
+${PKGNAME}/share/autocorr/acor_en-AU.dat
+${PKGNAME}/share/autocorr/acor_en-GB.dat
+${PKGNAME}/share/autocorr/acor_en-US.dat
+${PKGNAME}/share/autocorr/acor_en-ZA.dat
+${PKGNAME}/share/autocorr/acor_es-ES.dat
+${PKGNAME}/share/autocorr/acor_eu.dat
+${PKGNAME}/share/autocorr/acor_fa-IR.dat
+${PKGNAME}/share/autocorr/acor_fi-FI.dat
+${PKGNAME}/share/autocorr/acor_fr-FR.dat
+${PKGNAME}/share/autocorr/acor_ga-IE.dat
+${PKGNAME}/share/autocorr/acor_hr-HR.dat
+${PKGNAME}/share/autocorr/acor_hu-HU.dat
+${PKGNAME}/share/autocorr/acor_it-IT.dat
+${PKGNAME}/share/autocorr/acor_ja-JP.dat
+${PKGNAME}/share/autocorr/acor_ko-KR.dat
+${PKGNAME}/share/autocorr/acor_lb-LU.dat
+${PKGNAME}/share/autocorr/acor_lt-LT.dat
+${PKGNAME}/share/autocorr/acor_mn-MN.dat
+${PKGNAME}/share/autocorr/acor_nl-BE.dat
+${PKGNAME}/share/autocorr/acor_nl-NL.dat
+${PKGNAME}/share/autocorr/acor_pl-PL.dat
+${PKGNAME}/share/autocorr/acor_pt-BR.dat
+${PKGNAME}/share/autocorr/acor_pt-PT.dat
+${PKGNAME}/share/autocorr/acor_ru-RU.dat
+${PKGNAME}/share/autocorr/acor_sh-ME.dat
+${PKGNAME}/share/autocorr/acor_sh-RS.dat
+${PKGNAME}/share/autocorr/acor_sh-YU.dat
+${PKGNAME}/share/autocorr/acor_sk-SK.dat
+${PKGNAME}/share/autocorr/acor_sl-SI.dat
+${PKGNAME}/share/autocorr/acor_sr-ME.dat
+${PKGNAME}/share/autocorr/acor_sr-RS.dat
+${PKGNAME}/share/autocorr/acor_sr-YU.dat
+${PKGNAME}/share/autocorr/acor_sv-SE.dat
+${PKGNAME}/share/autocorr/acor_tr-TR.dat
+${PKGNAME}/share/autocorr/acor_vi-VN.dat
+${PKGNAME}/share/autocorr/acor_zh-CN.dat
+${PKGNAME}/share/autocorr/acor_zh-TW.dat
+${PKGNAME}/share/autotext/en-US/crdbus50.bau
+${PKGNAME}/share/autotext/en-US/standard.bau
+${PKGNAME}/share/autotext/en-US/template.bau
+${PKGNAME}/share/basic/Depot/CommonLang.xba
+${PKGNAME}/share/basic/Depot/Currency.xba
+${PKGNAME}/share/basic/Depot/Depot.xba
+${PKGNAME}/share/basic/Depot/Dialog2.xdl
+${PKGNAME}/share/basic/Depot/Dialog3.xdl
+${PKGNAME}/share/basic/Depot/Dialog4.xdl
+${PKGNAME}/share/basic/Depot/Internet.xba
+${PKGNAME}/share/basic/Depot/Lang_de.xba
+${PKGNAME}/share/basic/Depot/Lang_en.xba
+${PKGNAME}/share/basic/Depot/Lang_es.xba
+${PKGNAME}/share/basic/Depot/Lang_fr.xba
+${PKGNAME}/share/basic/Depot/Lang_it.xba
+${PKGNAME}/share/basic/Depot/Lang_ja.xba
+${PKGNAME}/share/basic/Depot/Lang_ko.xba
+${PKGNAME}/share/basic/Depot/Lang_sv.xba
+${PKGNAME}/share/basic/Depot/Lang_tw.xba
+${PKGNAME}/share/basic/Depot/Lang_zh.xba
+${PKGNAME}/share/basic/Depot/dialog.xlb
+${PKGNAME}/share/basic/Depot/script.xlb
+${PKGNAME}/share/basic/Depot/tools.xba
+${PKGNAME}/share/basic/Euro/AutoPilotRun.xba
+${PKGNAME}/share/basic/Euro/Common.xba
+${PKGNAME}/share/basic/Euro/ConvertRun.xba
+${PKGNAME}/share/basic/Euro/DlgConvert.xdl
+${PKGNAME}/share/basic/Euro/DlgPassword.xdl
+${PKGNAME}/share/basic/Euro/Hard.xba
+${PKGNAME}/share/basic/Euro/Init.xba
+${PKGNAME}/share/basic/Euro/Protect.xba
+${PKGNAME}/share/basic/Euro/Soft.xba
+${PKGNAME}/share/basic/Euro/Writer.xba
+${PKGNAME}/share/basic/Euro/dialog.xlb
+${PKGNAME}/share/basic/Euro/script.xlb
+${PKGNAME}/share/basic/FormWizard/DBMeta.xba
+${PKGNAME}/share/basic/FormWizard/DlgFormDB.xdl
+${PKGNAME}/share/basic/FormWizard/FormWizard.xba
+${PKGNAME}/share/basic/FormWizard/Language.xba
+${PKGNAME}/share/basic/FormWizard/Layouter.xba
+${PKGNAME}/share/basic/FormWizard/develop.xba
+${PKGNAME}/share/basic/FormWizard/dialog.xlb
+${PKGNAME}/share/basic/FormWizard/script.xlb
+${PKGNAME}/share/basic/FormWizard/tools.xba
+${PKGNAME}/share/basic/Gimmicks/AutoText.xba
+${PKGNAME}/share/basic/Gimmicks/ChangeAllChars.xba
+${PKGNAME}/share/basic/Gimmicks/GetTexts.xba
+${PKGNAME}/share/basic/Gimmicks/ReadDir.xba
+${PKGNAME}/share/basic/Gimmicks/ReadFolderDlg.xdl
+${PKGNAME}/share/basic/Gimmicks/UserfieldDlg.xdl
+${PKGNAME}/share/basic/Gimmicks/Userfields.xba
+${PKGNAME}/share/basic/Gimmicks/dialog.xlb
+${PKGNAME}/share/basic/Gimmicks/script.xlb
+${PKGNAME}/share/basic/ImportWizard/API.xba
+${PKGNAME}/share/basic/ImportWizard/DialogModul.xba
+${PKGNAME}/share/basic/ImportWizard/FilesModul.xba
+${PKGNAME}/share/basic/ImportWizard/ImportDialog.xdl
+${PKGNAME}/share/basic/ImportWizard/Language.xba
+${PKGNAME}/share/basic/ImportWizard/Main.xba
+${PKGNAME}/share/basic/ImportWizard/dialog.xlb
+${PKGNAME}/share/basic/ImportWizard/script.xlb
+${PKGNAME}/share/basic/Schedule/BankHoliday.xba
+${PKGNAME}/share/basic/Schedule/CalendarMain.xba
+${PKGNAME}/share/basic/Schedule/CreateTable.xba
+${PKGNAME}/share/basic/Schedule/DlgCalendar.xdl
+${PKGNAME}/share/basic/Schedule/DlgControl.xba
+${PKGNAME}/share/basic/Schedule/GermanHolidays.xba
+${PKGNAME}/share/basic/Schedule/Language.xba
+${PKGNAME}/share/basic/Schedule/LocalHolidays.xba
+${PKGNAME}/share/basic/Schedule/OwnEvents.xba
+${PKGNAME}/share/basic/Schedule/dialog.xlb
+${PKGNAME}/share/basic/Schedule/script.xlb
+${PKGNAME}/share/basic/ScriptBindingLibrary/Highlight.xdl
+${PKGNAME}/share/basic/ScriptBindingLibrary/dialog.xlb
+${PKGNAME}/share/basic/ScriptBindingLibrary/script.xlb
+${PKGNAME}/share/basic/Template/Autotext.xba
+${PKGNAME}/share/basic/Template/Correspondence.xba
+${PKGNAME}/share/basic/Template/DialogStyles.xdl
+${PKGNAME}/share/basic/Template/ModuleAgenda.xba
+${PKGNAME}/share/basic/Template/Samples.xba
+${PKGNAME}/share/basic/Template/TemplateDialog.xdl
+${PKGNAME}/share/basic/Template/dialog.xlb
+${PKGNAME}/share/basic/Template/script.xlb
+${PKGNAME}/share/basic/Tools/Debug.xba
+${PKGNAME}/share/basic/Tools/DlgOverwriteAll.xdl
+${PKGNAME}/share/basic/Tools/Listbox.xba
+${PKGNAME}/share/basic/Tools/Misc.xba
+${PKGNAME}/share/basic/Tools/ModuleControls.xba
+${PKGNAME}/share/basic/Tools/Strings.xba
+${PKGNAME}/share/basic/Tools/UCB.xba
+${PKGNAME}/share/basic/Tools/dialog.xlb
+${PKGNAME}/share/basic/Tools/script.xlb
+${PKGNAME}/share/basic/Tutorials/Functions.xba
+${PKGNAME}/share/basic/Tutorials/RoadMap.xba
+${PKGNAME}/share/basic/Tutorials/ShowInfoDialog.xba
+${PKGNAME}/share/basic/Tutorials/TutorialClose.xba
+${PKGNAME}/share/basic/Tutorials/TutorialCloseDialog.xdl
+${PKGNAME}/share/basic/Tutorials/TutorialCreator.xba
+${PKGNAME}/share/basic/Tutorials/TutorialOpen.xba
+${PKGNAME}/share/basic/Tutorials/TutorialOpenDialog.xdl
+${PKGNAME}/share/basic/Tutorials/TutorialsDialog.xdl
+${PKGNAME}/share/basic/Tutorials/dialog.xlb
+${PKGNAME}/share/basic/Tutorials/script.xlb
+${PKGNAME}/share/basic/dialog.xlc
+${PKGNAME}/share/basic/script.xlc
+${PKGNAME}/share/config/images.zip
+${PKGNAME}/share/config/images_brand.zip
+${PKGNAME}/share/config/images_crystal.zip
+${PKGNAME}/share/config/images_hicontrast.zip
+${PKGNAME}/share/config/images_oxygen.zip
+${PKGNAME}/share/config/images_tango.zip
+${PKGNAME}/share/config/javasettingsunopkginstall.xml
+${PKGNAME}/share/config/psetup.xpm
+${PKGNAME}/share/config/psetupl.xpm
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/dialogbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/formcontrolsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/insertcontrolsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/macrobar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/BasicIDE/toolbar/translationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/StartModule/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/StartModule/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/StartModule/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/formobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/queryobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/reportobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbapp/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbbrowser/menubar/compat.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbbrowser/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbquery/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/designobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/sqlobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbquery/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbrelation/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbrelation/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/Formatting.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/reportcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/resizebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/sectionalignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/sectionshrinkbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbreport/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbtable/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbtable/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbtdata/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/dbtdata/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sbibliography/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/drawobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formatobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/insertcellsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/previewbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/scalc/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/schart/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/3dobjectsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/arrowsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/choosemodebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/commentsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/connectorsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/ellipsesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/gluepointsobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/linesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/masterviewtoolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/optionsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/positionbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/rectanglesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/textbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sdraw/toolbar/zoombar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/insertobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sglobal/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/3dobjectsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/arrowsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/choosemodebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/commentsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/commontaskbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/connectorsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/ellipsesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/gluepointsobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/linesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/masterviewtoolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/optionsbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/outlinetoolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/positionbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/rectanglesbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/slideviewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/slideviewtoolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/textbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/simpress/toolbar/zoombar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/smath/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/smath/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/smath/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/sweb/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/insertobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swform/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/insertobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swreport/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/navigationobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swriter/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/menubar/menubar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/statusbar/statusbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/alignmentbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/arrowshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/basicshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/bezierobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/calloutshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/colorbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawingobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/drawtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/extrusionobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/findbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/flowchartshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fontworkobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fontworkshapetype.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formdesign.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formsfilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formsnavigationbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/formtextobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/frameobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/fullscreenbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/graffilterbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/graphicobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/insertbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/insertobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/mediaobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/moreformcontrols.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/numobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/oleobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/optimizetablebar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/previewobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/standardbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/starshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/symbolshapes.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/tableobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/textobjectbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/toolbar.xml
+${PKGNAME}/share/config/soffice.cfg/modules/swxform/toolbar/viewerbar.xml
+${PKGNAME}/share/config/soffice.cfg/simpress/effects.xml
+${PKGNAME}/share/config/soffice.cfg/simpress/transitions.xml
+${PKGNAME}/share/config/symbol/l_2people.bmp
+${PKGNAME}/share/config/symbol/l_attention1.bmp
+${PKGNAME}/share/config/symbol/l_attention2.bmp
+${PKGNAME}/share/config/symbol/l_attention3.bmp
+${PKGNAME}/share/config/symbol/l_candy.bmp
+${PKGNAME}/share/config/symbol/l_face.bmp
+${PKGNAME}/share/config/symbol/l_flower.bmp
+${PKGNAME}/share/config/symbol/l_ghost.bmp
+${PKGNAME}/share/config/symbol/l_halloween.bmp
+${PKGNAME}/share/config/symbol/l_home.bmp
+${PKGNAME}/share/config/symbol/l_lamp.bmp
+${PKGNAME}/share/config/symbol/l_lock.bmp
+${PKGNAME}/share/config/symbol/l_page_b.bmp
+${PKGNAME}/share/config/symbol/l_page_g.bmp
+${PKGNAME}/share/config/symbol/l_page_y.bmp
+${PKGNAME}/share/config/symbol/l_people.bmp
+${PKGNAME}/share/config/symbol/l_rose.bmp
+${PKGNAME}/share/config/symbol/l_save.bmp
+${PKGNAME}/share/config/symbol/l_smiley_1.bmp
+${PKGNAME}/share/config/symbol/l_smiley_oh.bmp
+${PKGNAME}/share/config/symbol/l_smiley_sad.bmp
+${PKGNAME}/share/config/symbol/l_snow.bmp
+${PKGNAME}/share/config/symbol/l_star.bmp
+${PKGNAME}/share/config/symbol/s_arrow-1.bmp
+${PKGNAME}/share/config/symbol/s_arrow-2.bmp
+${PKGNAME}/share/config/symbol/s_arrow-3.bmp
+${PKGNAME}/share/config/symbol/s_arrow-4.bmp
+${PKGNAME}/share/config/symbol/s_attention1.bmp
+${PKGNAME}/share/config/symbol/s_attention2.bmp
+${PKGNAME}/share/config/symbol/s_attention3.bmp
+${PKGNAME}/share/config/symbol/s_ball-b.bmp
+${PKGNAME}/share/config/symbol/s_ball-g.bmp
+${PKGNAME}/share/config/symbol/s_ball-r.bmp
+${PKGNAME}/share/config/symbol/s_ball.bmp
+${PKGNAME}/share/config/symbol/s_bug.bmp
+${PKGNAME}/share/config/symbol/s_clover.bmp
+${PKGNAME}/share/config/symbol/s_egg.bmp
+${PKGNAME}/share/config/symbol/s_face.bmp
+${PKGNAME}/share/config/symbol/s_flower.bmp
+${PKGNAME}/share/config/symbol/s_ghost.bmp
+${PKGNAME}/share/config/symbol/s_group.bmp
+${PKGNAME}/share/config/symbol/s_halloween.bmp
+${PKGNAME}/share/config/symbol/s_heart.bmp
+${PKGNAME}/share/config/symbol/s_home.bmp
+${PKGNAME}/share/config/symbol/s_lock.bmp
+${PKGNAME}/share/config/symbol/s_ok-g.bmp
+${PKGNAME}/share/config/symbol/s_ok-r.bmp
+${PKGNAME}/share/config/symbol/s_ok.bmp
+${PKGNAME}/share/config/symbol/s_page_b.bmp
+${PKGNAME}/share/config/symbol/s_page_g.bmp
+${PKGNAME}/share/config/symbol/s_page_y.bmp
+${PKGNAME}/share/config/symbol/s_pen-b.bmp
+${PKGNAME}/share/config/symbol/s_pen-g.bmp
+${PKGNAME}/share/config/symbol/s_pen-r.bmp
+${PKGNAME}/share/config/symbol/s_people.bmp
+${PKGNAME}/share/config/symbol/s_smily_1.bmp
+${PKGNAME}/share/config/symbol/s_smily_oh.bmp
+${PKGNAME}/share/config/symbol/s_smily_sad.bmp
+${PKGNAME}/share/config/symbol/s_snow.bmp
+${PKGNAME}/share/config/symbol/s_star.bmp
+${PKGNAME}/share/config/symbol/s_team.bmp
+${PKGNAME}/share/config/symbol/s_x-g.bmp
+${PKGNAME}/share/config/symbol/s_x-r.bmp
+${PKGNAME}/share/config/symbol/s_x.bmp
+${PKGNAME}/share/config/webcast/common.inc
+${PKGNAME}/share/config/webcast/common.pl
+${PKGNAME}/share/config/webcast/edit.asp
+${PKGNAME}/share/config/webcast/edit.pl
+${PKGNAME}/share/config/webcast/editpic.asp
+${PKGNAME}/share/config/webcast/editpic.pl
+${PKGNAME}/share/config/webcast/index.pl
+${PKGNAME}/share/config/webcast/poll.asp
+${PKGNAME}/share/config/webcast/poll.pl
+${PKGNAME}/share/config/webcast/savepic.asp
+${PKGNAME}/share/config/webcast/savepic.pl
+${PKGNAME}/share/config/webcast/show.asp
+${PKGNAME}/share/config/webcast/show.pl
+${PKGNAME}/share/config/webcast/webcast.asp
+${PKGNAME}/share/config/webcast/webcast.pl
+${PKGNAME}/share/config/wizard/form/styles/beige.css
+${PKGNAME}/share/config/wizard/form/styles/bgr.css
+${PKGNAME}/share/config/wizard/form/styles/dark.css
+${PKGNAME}/share/config/wizard/form/styles/grey.css
+${PKGNAME}/share/config/wizard/form/styles/ibg.css
+${PKGNAME}/share/config/wizard/form/styles/ice.css
+${PKGNAME}/share/config/wizard/form/styles/orange.css
+${PKGNAME}/share/config/wizard/form/styles/red.css
+${PKGNAME}/share/config/wizard/form/styles/violet.css
+${PKGNAME}/share/config/wizard/form/styles/water.css
+${PKGNAME}/share/config/wizard/web/buttons/glas-blue.zip
+${PKGNAME}/share/config/wizard/web/buttons/glas-green.zip
+${PKGNAME}/share/config/wizard/web/buttons/glas-red.zip
+${PKGNAME}/share/config/wizard/web/buttons/round-gorilla.zip
+${PKGNAME}/share/config/wizard/web/buttons/round-white.zip
+${PKGNAME}/share/config/wizard/web/buttons/simple.zip
+${PKGNAME}/share/config/wizard/web/buttons/square-blue.zip
+${PKGNAME}/share/config/wizard/web/buttons/square-gray.zip
+${PKGNAME}/share/config/wizard/web/buttons/square-green.zip
+${PKGNAME}/share/config/wizard/web/buttons/square-red.zip
+${PKGNAME}/share/config/wizard/web/buttons/square-yellow.zip
+${PKGNAME}/share/config/wizard/web/images/calc.gif
+${PKGNAME}/share/config/wizard/web/images/draw.gif
+${PKGNAME}/share/config/wizard/web/images/fls.gif
+${PKGNAME}/share/config/wizard/web/images/graphics.gif
+${PKGNAME}/share/config/wizard/web/images/html.gif
+${PKGNAME}/share/config/wizard/web/images/impress.gif
+${PKGNAME}/share/config/wizard/web/images/media.gif
+${PKGNAME}/share/config/wizard/web/images/other.gif
+${PKGNAME}/share/config/wizard/web/images/pdf.gif
+${PKGNAME}/share/config/wizard/web/images/writer.gif
+${PKGNAME}/share/config/wizard/web/layouts/diagonal/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/mainframe.html
+${PKGNAME}/share/config/wizard/web/layouts/frame_bottom/tocframe.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_left/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_left/mainframe.html
+${PKGNAME}/share/config/wizard/web/layouts/frame_left/tocframe.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_right/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_right/mainframe.html
+${PKGNAME}/share/config/wizard/web/layouts/frame_right/tocframe.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_top/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/frame_top/mainframe.html
+${PKGNAME}/share/config/wizard/web/layouts/frame_top/tocframe.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/layout.xsl
+${PKGNAME}/share/config/wizard/web/layouts/layoutF.xsl
+${PKGNAME}/share/config/wizard/web/layouts/layoutX.xsl
+${PKGNAME}/share/config/wizard/web/layouts/simple/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/source.xml.xsl
+${PKGNAME}/share/config/wizard/web/layouts/table_2/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/table_3/index.html.xsl
+${PKGNAME}/share/config/wizard/web/layouts/zigzag/index.html.xsl
+${PKGNAME}/share/config/wizard/web/preview.html
+${PKGNAME}/share/config/wizard/web/styles/beige.css
+${PKGNAME}/share/config/wizard/web/styles/bg.css
+${PKGNAME}/share/config/wizard/web/styles/bgr.css
+${PKGNAME}/share/config/wizard/web/styles/bgrey.css
+${PKGNAME}/share/config/wizard/web/styles/bwb.css
+${PKGNAME}/share/config/wizard/web/styles/bwo.css
+${PKGNAME}/share/config/wizard/web/styles/dark.css
+${PKGNAME}/share/config/wizard/web/styles/dp.css
+${PKGNAME}/share/config/wizard/web/styles/forest.css
+${PKGNAME}/share/config/wizard/web/styles/green.css
+${PKGNAME}/share/config/wizard/web/styles/greenred.css
+${PKGNAME}/share/config/wizard/web/styles/grey.css
+${PKGNAME}/share/config/wizard/web/styles/ibg.css
+${PKGNAME}/share/config/wizard/web/styles/ice.css
+${PKGNAME}/share/config/wizard/web/styles/marine.css
+${PKGNAME}/share/config/wizard/web/styles/orange.css
+${PKGNAME}/share/config/wizard/web/styles/pc_old.css
+${PKGNAME}/share/config/wizard/web/styles/red.css
+${PKGNAME}/share/config/wizard/web/styles/rgb.css
+${PKGNAME}/share/config/wizard/web/styles/strange.css
+${PKGNAME}/share/config/wizard/web/styles/violet.css
+${PKGNAME}/share/config/wizard/web/styles/water.css
+${PKGNAME}/share/dtd/officedocument/1_0/Manifest.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/accelerator.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/chart.mod
+${PKGNAME}/share/dtd/officedocument/1_0/datastyl.mod
+${PKGNAME}/share/dtd/officedocument/1_0/defs.mod
+${PKGNAME}/share/dtd/officedocument/1_0/dialog.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/drawing.mod
+${PKGNAME}/share/dtd/officedocument/1_0/dtypes.mod
+${PKGNAME}/share/dtd/officedocument/1_0/event.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/form.mod
+${PKGNAME}/share/dtd/officedocument/1_0/groupuinames.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/image.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/libraries.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/library.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/menubar.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/meta.mod
+${PKGNAME}/share/dtd/officedocument/1_0/module.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/nmspace.mod
+${PKGNAME}/share/dtd/officedocument/1_0/office.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/office.mod
+${PKGNAME}/share/dtd/officedocument/1_0/script.mod
+${PKGNAME}/share/dtd/officedocument/1_0/settings.mod
+${PKGNAME}/share/dtd/officedocument/1_0/statusbar.dtd
+${PKGNAME}/share/dtd/officedocument/1_0/style.mod
+${PKGNAME}/share/dtd/officedocument/1_0/table.mod
+${PKGNAME}/share/dtd/officedocument/1_0/text.mod
+${PKGNAME}/share/dtd/officedocument/1_0/toolbar.dtd
+${PKGNAME}/share/extensions/dict-en/Lightproof.py
+${PKGNAME}/share/extensions/dict-en/Linguistic.xcu
+${PKGNAME}/share/extensions/dict-en/META-INF/manifest.xml
+${PKGNAME}/share/extensions/dict-en/README.txt
+${PKGNAME}/share/extensions/dict-en/README_en_AU.txt
+${PKGNAME}/share/extensions/dict-en/README_en_CA.txt
+${PKGNAME}/share/extensions/dict-en/README_en_GB.txt
+${PKGNAME}/share/extensions/dict-en/README_en_GB_thes.txt
+${PKGNAME}/share/extensions/dict-en/README_en_US.txt
+${PKGNAME}/share/extensions/dict-en/README_en_ZA.txt
+${PKGNAME}/share/extensions/dict-en/README_hyph_en_GB.txt
+${PKGNAME}/share/extensions/dict-en/README_hyph_en_US.txt
+${PKGNAME}/share/extensions/dict-en/README_lightproof_en.txt
+${PKGNAME}/share/extensions/dict-en/WordNet_license.txt
+${PKGNAME}/share/extensions/dict-en/affDescription.txt
+${PKGNAME}/share/extensions/dict-en/description.xml
+${PKGNAME}/share/extensions/dict-en/dialog/OptionsDialog.xcs
+${PKGNAME}/share/extensions/dict-en/dialog/OptionsDialog.xcu
+${PKGNAME}/share/extensions/dict-en/dialog/en.xdl
+${PKGNAME}/share/extensions/dict-en/dialog/en_en_US.default
+${PKGNAME}/share/extensions/dict-en/dialog/en_en_US.properties
+${PKGNAME}/share/extensions/dict-en/dictionaries.xcu
+${PKGNAME}/share/extensions/dict-en/en_AU.aff
+${PKGNAME}/share/extensions/dict-en/en_AU.dic
+${PKGNAME}/share/extensions/dict-en/en_CA.aff
+${PKGNAME}/share/extensions/dict-en/en_CA.dic
+${PKGNAME}/share/extensions/dict-en/en_GB.aff
+${PKGNAME}/share/extensions/dict-en/en_GB.dic
+${PKGNAME}/share/extensions/dict-en/en_US.aff
+${PKGNAME}/share/extensions/dict-en/en_US.dic
+${PKGNAME}/share/extensions/dict-en/en_ZA.aff
+${PKGNAME}/share/extensions/dict-en/en_ZA.dic
+${PKGNAME}/share/extensions/dict-en/hyph_en_GB.dic
+${PKGNAME}/share/extensions/dict-en/hyph_en_US.dic
+${PKGNAME}/share/extensions/dict-en/license.txt
+${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_en.py
+${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_handler_en.py
+${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_impl_en.py
+${PKGNAME}/share/extensions/dict-en/pythonpath/lightproof_opts_en.py
+${PKGNAME}/share/extensions/dict-en/th_en_US_v2.dat
+${PKGNAME}/share/extensions/dict-en/th_en_US_v2.idx
+${PKGNAME}/share/extensions/dict-es/META-INF/manifest.xml
+${PKGNAME}/share/extensions/dict-es/README_es_ES.txt
+${PKGNAME}/share/extensions/dict-es/description.xml
+${PKGNAME}/share/extensions/dict-es/dictionaries.xcu
+${PKGNAME}/share/extensions/dict-es/es_ES.aff
+${PKGNAME}/share/extensions/dict-es/es_ES.dic
+${PKGNAME}/share/extensions/dict-fr/META-INF/manifest.xml
+${PKGNAME}/share/extensions/dict-fr/README_fr.txt
+${PKGNAME}/share/extensions/dict-fr/README_hyph_fr.txt
+${PKGNAME}/share/extensions/dict-fr/README_thes_fr.txt
+${PKGNAME}/share/extensions/dict-fr/description.xml
+${PKGNAME}/share/extensions/dict-fr/dictionaries.xcu
+${PKGNAME}/share/extensions/dict-fr/fr.aff
+${PKGNAME}/share/extensions/dict-fr/fr.dic
+${PKGNAME}/share/extensions/dict-fr/hyph-fr.tex
+${PKGNAME}/share/extensions/dict-fr/hyph_fr.dic
+${PKGNAME}/share/extensions/dict-fr/icon.png
+${PKGNAME}/share/extensions/dict-fr/package-description.txt
+${PKGNAME}/share/extensions/dict-fr/thes_fr.dat
+${PKGNAME}/share/extensions/dict-fr/thes_fr.idx
+${PKGNAME}/share/extensions/package.txt
+${PKGNAME}/share/extensions/pdfimport/META-INF/manifest.xml
+${PKGNAME}/share/extensions/pdfimport/basic/Module1.xba
+${PKGNAME}/share/extensions/pdfimport/basic/TargetChooser.xdl
+${PKGNAME}/share/extensions/pdfimport/basic/dialog.xlb
+${PKGNAME}/share/extensions/pdfimport/basic/impress.png
+${PKGNAME}/share/extensions/pdfimport/basic/script.xlb
+${PKGNAME}/share/extensions/pdfimport/basic/writer.png
+${PKGNAME}/share/extensions/pdfimport/description-en-US.txt
+${PKGNAME}/share/extensions/pdfimport/description.xml
+${PKGNAME}/share/extensions/pdfimport/images/extension_32.png
+${PKGNAME}/share/extensions/pdfimport/pdf_import_filter.xcu
+${PKGNAME}/share/extensions/pdfimport/pdf_types.xcu
+${PKGNAME}/share/extensions/pdfimport/pdfimport.uno.so
+${PKGNAME}/share/extensions/pdfimport/registration/LICENSE
+${PKGNAME}/share/extensions/pdfimport/xpdfimport
+${PKGNAME}/share/extensions/pdfimport/xpdfimport_err.pdf
+${PKGNAME}/share/extensions/presentation-minimizer/META-INF/manifest.xml
+${PKGNAME}/share/extensions/presentation-minimizer/SunPresentationMinimizer.uno.so
+${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/extension_32.png
+${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/minimizepresi_80.png
+${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/opt_16.png
+${PKGNAME}/share/extensions/presentation-minimizer/bitmaps/opt_26.png
+${PKGNAME}/share/extensions/presentation-minimizer/description-en-US.txt
+${PKGNAME}/share/extensions/presentation-minimizer/description.xml
+${PKGNAME}/share/extensions/presentation-minimizer/registration/LICENSE
+${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/Addons.xcu
+${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/ProtocolHandler.xcu
+${PKGNAME}/share/extensions/presentation-minimizer/registry/data/org/openoffice/Office/extension/SunPresentationMinimizer.xcu
+${PKGNAME}/share/extensions/presentation-minimizer/registry/schema/org/openoffice/Office/extension/SunPresentationMinimizer.xcs
+${PKGNAME}/share/extensions/script-provider-for-python/META-INF/manifest.xml
+${PKGNAME}/share/extensions/script-provider-for-python/components.rdb
+${PKGNAME}/share/extensions/script-provider-for-python/description-en-US.txt
+${PKGNAME}/share/extensions/script-provider-for-python/description.xml
+${PKGNAME}/share/extensions/script-provider-for-python/pythonscript.py
+${PKGNAME}/share/extensions/script-provider-for-python/registration/LICENSE
+${PKGNAME}/share/fonts/truetype/DejaVuSans-Bold.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSans-BoldOblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSans-ExtraLight.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSans-Oblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSans.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-Bold.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-BoldOblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed-Oblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansCondensed.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansMono-Bold.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansMono-BoldOblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansMono-Oblique.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSansMono.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerif-Bold.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerif-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerif-Italic.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerif.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-Bold.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed-Italic.ttf
+${PKGNAME}/share/fonts/truetype/DejaVuSerifCondensed.ttf
+${PKGNAME}/share/fonts/truetype/GenBasB.ttf
+${PKGNAME}/share/fonts/truetype/GenBasBI.ttf
+${PKGNAME}/share/fonts/truetype/GenBasI.ttf
+${PKGNAME}/share/fonts/truetype/GenBasR.ttf
+${PKGNAME}/share/fonts/truetype/GenBkBasB.ttf
+${PKGNAME}/share/fonts/truetype/GenBkBasBI.ttf
+${PKGNAME}/share/fonts/truetype/GenBkBasI.ttf
+${PKGNAME}/share/fonts/truetype/GenBkBasR.ttf
+${PKGNAME}/share/fonts/truetype/LiberationMono-Bold.ttf
+${PKGNAME}/share/fonts/truetype/LiberationMono-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationMono-Italic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationMono-Regular.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSans-Bold.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSans-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSans-Italic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSans-Regular.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Bold.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Italic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSansNarrow-Regular.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSerif-Bold.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSerif-BoldItalic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSerif-Italic.ttf
+${PKGNAME}/share/fonts/truetype/LiberationSerif-Regular.ttf
+${PKGNAME}/share/fonts/truetype/LinBiolinum_RB_G.ttf
+${PKGNAME}/share/fonts/truetype/LinBiolinum_RI_G.ttf
+${PKGNAME}/share/fonts/truetype/LinBiolinum_R_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_RBI_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_RB_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_RI_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_RZI_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_RZ_G.ttf
+${PKGNAME}/share/fonts/truetype/LinLibertine_R_G.ttf
+${PKGNAME}/share/fonts/truetype/fc_local.conf
+${PKGNAME}/share/fonts/truetype/opens___.ttf
+${PKGNAME}/share/gallery/apples.gif
+${PKGNAME}/share/gallery/bigapple.gif
+${PKGNAME}/share/gallery/bullets/blkpearl.gif
+${PKGNAME}/share/gallery/bullets/bluarrow.gif
+${PKGNAME}/share/gallery/bullets/bluball.gif
+${PKGNAME}/share/gallery/bullets/bludiamd.gif
+${PKGNAME}/share/gallery/bullets/bluered.gif
+${PKGNAME}/share/gallery/bullets/blusqare.gif
+${PKGNAME}/share/gallery/bullets/blustar.gif
+${PKGNAME}/share/gallery/bullets/coffee_1.gif
+${PKGNAME}/share/gallery/bullets/coffee_2.gif
+${PKGNAME}/share/gallery/bullets/coffee_3.gif
+${PKGNAME}/share/gallery/bullets/coffee_4.gif
+${PKGNAME}/share/gallery/bullets/coffee_5.gif
+${PKGNAME}/share/gallery/bullets/con-blue.gif
+${PKGNAME}/share/gallery/bullets/con-cyan.gif
+${PKGNAME}/share/gallery/bullets/con-green.gif
+${PKGNAME}/share/gallery/bullets/con-lilac.gif
+${PKGNAME}/share/gallery/bullets/con-oran.gif
+${PKGNAME}/share/gallery/bullets/con-pink.gif
+${PKGNAME}/share/gallery/bullets/con-red.gif
+${PKGNAME}/share/gallery/bullets/con-yellow.gif
+${PKGNAME}/share/gallery/bullets/corner_1.gif
+${PKGNAME}/share/gallery/bullets/corner_2.gif
+${PKGNAME}/share/gallery/bullets/corner_3.gif
+${PKGNAME}/share/gallery/bullets/corner_4.gif
+${PKGNAME}/share/gallery/bullets/darkball.gif
+${PKGNAME}/share/gallery/bullets/darkblue.gif
+${PKGNAME}/share/gallery/bullets/gldpearl.gif
+${PKGNAME}/share/gallery/bullets/golfball.gif
+${PKGNAME}/share/gallery/bullets/grnarrow.gif
+${PKGNAME}/share/gallery/bullets/grnball.gif
+${PKGNAME}/share/gallery/bullets/grndiamd.gif
+${PKGNAME}/share/gallery/bullets/grnpearl.gif
+${PKGNAME}/share/gallery/bullets/grnsqare.gif
+${PKGNAME}/share/gallery/bullets/grnstar.gif
+${PKGNAME}/share/gallery/bullets/gryarrow.gif
+${PKGNAME}/share/gallery/bullets/gryball.gif
+${PKGNAME}/share/gallery/bullets/grydiamd.gif
+${PKGNAME}/share/gallery/bullets/grysqare.gif
+${PKGNAME}/share/gallery/bullets/grystar.gif
+${PKGNAME}/share/gallery/bullets/orgarrow.gif
+${PKGNAME}/share/gallery/bullets/orgball.gif
+${PKGNAME}/share/gallery/bullets/orgdiamd.gif
+${PKGNAME}/share/gallery/bullets/orgsqare.gif
+${PKGNAME}/share/gallery/bullets/orgstar.gif
+${PKGNAME}/share/gallery/bullets/pebble_1.gif
+${PKGNAME}/share/gallery/bullets/pebble_2.gif
+${PKGNAME}/share/gallery/bullets/pebble_3.gif
+${PKGNAME}/share/gallery/bullets/poliball.gif
+${PKGNAME}/share/gallery/bullets/popcorn_1.gif
+${PKGNAME}/share/gallery/bullets/popcorn_2.gif
+${PKGNAME}/share/gallery/bullets/rainbow.gif
+${PKGNAME}/share/gallery/bullets/redarrow.gif
+${PKGNAME}/share/gallery/bullets/redball.gif
+${PKGNAME}/share/gallery/bullets/reddiamd.gif
+${PKGNAME}/share/gallery/bullets/redsqare.gif
+${PKGNAME}/share/gallery/bullets/redstar.gif
+${PKGNAME}/share/gallery/bullets/whtpearl.gif
+${PKGNAME}/share/gallery/bullets/ylwarrow.gif
+${PKGNAME}/share/gallery/bullets/ylwball.gif
+${PKGNAME}/share/gallery/bullets/ylwdiamd.gif
+${PKGNAME}/share/gallery/bullets/ylwsqare.gif
+${PKGNAME}/share/gallery/bullets/ylwstar.gif
+${PKGNAME}/share/gallery/flower.gif
+${PKGNAME}/share/gallery/flowers.gif
+${PKGNAME}/share/gallery/htmlexpo/bludown.gif
+${PKGNAME}/share/gallery/htmlexpo/blufirs.gif
+${PKGNAME}/share/gallery/htmlexpo/blufirs_.gif
+${PKGNAME}/share/gallery/htmlexpo/blulast.gif
+${PKGNAME}/share/gallery/htmlexpo/blulast_.gif
+${PKGNAME}/share/gallery/htmlexpo/blunav.gif
+${PKGNAME}/share/gallery/htmlexpo/blunext.gif
+${PKGNAME}/share/gallery/htmlexpo/blunext_.gif
+${PKGNAME}/share/gallery/htmlexpo/bluprev.gif
+${PKGNAME}/share/gallery/htmlexpo/bluprev_.gif
+${PKGNAME}/share/gallery/htmlexpo/blutext.gif
+${PKGNAME}/share/gallery/htmlexpo/bluup.gif
+${PKGNAME}/share/gallery/htmlexpo/cubdown.gif
+${PKGNAME}/share/gallery/htmlexpo/cubfirs.gif
+${PKGNAME}/share/gallery/htmlexpo/cubfirs_.gif
+${PKGNAME}/share/gallery/htmlexpo/cublast.gif
+${PKGNAME}/share/gallery/htmlexpo/cublast_.gif
+${PKGNAME}/share/gallery/htmlexpo/cubnav.gif
+${PKGNAME}/share/gallery/htmlexpo/cubnext.gif
+${PKGNAME}/share/gallery/htmlexpo/cubnext_.gif
+${PKGNAME}/share/gallery/htmlexpo/cubprev.gif
+${PKGNAME}/share/gallery/htmlexpo/cubprev_.gif
+${PKGNAME}/share/gallery/htmlexpo/cubtext.gif
+${PKGNAME}/share/gallery/htmlexpo/cubup.gif
+${PKGNAME}/share/gallery/htmlexpo/gredown.gif
+${PKGNAME}/share/gallery/htmlexpo/grefirs.gif
+${PKGNAME}/share/gallery/htmlexpo/grefirs_.gif
+${PKGNAME}/share/gallery/htmlexpo/grelast.gif
+${PKGNAME}/share/gallery/htmlexpo/grelast_.gif
+${PKGNAME}/share/gallery/htmlexpo/grenav.gif
+${PKGNAME}/share/gallery/htmlexpo/grenext.gif
+${PKGNAME}/share/gallery/htmlexpo/grenext_.gif
+${PKGNAME}/share/gallery/htmlexpo/greprev.gif
+${PKGNAME}/share/gallery/htmlexpo/greprev_.gif
+${PKGNAME}/share/gallery/htmlexpo/gretext.gif
+${PKGNAME}/share/gallery/htmlexpo/greup.gif
+${PKGNAME}/share/gallery/htmlexpo/simdown.gif
+${PKGNAME}/share/gallery/htmlexpo/simfirs.gif
+${PKGNAME}/share/gallery/htmlexpo/simfirs_.gif
+${PKGNAME}/share/gallery/htmlexpo/simlast.gif
+${PKGNAME}/share/gallery/htmlexpo/simlast_.gif
+${PKGNAME}/share/gallery/htmlexpo/simnav.gif
+${PKGNAME}/share/gallery/htmlexpo/simnext.gif
+${PKGNAME}/share/gallery/htmlexpo/simnext_.gif
+${PKGNAME}/share/gallery/htmlexpo/simprev.gif
+${PKGNAME}/share/gallery/htmlexpo/simprev_.gif
+${PKGNAME}/share/gallery/htmlexpo/simtext.gif
+${PKGNAME}/share/gallery/htmlexpo/simup.gif
+${PKGNAME}/share/gallery/rulers/blkballs.gif
+${PKGNAME}/share/gallery/rulers/blurulr1.gif
+${PKGNAME}/share/gallery/rulers/blurulr2.gif
+${PKGNAME}/share/gallery/rulers/blurulr3.gif
+${PKGNAME}/share/gallery/rulers/blurulr4.gif
+${PKGNAME}/share/gallery/rulers/blurulr5.gif
+${PKGNAME}/share/gallery/rulers/blurulr6.gif
+${PKGNAME}/share/gallery/rulers/gldballs.gif
+${PKGNAME}/share/gallery/rulers/grnballs.gif
+${PKGNAME}/share/gallery/rulers/grnrulr1.gif
+${PKGNAME}/share/gallery/rulers/grnrulr2.gif
+${PKGNAME}/share/gallery/rulers/grnrulr3.gif
+${PKGNAME}/share/gallery/rulers/grnrulr4.gif
+${PKGNAME}/share/gallery/rulers/gryrulr1.gif
+${PKGNAME}/share/gallery/rulers/gryrulr2.gif
+${PKGNAME}/share/gallery/rulers/gryrulr3.gif
+${PKGNAME}/share/gallery/rulers/orgrulr1.gif
+${PKGNAME}/share/gallery/rulers/redrulr1.gif
+${PKGNAME}/share/gallery/rulers/redrulr2.gif
+${PKGNAME}/share/gallery/rulers/redrulr3.gif
+${PKGNAME}/share/gallery/rulers/redrulr4.gif
+${PKGNAME}/share/gallery/rulers/redrulr5.gif
+${PKGNAME}/share/gallery/rulers/striped.gif
+${PKGNAME}/share/gallery/rulers/whtballs.gif
+${PKGNAME}/share/gallery/rulers/ylwrulr1.gif
+${PKGNAME}/share/gallery/sg1.sdg
+${PKGNAME}/share/gallery/sg1.sdv
+${PKGNAME}/share/gallery/sg1.thm
+${PKGNAME}/share/gallery/sg2.sdg
+${PKGNAME}/share/gallery/sg2.sdv
+${PKGNAME}/share/gallery/sg2.thm
+${PKGNAME}/share/gallery/sg24.sdg
+${PKGNAME}/share/gallery/sg24.sdv
+${PKGNAME}/share/gallery/sg24.thm
+${PKGNAME}/share/gallery/sg25.sdg
+${PKGNAME}/share/gallery/sg25.sdv
+${PKGNAME}/share/gallery/sg25.thm
+${PKGNAME}/share/gallery/sg3.sdg
+${PKGNAME}/share/gallery/sg3.sdv
+${PKGNAME}/share/gallery/sg3.thm
+${PKGNAME}/share/gallery/sg36.sdg
+${PKGNAME}/share/gallery/sg36.sdv
+${PKGNAME}/share/gallery/sg36.thm
+${PKGNAME}/share/gallery/sg4.sdg
+${PKGNAME}/share/gallery/sg4.sdv
+${PKGNAME}/share/gallery/sg4.thm
+${PKGNAME}/share/gallery/sg9.sdg
+${PKGNAME}/share/gallery/sg9.sdv
+${PKGNAME}/share/gallery/sg9.thm
+${PKGNAME}/share/gallery/sky.gif
+${PKGNAME}/share/gallery/sounds/apert.wav
+${PKGNAME}/share/gallery/sounds/apert2.wav
+${PKGNAME}/share/gallery/sounds/applause.wav
+${PKGNAME}/share/gallery/sounds/beam.wav
+${PKGNAME}/share/gallery/sounds/beam2.wav
+${PKGNAME}/share/gallery/sounds/cow.wav
+${PKGNAME}/share/gallery/sounds/curve.wav
+${PKGNAME}/share/gallery/sounds/drama.wav
+${PKGNAME}/share/gallery/sounds/explos.wav
+${PKGNAME}/share/gallery/sounds/falling.wav
+${PKGNAME}/share/gallery/sounds/glasses.wav
+${PKGNAME}/share/gallery/sounds/gong.wav
+${PKGNAME}/share/gallery/sounds/horse.wav
+${PKGNAME}/share/gallery/sounds/kling.wav
+${PKGNAME}/share/gallery/sounds/kongas.wav
+${PKGNAME}/share/gallery/sounds/laser.wav
+${PKGNAME}/share/gallery/sounds/left.wav
+${PKGNAME}/share/gallery/sounds/nature1.wav
+${PKGNAME}/share/gallery/sounds/nature2.wav
+${PKGNAME}/share/gallery/sounds/ok.wav
+${PKGNAME}/share/gallery/sounds/pluck.wav
+${PKGNAME}/share/gallery/sounds/roll.wav
+${PKGNAME}/share/gallery/sounds/romans.wav
+${PKGNAME}/share/gallery/sounds/soft.wav
+${PKGNAME}/share/gallery/sounds/space.wav
+${PKGNAME}/share/gallery/sounds/space2.wav
+${PKGNAME}/share/gallery/sounds/space3.wav
+${PKGNAME}/share/gallery/sounds/sparcle.wav
+${PKGNAME}/share/gallery/sounds/strom.wav
+${PKGNAME}/share/gallery/sounds/theetone.wav
+${PKGNAME}/share/gallery/sounds/top.wav
+${PKGNAME}/share/gallery/sounds/train.wav
+${PKGNAME}/share/gallery/sounds/untie.wav
+${PKGNAME}/share/gallery/sounds/ups.wav
+${PKGNAME}/share/gallery/sounds/wallewal.wav
+${PKGNAME}/share/gallery/www-back/aqua.jpg
+${PKGNAME}/share/gallery/www-back/bathroom.jpg
+${PKGNAME}/share/gallery/www-back/blocks.jpg
+${PKGNAME}/share/gallery/www-back/blow_green.jpg
+${PKGNAME}/share/gallery/www-back/blueblop.jpg
+${PKGNAME}/share/gallery/www-back/bulging.jpg
+${PKGNAME}/share/gallery/www-back/canvas_blue.jpg
+${PKGNAME}/share/gallery/www-back/cheese.jpg
+${PKGNAME}/share/gallery/www-back/chocolate.jpg
+${PKGNAME}/share/gallery/www-back/citrus.jpg
+${PKGNAME}/share/gallery/www-back/confetti.jpg
+${PKGNAME}/share/gallery/www-back/daisy.jpg
+${PKGNAME}/share/gallery/www-back/fluffy-grey.jpg
+${PKGNAME}/share/gallery/www-back/fluffy.jpg
+${PKGNAME}/share/gallery/www-back/fuzzy-blue.jpg
+${PKGNAME}/share/gallery/www-back/fuzzy-darkgrey.jpg
+${PKGNAME}/share/gallery/www-back/fuzzy-grey.jpg
+${PKGNAME}/share/gallery/www-back/fuzzy-lightgrey.jpg
+${PKGNAME}/share/gallery/www-back/fuzzy_light.jpg
+${PKGNAME}/share/gallery/www-back/gregre.gif
+${PKGNAME}/share/gallery/www-back/grey.gif
+${PKGNAME}/share/gallery/www-back/grypaws.gif
+${PKGNAME}/share/gallery/www-back/ice-blue.jpg
+${PKGNAME}/share/gallery/www-back/ice-light.jpg
+${PKGNAME}/share/gallery/www-back/imitation_leather.jpg
+${PKGNAME}/share/gallery/www-back/interstices.jpg
+${PKGNAME}/share/gallery/www-back/jeans.jpg
+${PKGNAME}/share/gallery/www-back/jeansblk.jpg
+${PKGNAME}/share/gallery/www-back/lawn-artificial.jpg
+${PKGNAME}/share/gallery/www-back/lawn.jpg
+${PKGNAME}/share/gallery/www-back/lightblue-wet.jpg
+${PKGNAME}/share/gallery/www-back/linen-fine.jpg
+${PKGNAME}/share/gallery/www-back/lino-green.jpg
+${PKGNAME}/share/gallery/www-back/liquid-blue.jpg
+${PKGNAME}/share/gallery/www-back/marble.jpg
+${PKGNAME}/share/gallery/www-back/marble_dark.jpg
+${PKGNAME}/share/gallery/www-back/mazes.jpg
+${PKGNAME}/share/gallery/www-back/mint.gif
+${PKGNAME}/share/gallery/www-back/notes.gif
+${PKGNAME}/share/gallery/www-back/pattern.jpg
+${PKGNAME}/share/gallery/www-back/pebble-light.jpg
+${PKGNAME}/share/gallery/www-back/pink.gif
+${PKGNAME}/share/gallery/www-back/pool.jpg
+${PKGNAME}/share/gallery/www-back/popcorn.jpg
+${PKGNAME}/share/gallery/www-back/purple.jpg
+${PKGNAME}/share/gallery/www-back/reddark.jpg
+${PKGNAME}/share/gallery/www-back/rings-green.jpg
+${PKGNAME}/share/gallery/www-back/rings-orange.jpg
+${PKGNAME}/share/gallery/www-back/roses.jpg
+${PKGNAME}/share/gallery/www-back/sand-light.jpg
+${PKGNAME}/share/gallery/www-back/sand.jpg
+${PKGNAME}/share/gallery/www-back/sky.jpg
+${PKGNAME}/share/gallery/www-back/soft-structure_grey.jpg
+${PKGNAME}/share/gallery/www-back/space.jpg
+${PKGNAME}/share/gallery/www-back/stone-dark.jpg
+${PKGNAME}/share/gallery/www-back/stone.jpg
+${PKGNAME}/share/gallery/www-back/structure.jpg
+${PKGNAME}/share/gallery/www-back/structure_darkgreen.gif
+${PKGNAME}/share/gallery/www-back/structure_green.jpg
+${PKGNAME}/share/gallery/www-back/wall-grey.jpg
+${PKGNAME}/share/gallery/www-back/wet-turquoise.jpg
+${PKGNAME}/share/gallery/www-back/wood.jpg
+${PKGNAME}/share/gallery/www-graf/bluat.gif
+${PKGNAME}/share/gallery/www-graf/bluback.gif
+${PKGNAME}/share/gallery/www-graf/bludisk.gif
+${PKGNAME}/share/gallery/www-graf/bludown.gif
+${PKGNAME}/share/gallery/www-graf/bluhome.gif
+${PKGNAME}/share/gallery/www-graf/bluinfo.gif
+${PKGNAME}/share/gallery/www-graf/bluleft.gif
+${PKGNAME}/share/gallery/www-graf/blumail.gif
+${PKGNAME}/share/gallery/www-graf/bluminus.gif
+${PKGNAME}/share/gallery/www-graf/bluplus.gif
+${PKGNAME}/share/gallery/www-graf/bluquest.gif
+${PKGNAME}/share/gallery/www-graf/bluright.gif
+${PKGNAME}/share/gallery/www-graf/bluup.gif
+${PKGNAME}/share/gallery/www-graf/gredisk.gif
+${PKGNAME}/share/gallery/www-graf/gredown.gif
+${PKGNAME}/share/gallery/www-graf/grehome.gif
+${PKGNAME}/share/gallery/www-graf/greinfo.gif
+${PKGNAME}/share/gallery/www-graf/greleft.gif
+${PKGNAME}/share/gallery/www-graf/gremail.gif
+${PKGNAME}/share/gallery/www-graf/greminus.gif
+${PKGNAME}/share/gallery/www-graf/greplus.gif
+${PKGNAME}/share/gallery/www-graf/grequest.gif
+${PKGNAME}/share/gallery/www-graf/greright.gif
+${PKGNAME}/share/gallery/www-graf/greup.gif
+${PKGNAME}/share/gallery/www-graf/grnat.gif
+${PKGNAME}/share/gallery/www-graf/grnback.gif
+${PKGNAME}/share/gallery/www-graf/grndisk.gif
+${PKGNAME}/share/gallery/www-graf/grndown.gif
+${PKGNAME}/share/gallery/www-graf/grnexcla.gif
+${PKGNAME}/share/gallery/www-graf/grnhome.gif
+${PKGNAME}/share/gallery/www-graf/grninfo.gif
+${PKGNAME}/share/gallery/www-graf/grnleft.gif
+${PKGNAME}/share/gallery/www-graf/grnmail.gif
+${PKGNAME}/share/gallery/www-graf/grnminus.gif
+${PKGNAME}/share/gallery/www-graf/grnplus.gif
+${PKGNAME}/share/gallery/www-graf/grnquest.gif
+${PKGNAME}/share/gallery/www-graf/grnright.gif
+${PKGNAME}/share/gallery/www-graf/grnup.gif
+${PKGNAME}/share/gallery/www-graf/gryat.gif
+${PKGNAME}/share/gallery/www-graf/gryback.gif
+${PKGNAME}/share/gallery/www-graf/grydisk.gif
+${PKGNAME}/share/gallery/www-graf/grydown.gif
+${PKGNAME}/share/gallery/www-graf/gryhome.gif
+${PKGNAME}/share/gallery/www-graf/gryinfo.gif
+${PKGNAME}/share/gallery/www-graf/gryleft.gif
+${PKGNAME}/share/gallery/www-graf/grymail.gif
+${PKGNAME}/share/gallery/www-graf/gryminus.gif
+${PKGNAME}/share/gallery/www-graf/gryplus.gif
+${PKGNAME}/share/gallery/www-graf/gryquest.gif
+${PKGNAME}/share/gallery/www-graf/gryright.gif
+${PKGNAME}/share/gallery/www-graf/gryup.gif
+${PKGNAME}/share/gallery/www-graf/men@work.gif
+${PKGNAME}/share/gallery/www-graf/orgat.gif
+${PKGNAME}/share/gallery/www-graf/orgback.gif
+${PKGNAME}/share/gallery/www-graf/orgdisk.gif
+${PKGNAME}/share/gallery/www-graf/orgdown.gif
+${PKGNAME}/share/gallery/www-graf/orghome.gif
+${PKGNAME}/share/gallery/www-graf/orginfo.gif
+${PKGNAME}/share/gallery/www-graf/orgleft.gif
+${PKGNAME}/share/gallery/www-graf/orgmail.gif
+${PKGNAME}/share/gallery/www-graf/orgminus.gif
+${PKGNAME}/share/gallery/www-graf/orgplus.gif
+${PKGNAME}/share/gallery/www-graf/orgquest.gif
+${PKGNAME}/share/gallery/www-graf/orgright.gif
+${PKGNAME}/share/gallery/www-graf/orgup.gif
+${PKGNAME}/share/gallery/www-graf/redat.gif
+${PKGNAME}/share/gallery/www-graf/redback.gif
+${PKGNAME}/share/gallery/www-graf/reddisk.gif
+${PKGNAME}/share/gallery/www-graf/reddown.gif
+${PKGNAME}/share/gallery/www-graf/redhome.gif
+${PKGNAME}/share/gallery/www-graf/redinfo.gif
+${PKGNAME}/share/gallery/www-graf/redleft.gif
+${PKGNAME}/share/gallery/www-graf/redmail.gif
+${PKGNAME}/share/gallery/www-graf/redminus.gif
+${PKGNAME}/share/gallery/www-graf/redplus.gif
+${PKGNAME}/share/gallery/www-graf/redquest.gif
+${PKGNAME}/share/gallery/www-graf/redright.gif
+${PKGNAME}/share/gallery/www-graf/redup.gif
+${PKGNAME}/share/gallery/www-graf/turdown.gif
+${PKGNAME}/share/gallery/www-graf/turhome.gif
+${PKGNAME}/share/gallery/www-graf/turleft.gif
+${PKGNAME}/share/gallery/www-graf/turright.gif
+${PKGNAME}/share/gallery/www-graf/turup.gif
+${PKGNAME}/share/gallery/www-graf/viohome.gif
+${PKGNAME}/share/gallery/www-graf/violeft.gif
+${PKGNAME}/share/gallery/www-graf/vioright.gif
+${PKGNAME}/share/gallery/www-graf/vioup.gif
+${PKGNAME}/share/gallery/www-graf/ylwdown.gif
+${PKGNAME}/share/gallery/www-graf/ylwhome.gif
+${PKGNAME}/share/gallery/www-graf/ylwleft.gif
+${PKGNAME}/share/gallery/www-graf/ylwmail.gif
+${PKGNAME}/share/gallery/www-graf/ylwright.gif
+${PKGNAME}/share/gallery/www-graf/ylwup.gif
+${PKGNAME}/share/psprint/driver/SGENPRT.PS
+${PKGNAME}/share/psprint/driver/SGENT42.PS
+${PKGNAME}/share/psprint/fontmetric/Courier-Bold.afm
+${PKGNAME}/share/psprint/fontmetric/Courier-BoldOblique.afm
+${PKGNAME}/share/psprint/fontmetric/Courier-Oblique.afm
+${PKGNAME}/share/psprint/fontmetric/Courier.afm
+${PKGNAME}/share/psprint/fontmetric/Helvetica-Bold.afm
+${PKGNAME}/share/psprint/fontmetric/Helvetica-BoldOblique.afm
+${PKGNAME}/share/psprint/fontmetric/Helvetica-Oblique.afm
+${PKGNAME}/share/psprint/fontmetric/Helvetica.afm
+${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-Book.afm
+${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-BookOblique.afm
+${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-Demi.afm
+${PKGNAME}/share/psprint/fontmetric/ITCAvantGarde-DemiOblique.afm
+${PKGNAME}/share/psprint/fontmetric/ITCBookman-Demi.afm
+${PKGNAME}/share/psprint/fontmetric/ITCBookman-DemiItalic.afm
+${PKGNAME}/share/psprint/fontmetric/ITCBookman-Light.afm
+${PKGNAME}/share/psprint/fontmetric/ITCBookman-LightItalic.afm
+${PKGNAME}/share/psprint/fontmetric/ITCZapfChancery-MediumItalic.afm
+${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Bold.afm
+${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-BoldItalic.afm
+${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Italic.afm
+${PKGNAME}/share/psprint/fontmetric/NewCenturySchlbk-Roman.afm
+${PKGNAME}/share/psprint/fontmetric/Palatino-Bold.afm
+${PKGNAME}/share/psprint/fontmetric/Palatino-BoldItalic.afm
+${PKGNAME}/share/psprint/fontmetric/Palatino-Italic.afm
+${PKGNAME}/share/psprint/fontmetric/Palatino-Roman.afm
+${PKGNAME}/share/psprint/fontmetric/Symbol.afm
+${PKGNAME}/share/psprint/fontmetric/Times-Bold.afm
+${PKGNAME}/share/psprint/fontmetric/Times-BoldItalic.afm
+${PKGNAME}/share/psprint/fontmetric/Times-Italic.afm
+${PKGNAME}/share/psprint/fontmetric/Times-Roman.afm
+${PKGNAME}/share/psprint/fontmetric/ZapfDingbats.afm
+${PKGNAME}/share/psprint/psprint.conf
+${PKGNAME}/share/registry/Langpack-en-US.xcd
+${PKGNAME}/share/registry/base.xcd
+${PKGNAME}/share/registry/calc.xcd
+${PKGNAME}/share/registry/draw.xcd
+${PKGNAME}/share/registry/graphicfilter.xcd
+${PKGNAME}/share/registry/impress.xcd
+${PKGNAME}/share/registry/lingucomponent.xcd
+${PKGNAME}/share/registry/main.xcd
+${PKGNAME}/share/registry/math.xcd
+${PKGNAME}/share/registry/oo-ad-ldap.xcd.sample
+${PKGNAME}/share/registry/oo-ldap.xcd.sample
+${PKGNAME}/share/registry/pyuno.xcd
+${PKGNAME}/share/registry/res/fcfg_langpack_en-US.xcd
+${PKGNAME}/share/registry/writer.xcd
+${PKGNAME}/share/registry/xsltfilter.xcd
+${PKGNAME}/share/template/common/layout/lyt-aqua.otp
+${PKGNAME}/share/template/common/layout/lyt-blackandwhite.otp
+${PKGNAME}/share/template/common/layout/lyt-bluegrey.otp
+${PKGNAME}/share/template/common/layout/lyt-bluelinesgrad.otp
+${PKGNAME}/share/template/common/layout/lyt-bluetitledown.otp
+${PKGNAME}/share/template/common/layout/lyt-book.otp
+${PKGNAME}/share/template/common/layout/lyt-brown.otp
+${PKGNAME}/share/template/common/layout/lyt-charglow.otp
+${PKGNAME}/share/template/common/layout/lyt-forest.otp
+${PKGNAME}/share/template/common/layout/lyt-frepa.otp
+${PKGNAME}/share/template/common/layout/lyt-glacier.otp
+${PKGNAME}/share/template/common/layout/lyt-greengradlines.otp
+${PKGNAME}/share/template/common/layout/lyt-keyboard.otp
+${PKGNAME}/share/template/common/layout/lyt-movwaves.otp
+${PKGNAME}/share/template/common/layout/lyt-numdark.otp
+${PKGNAME}/share/template/common/layout/lyt-ocean.otp
+${PKGNAME}/share/template/common/layout/lyt-organic.otp
+${PKGNAME}/share/template/common/layout/lyt-paper.otp
+${PKGNAME}/share/template/common/layout/lyt-rededges.otp
+${PKGNAME}/share/template/common/layout/lyt-roundedrect.otp
+${PKGNAME}/share/template/common/layout/lyt-sunrise.otp
+${PKGNAME}/share/template/common/layout/lyt-techpoly.otp
+${PKGNAME}/share/template/common/layout/lyt-tunnel.otp
+${PKGNAME}/share/template/common/layout/lyt-water.otp
+${PKGNAME}/share/template/common/layout/lyt-wine.otp
+${PKGNAME}/share/template/en-US/internal/html.stw
+${PKGNAME}/share/template/en-US/internal/idxexample.odt
+${PKGNAME}/share/template/en-US/presnt/prs-novelty.otp
+${PKGNAME}/share/template/en-US/presnt/prs-strategy.otp
+${PKGNAME}/share/template/en-US/wizard/agenda/10grey.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/1simple.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/2elegant.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/3modern.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/4classic.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/5blue.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/6orange.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/7red.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/8green.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/9colorful.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-10grey.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-1simple.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-2elegant.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-3modern.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-4classic.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-5blue.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-6orange.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-7red.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-8green.ott
+${PKGNAME}/share/template/en-US/wizard/agenda/aw-9colorful.ott
+${PKGNAME}/share/template/en-US/wizard/fax/bus-classic-pri_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/bus-classic_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/bus-modern-pri_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/bus-modern_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/pri-bottle_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/pri-fax_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/pri-lines_f.ott
+${PKGNAME}/share/template/en-US/wizard/fax/pri-marine_f.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-01.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-011.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-012.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-02.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-021.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-022.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-03.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-031.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-032.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-04.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-041.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-042.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-05.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-051.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-052.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-06.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-061.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-062.ott
+${PKGNAME}/share/template/en-US/wizard/report/cnt-default.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-01.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-02.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-03.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-04.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-05.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-06.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-07.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-08.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-09.ott
+${PKGNAME}/share/template/en-US/wizard/report/stl-default.ott
+${PKGNAME}/share/template/en-US/wizard/styles/black_white.ots
+${PKGNAME}/share/template/en-US/wizard/styles/blackberry.ots
+${PKGNAME}/share/template/en-US/wizard/styles/default.ots
+${PKGNAME}/share/template/en-US/wizard/styles/diner.ots
+${PKGNAME}/share/template/en-US/wizard/styles/fall.ots
+${PKGNAME}/share/template/en-US/wizard/styles/glacier.ots
+${PKGNAME}/share/template/en-US/wizard/styles/green_grapes.ots
+${PKGNAME}/share/template/en-US/wizard/styles/jeans.ots
+${PKGNAME}/share/template/en-US/wizard/styles/marine.ots
+${PKGNAME}/share/template/en-US/wizard/styles/millennium.ots
+${PKGNAME}/share/template/en-US/wizard/styles/nature.ots
+${PKGNAME}/share/template/en-US/wizard/styles/neon.ots
+${PKGNAME}/share/template/en-US/wizard/styles/night.ots
+${PKGNAME}/share/template/en-US/wizard/styles/nostalgic.ots
+${PKGNAME}/share/template/en-US/wizard/styles/pastell.ots
+${PKGNAME}/share/template/en-US/wizard/styles/pool.ots
+${PKGNAME}/share/template/en-US/wizard/styles/pumpkin.ots
+${PKGNAME}/share/template/en-US/wizard/styles/xos.ots
+${PKGNAME}/share/template/wizard/bitmap/Import_1.bmp
+${PKGNAME}/share/template/wizard/bitmap/Import_3.bmp
+${PKGNAME}/share/template/wizard/bitmap/Import_4.bmp
+${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-1.bmp
+${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-2.bmp
+${PKGNAME}/share/template/wizard/bitmap/MS-Import_2-3.bmp
+${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-1.bmp
+${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-2.bmp
+${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-3.bmp
+${PKGNAME}/share/template/wizard/bitmap/XML-Import_2-4.bmp
+${PKGNAME}/share/template/wizard/bitmap/brasil.gif
+${PKGNAME}/share/template/wizard/bitmap/cancel_down.bmp
+${PKGNAME}/share/template/wizard/bitmap/cancel_up.bmp
+${PKGNAME}/share/template/wizard/bitmap/china.gif
+${PKGNAME}/share/template/wizard/bitmap/denmark.gif
+${PKGNAME}/share/template/wizard/bitmap/down.bmp
+${PKGNAME}/share/template/wizard/bitmap/end.bmp
+${PKGNAME}/share/template/wizard/bitmap/euro_1.bmp
+${PKGNAME}/share/template/wizard/bitmap/euro_2.bmp
+${PKGNAME}/share/template/wizard/bitmap/euro_3.bmp
+${PKGNAME}/share/template/wizard/bitmap/finland.gif
+${PKGNAME}/share/template/wizard/bitmap/france.gif
+${PKGNAME}/share/template/wizard/bitmap/ftpconnected.gif
+${PKGNAME}/share/template/wizard/bitmap/ftpconnecting.gif
+${PKGNAME}/share/template/wizard/bitmap/ftperror.gif
+${PKGNAME}/share/template/wizard/bitmap/ftpunknown.gif
+${PKGNAME}/share/template/wizard/bitmap/germany.wmf
+${PKGNAME}/share/template/wizard/bitmap/greece.gif
+${PKGNAME}/share/template/wizard/bitmap/italia.gif
+${PKGNAME}/share/template/wizard/bitmap/japan.gif
+${PKGNAME}/share/template/wizard/bitmap/maximize.bmp
+${PKGNAME}/share/template/wizard/bitmap/minimize.bmp
+${PKGNAME}/share/template/wizard/bitmap/netherlands.gif
+${PKGNAME}/share/template/wizard/bitmap/okay_down.bmp
+${PKGNAME}/share/template/wizard/bitmap/okay_up.bmp
+${PKGNAME}/share/template/wizard/bitmap/polska.gif
+${PKGNAME}/share/template/wizard/bitmap/portugal.gif
+${PKGNAME}/share/template/wizard/bitmap/report.bmp
+${PKGNAME}/share/template/wizard/bitmap/russia.gif
+${PKGNAME}/share/template/wizard/bitmap/spain.gif
+${PKGNAME}/share/template/wizard/bitmap/sweden.gif
+${PKGNAME}/share/template/wizard/bitmap/taiwan.gif
+${PKGNAME}/share/template/wizard/bitmap/turkey.gif
+${PKGNAME}/share/template/wizard/bitmap/tutorial_background.gif
+${PKGNAME}/share/template/wizard/bitmap/up.bmp
+${PKGNAME}/share/template/wizard/bitmap/usa.gif
+${PKGNAME}/share/template/wizard/letter/bg/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/bg/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/cs/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/da/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/da/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/da/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/da/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/da/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/da/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/da/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/da/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/da/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/da/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/de/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/de/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/de/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/de/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/de/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/de/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/de/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/de/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/de/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/de/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/en-GB/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/en-US/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/es/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/es/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/es/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/es/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/es/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/es/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/es/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/es/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/es/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/es/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/eu/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/fr/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/hu/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/it/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/it/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/it/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/it/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/it/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/it/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/it/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/it/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/it/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/it/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/ja/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/km/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/km/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/km/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/km/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/km/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/km/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/km/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/km/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/km/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/km/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/ko/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/nl/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/pl/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/pt-BR/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/pt/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/ru/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/sk/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/sl/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/sv/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/tr/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/vi/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-CN/pri-redline_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/bus-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/bus-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/bus-office_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/off-elegant_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/off-modern_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/off-office_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/pri-bottle_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/pri-mail_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/pri-marine_l.ott
+${PKGNAME}/share/template/wizard/letter/zh-TW/pri-redline_l.ott
+${PKGNAME}/share/wordbook/en-GB.dic
+${PKGNAME}/share/wordbook/en-US.dic
+${PKGNAME}/share/wordbook/sl.dic
+${PKGNAME}/share/wordbook/technical.dic
+${PKGNAME}/share/xdg/base.desktop
+${PKGNAME}/share/xdg/calc.desktop
+${PKGNAME}/share/xdg/draw.desktop
+${PKGNAME}/share/xdg/impress.desktop
+${PKGNAME}/share/xdg/javafilter.desktop
+${PKGNAME}/share/xdg/math.desktop
+${PKGNAME}/share/xdg/printeradmin.desktop
+${PKGNAME}/share/xdg/qstart.desktop
+${PKGNAME}/share/xdg/startcenter.desktop
+${PKGNAME}/share/xdg/writer.desktop
+${PKGNAME}/share/xslt/common/math.xsl
+${PKGNAME}/share/xslt/common/measure_conversion.xsl
+${PKGNAME}/share/xslt/docbook/DocBookTemplate.stw
+${PKGNAME}/share/xslt/docbook/docbooktosoffheadings.xsl
+${PKGNAME}/share/xslt/docbook/sofftodocbookheadings.xsl
+${PKGNAME}/share/xslt/export/common/body.xsl
+${PKGNAME}/share/xslt/export/common/ooo2ms_docpr.xsl
+${PKGNAME}/share/xslt/export/common/styles/style_collector.xsl
+${PKGNAME}/share/xslt/export/common/styles/style_mapping_css.xsl
+${PKGNAME}/share/xslt/export/common/table/table.xsl
+${PKGNAME}/share/xslt/export/common/table/table_cells.xsl
+${PKGNAME}/share/xslt/export/common/table/table_columns.xsl
+${PKGNAME}/share/xslt/export/common/table/table_rows.xsl
+${PKGNAME}/share/xslt/export/common/table_of_content.xsl
+${PKGNAME}/share/xslt/export/spreadsheetml/formular.xsl
+${PKGNAME}/share/xslt/export/spreadsheetml/ooo2spreadsheetml.xsl
+${PKGNAME}/share/xslt/export/spreadsheetml/style_mapping.xsl
+${PKGNAME}/share/xslt/export/spreadsheetml/styles.xsl
+${PKGNAME}/share/xslt/export/spreadsheetml/table.xsl
+${PKGNAME}/share/xslt/export/uof/odf2uof_presentation.xsl
+${PKGNAME}/share/xslt/export/uof/odf2uof_spreadsheet.xsl
+${PKGNAME}/share/xslt/export/uof/odf2uof_text.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_border.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_custom_draw.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_draw.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_field.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_list.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_page.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_path.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_settings.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_table.xsl
+${PKGNAME}/share/xslt/export/wordml/ooo2wordml_text.xsl
+${PKGNAME}/share/xslt/export/xhtml/body.xsl
+${PKGNAME}/share/xslt/export/xhtml/header.xsl
+${PKGNAME}/share/xslt/export/xhtml/opendoc2xhtml.xsl
+${PKGNAME}/share/xslt/export/xhtml/table.xsl
+${PKGNAME}/share/xslt/import/common/ms2ooo_docpr.xsl
+${PKGNAME}/share/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl
+${PKGNAME}/share/xslt/import/uof/uof2odf_presentation.xsl
+${PKGNAME}/share/xslt/import/uof/uof2odf_spreadsheet.xsl
+${PKGNAME}/share/xslt/import/uof/uof2odf_text.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_custom_draw.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_draw.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_field.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_list.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_page.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_path.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_props.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_settings.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_table.xsl
+${PKGNAME}/share/xslt/import/wordml/wordml2ooo_text.xsl
+${PKGNAME}/ure-link
+${PKGNAME}/ure/bin/regcomp
+${PKGNAME}/ure/bin/regcomp.bin
+${PKGNAME}/ure/bin/regmerge
+${PKGNAME}/ure/bin/regview
+${PKGNAME}/ure/bin/startup.sh
+${PKGNAME}/ure/bin/uno
+${PKGNAME}/ure/bin/uno.bin
+${PKGNAME}/ure/lib/acceptor.uno.so
+${PKGNAME}/ure/lib/binaryurp.uno.so
+${PKGNAME}/ure/lib/bootstrap.uno.so
+${PKGNAME}/ure/lib/connector.uno.so
+${PKGNAME}/ure/lib/introspection.uno.so
+${PKGNAME}/ure/lib/invocadapt.uno.so
+${PKGNAME}/ure/lib/invocation.uno.so
+${PKGNAME}/ure/lib/jvmfwk3rc
+${PKGNAME}/ure/lib/libaffine_uno_uno.so
+${PKGNAME}/ure/lib/libgcc3_uno.so
+${PKGNAME}/ure/lib/libjvmaccessgcc3.so.3
+${PKGNAME}/ure/lib/libjvmfwk.so.3
+${PKGNAME}/ure/lib/liblog_uno_uno.so
+${PKGNAME}/ure/lib/libreg.so.3
+${PKGNAME}/ure/lib/libsal_textenc.so
+${PKGNAME}/ure/lib/libstore.so.3
+${PKGNAME}/ure/lib/libuno_cppu.so.3
+${PKGNAME}/ure/lib/libuno_cppuhelpergcc3.so.3
+${PKGNAME}/ure/lib/libuno_purpenvhelpergcc3.so.3
+${PKGNAME}/ure/lib/libuno_sal.so.3
+${PKGNAME}/ure/lib/libuno_salhelpergcc3.so.3
+${PKGNAME}/ure/lib/libunsafe_uno_uno.so
+${PKGNAME}/ure/lib/libxmlreader.so
+${PKGNAME}/ure/lib/namingservice.uno.so
+${PKGNAME}/ure/lib/proxyfac.uno.so
+${PKGNAME}/ure/lib/reflection.uno.so
+${PKGNAME}/ure/lib/stocservices.uno.so
+${PKGNAME}/ure/lib/streams.uno.so
+${PKGNAME}/ure/lib/textinstream.uno.so
+${PKGNAME}/ure/lib/textoutstream.uno.so
+${PKGNAME}/ure/lib/unorc
+${PKGNAME}/ure/lib/uuresolver.uno.so
+${PKGNAME}/ure/share/misc/services.rdb
+${PKGNAME}/ure/share/misc/types.rdb
+@pkgdir ${PKGNAME}/presets/Scripts
+@pkgdir ${PKGNAME}/presets/autocorr
+@pkgdir ${PKGNAME}/presets/backup
+@pkgdir ${PKGNAME}/presets/psprint/driver
+@pkgdir ${PKGNAME}/presets/psprint/fontmetric
+@pkgdir ${PKGNAME}/presets/store
+@pkgdir ${PKGNAME}/presets/temp
+@pkgdir ${PKGNAME}/presets/template
+@pkgdir ${PKGNAME}/presets/uno_packages/cache
+@pkgdir ${PKGNAME}/presets/wordbook
+@pkgdir ${PKGNAME}/program/addin
+@pkgdir ${PKGNAME}/program/plugin
+@pkgdir ${PKGNAME}/share/prereg
+@pkgdir ${PKGNAME}/share/samples/en-US
+@pkgdir ${PKGNAME}/share/uno_packages/cache
diff --git a/misc/libreoffice/distinfo b/misc/libreoffice/distinfo
new file mode 100644
index 00000000000..93194dc32fe
--- /dev/null
+++ b/misc/libreoffice/distinfo
@@ -0,0 +1,50 @@
+$NetBSD: distinfo,v 1.1.1.1 2012/06/01 06:12:13 wiz Exp $
+
+SHA1 (libreoffice/067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz) = 025d5d0d566a23ddb353495c116116c1088ba2e9
+RMD160 (libreoffice/067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz) = aefa80476ef8340be84440b61f738f432da51c92
+Size (libreoffice/067201ea8b126597670b5eff72e1f66c-mythes-1.2.0.tar.gz) = 4893724 bytes
+SHA1 (libreoffice/0be45d54cc5e1c2e3102e32b8c190346-liberation-fonts-ttf-1.07.1.tar.gz) = 935bf5d6748b465d2d540884af67fb5dfd59fc4a
+RMD160 (libreoffice/0be45d54cc5e1c2e3102e32b8c190346-liberation-fonts-ttf-1.07.1.tar.gz) = d4dd5ad660ba5747de8e65892583427014aebaa2
+Size (libreoffice/0be45d54cc5e1c2e3102e32b8c190346-liberation-fonts-ttf-1.07.1.tar.gz) = 1326668 bytes
+SHA1 (libreoffice/1756c4fa6c616ae15973c104cd8cb256-Adobe-Core35_AFMs-314.tar.gz) = 28d4ec24dfda4eb41b6ceaa0cfcfca41b578f3b3
+RMD160 (libreoffice/1756c4fa6c616ae15973c104cd8cb256-Adobe-Core35_AFMs-314.tar.gz) = e99bb5017c29657c3303d8810e21bf02d737c345
+Size (libreoffice/1756c4fa6c616ae15973c104cd8cb256-Adobe-Core35_AFMs-314.tar.gz) = 315122 bytes
+SHA1 (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 8f949ae74a6d66278a595bd063f13e0ad196d14a
+RMD160 (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 6056046e4043e3e6a613029fe94f5f1728bebcd5
+Size (libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz) = 1652670 bytes
+SHA1 (libreoffice/35efabc239af896dfb79be7ebdd6e6b9-gentiumbasic-fonts-1.10.zip) = b67507ea7a48f7b68075cdfb2384784e516cb8ca
+RMD160 (libreoffice/35efabc239af896dfb79be7ebdd6e6b9-gentiumbasic-fonts-1.10.zip) = 83ada665ea92bd70cd8e9c73f0921e5790d6d9f1
+Size (libreoffice/35efabc239af896dfb79be7ebdd6e6b9-gentiumbasic-fonts-1.10.zip) = 867405 bytes
+SHA1 (libreoffice/48a9f787f43a09c0a9b7b00cd1fddbbf-hyphen-2.7.1.tar.gz) = 5149507aee5807c04c34a82b18bcd54a8cb61213
+RMD160 (libreoffice/48a9f787f43a09c0a9b7b00cd1fddbbf-hyphen-2.7.1.tar.gz) = a0cfdade91eba06441faea5292c4653b128e4a67
+Size (libreoffice/48a9f787f43a09c0a9b7b00cd1fddbbf-hyphen-2.7.1.tar.gz) = 612842 bytes
+SHA1 (libreoffice/7c2549f6b0a8bb604e6c4c729ffdcfe6-libcmis-0.1.0.tar.gz) = 9575aad04e4476236ab6f490b583f996c6632ab4
+RMD160 (libreoffice/7c2549f6b0a8bb604e6c4c729ffdcfe6-libcmis-0.1.0.tar.gz) = 76de5c1037f5d48f15a5d4a9fb92cf10e158d8e6
+Size (libreoffice/7c2549f6b0a8bb604e6c4c729ffdcfe6-libcmis-0.1.0.tar.gz) = 373519 bytes
+SHA1 (libreoffice/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip) = 9ab6ee07f70fa8143b5c9cc48a52602b368cc976
+RMD160 (libreoffice/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip) = 061ce85689f99eb670229c4c52a27adcf48282f4
+Size (libreoffice/e7a384790b13c29113e22e596ade9687-LinLibertineG-20120116.zip) = 6651982 bytes
+SHA1 (libreoffice/f872f4ac066433d8ff92f5e316b36ff9-dejavu-fonts-ttf-2.33.zip) = 93229e2cde05bc305d992b239364796d1aa45ebd
+RMD160 (libreoffice/f872f4ac066433d8ff92f5e316b36ff9-dejavu-fonts-ttf-2.33.zip) = 520007a159b9ee425e368c9bba09ba6b32b30680
+Size (libreoffice/f872f4ac066433d8ff92f5e316b36ff9-dejavu-fonts-ttf-2.33.zip) = 5008644 bytes
+SHA1 (libreoffice/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz) = 6e836945719e137596df1ca82f0afa809e8a2e88
+RMD160 (libreoffice/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz) = 6443438ddf0bb5cd277c96108aa2671213edf8df
+Size (libreoffice/fdb27bfe2dbe2e7b57ae194d9bf36bab-SampleICC-1.3.2.tar.gz) = 547217 bytes
+SHA1 (libreoffice/libreoffice-core-3.5.4.2.tar.xz) = a01d77612c9678d52a75fb160590bb76d670d7f6
+RMD160 (libreoffice/libreoffice-core-3.5.4.2.tar.xz) = e118cfa44ba198fa3d3fe8fc21bd1e3940270868
+Size (libreoffice/libreoffice-core-3.5.4.2.tar.xz) = 103422460 bytes
+SHA1 (libreoffice/libreoffice-dictionaries-3.5.4.2.tar.xz) = 719604c225293006c7168a7db672f7c57e4c91b4
+RMD160 (libreoffice/libreoffice-dictionaries-3.5.4.2.tar.xz) = 24ef97db9503a37fecf8cd6db519ff0cec8be0cf
+Size (libreoffice/libreoffice-dictionaries-3.5.4.2.tar.xz) = 32765928 bytes
+SHA1 (libreoffice/libreoffice-help-3.5.4.2.tar.xz) = 0d417affc2b91ef345cb010f3a2d11a6417b7f44
+RMD160 (libreoffice/libreoffice-help-3.5.4.2.tar.xz) = ce00c1893e0315fa7cee156707553fdcebb552d2
+Size (libreoffice/libreoffice-help-3.5.4.2.tar.xz) = 1857756 bytes
+SHA1 (patch-configure.in) = 32df5a0994e4424fda15c7fb78ef9e8f5e406cad
+SHA1 (patch-i18npool_source_breakiterator_data_char.txt) = b290516019fb431e9b1ea5c5ced29aaa596cf44b
+SHA1 (patch-i18npool_source_breakiterator_data_char_in.txt) = 028988f143ec67bf71f602b784dc8b5929492ca8
+SHA1 (patch-lotuswordpro_Module_lotuswordpro.mk) = 15f65e86c7b47f2113b68561a9a361ca69405000
+SHA1 (patch-sc_Module_sc.mk) = 615e2cfd132fbb8eb4b5272f36f95b2881e27959
+SHA1 (patch-sd_Module_sd.mk) = c1c49ed37086d868c44e600bf1d1784ae2973276
+SHA1 (patch-set_soenv.in) = 754a82444bab39d5d51f2a033da153479f33d2ae
+SHA1 (patch-sw_Module_sw.mk) = 48ca89a9a318dea3975d42869994dc89e0449c6e
+SHA1 (patch-writerfilter_Module_writerfilter.mk) = 1eb3caa50258be5f8b5e2bb19e5f5d039b5eb7a0
diff --git a/misc/libreoffice/patches/patch-configure.in b/misc/libreoffice/patches/patch-configure.in
new file mode 100644
index 00000000000..b3e84bf88f1
--- /dev/null
+++ b/misc/libreoffice/patches/patch-configure.in
@@ -0,0 +1,57 @@
+$NetBSD: patch-configure.in,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Fix a few configure and portability issues
+Force the installation into a single directory in /usr/pkg
+
+--- configure.in.orig 2012-03-27 16:22:01.000000000 +0000
++++ configure.in
+@@ -5717,7 +5717,9 @@ if test "$with_system_mdds" = "yes"; the
+ [AC_MSG_ERROR(mdds/mixed_type_matrix.hpp not found. install mdds >= 0.4.0)], [])
+ CPPFLAGS="$save_CPPFLAGS"
+ save_CXXFLAGS="$CXXFLAGS"
++ save_LIBS="$LIBS"
+ CXXFLAGS="$CXXFLAGS $MDDS_CPPFLAGS"
++ LIBS=""
+ AC_MSG_CHECKING([for correct signature of ::mdds::flat_segment_tree])
+ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <mdds/flat_segment_tree.hpp>
+
+@@ -5735,6 +5737,7 @@ if test "$with_system_mdds" = "yes"; the
+ else
+ AC_MSG_ERROR([no, install mdds >= 0.5.0])
+ fi
++ LIBS="$save_LIBS"
+ CXXFLAGS=$save_CXXFLAGS
+ AC_LANG_POP([C++])
+ else
+@@ -6196,11 +6199,11 @@ if test "$with_system_icu" = "yes"; then
+ if test -z "$SYSTEM_GENBRK"; then
+ AC_MSG_ERROR([\'genbrk\' not found in \$PATH, install the icu development tool \'genbrk\'])
+ fi
+- AC_PATH_PROG(SYSTEM_GENCCODE, genccode, [], [$PATH:/usr/sbin:/sbin:/usr/local/sbin])
++ AC_PATH_PROG(SYSTEM_GENCCODE, genccode, [], [$PATH:/usr/sbin:/sbin:@LOCALBASE@/sbin])
+ if test -z "$SYSTEM_GENCCODE"; then
+ AC_MSG_ERROR([\'genccode\' not found in \$PATH, install the icu development tool \'genccode\'])
+ fi
+- AC_PATH_PROG(SYSTEM_GENCMN, gencmn, [], [$PATH:/usr/sbin:/sbin:/usr/local/sbin])
++ AC_PATH_PROG(SYSTEM_GENCMN, gencmn, [], [$PATH:/usr/sbin:/sbin:@LOCALBASE@/sbin])
+ if test -z "$SYSTEM_GENCMN"; then
+ AC_MSG_ERROR([\'gencmn\' not found in \$PATH, install the icu development tool \'gencmn\'])
+ fi
+@@ -8910,7 +8913,7 @@ dnl this should be unified into u
+
+ AC_MSG_CHECKING([whether to use the system libjpeg])
+
+-if test "$SYSTEM_JPEG" == "YES"; then
++if test "$SYSTEM_JPEG" = "YES"; then
+ SYSTEM_LIBJPEG=YES
+ AC_MSG_RESULT([yes])
+ else
+@@ -9489,7 +9492,7 @@ AC_MSG_RESULT([$DOCDIR])
+ AC_SUBST(DOCDIR)
+
+ AC_MSG_CHECKING([for install dir])
+-INSTALLDIR="$LIBDIR/$INSTALLDIRNAME"
++INSTALLDIR="$PREFIXDIR"
+ AC_MSG_RESULT([$INSTALLDIR])
+ AC_SUBST(INSTALLDIR)
+
diff --git a/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char.txt b/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char.txt
new file mode 100644
index 00000000000..4aa85fe81a2
--- /dev/null
+++ b/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char.txt
@@ -0,0 +1,15 @@
+$NetBSD: patch-i18npool_source_breakiterator_data_char.txt,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Fix an issue with icu > 4.8
+https://bugs.gentoo.org/show_bug.cgi?id=410307
+
+--- i18npool/source/breakiterator/data/char.txt.orig 2012-04-24 14:08:03.000000000 +0000
++++ i18npool/source/breakiterator/data/char.txt
+@@ -16,7 +16,6 @@
+ $CR = [\p{Grapheme_Cluster_Break = CR}];
+ $LF = [\p{Grapheme_Cluster_Break = LF}];
+ $Control = [\p{Grapheme_Cluster_Break = Control}];
+-$Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
+ $Extend = [\p{Grapheme_Cluster_Break = Extend}];
+ $SpacingMark = [\p{Grapheme_Cluster_Break = SpacingMark}];
+ # True Indic wants to move by syllables. Break up SpacingMark. This based on Unicode 6.0 data
diff --git a/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char_in.txt b/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char_in.txt
new file mode 100644
index 00000000000..9702ff31b1f
--- /dev/null
+++ b/misc/libreoffice/patches/patch-i18npool_source_breakiterator_data_char_in.txt
@@ -0,0 +1,31 @@
+$NetBSD: patch-i18npool_source_breakiterator_data_char_in.txt,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Fix an issue with ICU > 4.8
+https://bugs.gentoo.org/show_bug.cgi?id=410307
+
+--- i18npool/source/breakiterator/data/char_in.txt.orig 2012-04-24 14:08:03.000000000 +0000
++++ i18npool/source/breakiterator/data/char_in.txt
+@@ -15,7 +15,6 @@
+ $CR = [\p{Grapheme_Cluster_Break = CR}];
+ $LF = [\p{Grapheme_Cluster_Break = LF}];
+ $Control = [\p{Grapheme_Cluster_Break = Control}];
+-$Prepend = [\p{Grapheme_Cluster_Break = Prepend}];
+ $Extend = [\p{Grapheme_Cluster_Break = Extend}];
+ $SpacingMark = [\p{Grapheme_Cluster_Break = SpacingMark}];
+ $BengaliLetter = [\u0985-\u09B9 \u09CE \u09DC-\u09E1 \u09F0-\u09F1];
+@@ -72,7 +71,6 @@ $L ($L | $V | $LV | $LVT);
+ [^$Control $CR $LF] $Extend;
+
+ [^$Control $CR $LF] $SpacingMark;
+-$Prepend [^$Control $CR $LF];
+
+
+ ## -------------------------------------------------
+@@ -94,7 +92,6 @@ $T ($LVT | $T);
+
+ $Extend [^$Control $CR $LF];
+ $SpacingMark [^$Control $CR $LF];
+-[^$Control $CR $LF] $Prepend;
+
+
+ ## -------------------------------------------------
diff --git a/misc/libreoffice/patches/patch-lotuswordpro_Module_lotuswordpro.mk b/misc/libreoffice/patches/patch-lotuswordpro_Module_lotuswordpro.mk
new file mode 100644
index 00000000000..1e5c9bc67ea
--- /dev/null
+++ b/misc/libreoffice/patches/patch-lotuswordpro_Module_lotuswordpro.mk
@@ -0,0 +1,17 @@
+$NetBSD: patch-lotuswordpro_Module_lotuswordpro.mk,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Disable unit tests crashing on NetBSD
+
+--- lotuswordpro/Module_lotuswordpro.mk.orig 2012-01-09 22:08:58.000000000 +0000
++++ lotuswordpro/Module_lotuswordpro.mk
+@@ -31,8 +31,10 @@ $(eval $(call gb_Module_add_targets,lotu
+ Library_lwpft \
+ ))
+
++ifneq ($(OS),NETBSD)
+ $(eval $(call gb_Module_add_check_targets,lotuswordpro,\
+ CppunitTest_lotuswordpro_test_lotuswordpro \
+ ))
++endif
+
+ # vim: set noet sw=4 ts=4:
diff --git a/misc/libreoffice/patches/patch-sc_Module_sc.mk b/misc/libreoffice/patches/patch-sc_Module_sc.mk
new file mode 100644
index 00000000000..c5a9925d79a
--- /dev/null
+++ b/misc/libreoffice/patches/patch-sc_Module_sc.mk
@@ -0,0 +1,18 @@
+$NetBSD: patch-sc_Module_sc.mk,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Disable unit tests crashing on DragonFly and NetBSD
+
+--- sc/Module_sc.mk.orig 2012-01-09 22:08:58.000000000 +0000
++++ sc/Module_sc.mk
+@@ -34,11 +34,6 @@ $(eval $(call gb_Module_add_targets,sc,\
+ Package_xml \
+ ))
+
+-$(eval $(call gb_Module_add_check_targets,sc,\
+- CppunitTest_sc_filters_test \
+- CppunitTest_sc_ucalc \
+-))
+-
+ $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
+ CppunitTest_sc_macros_test \
+ CppunitTest_sc_cellrangesbase \
diff --git a/misc/libreoffice/patches/patch-sd_Module_sd.mk b/misc/libreoffice/patches/patch-sd_Module_sd.mk
new file mode 100644
index 00000000000..d75162e2988
--- /dev/null
+++ b/misc/libreoffice/patches/patch-sd_Module_sd.mk
@@ -0,0 +1,15 @@
+$NetBSD: patch-sd_Module_sd.mk,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Disable unit tests crashing on DragonFly and NetBSD
+
+--- sd/Module_sd.mk.orig 2012-01-09 22:08:58.000000000 +0000
++++ sd/Module_sd.mk
+@@ -40,7 +40,7 @@ $(eval $(call gb_Module_add_targets,sd,\
+ Package_xml \
+ ))
+
+-ifneq ($(OS),DRAGONFLY)
++ifeq (,$(filter DRAGONFLY NETBSD,$(OS)))
+ $(eval $(call gb_Module_add_check_targets,sd,\
+ CppunitTest_sd_uimpress \
+ ))
diff --git a/misc/libreoffice/patches/patch-set_soenv.in b/misc/libreoffice/patches/patch-set_soenv.in
new file mode 100644
index 00000000000..fbfd2e08585
--- /dev/null
+++ b/misc/libreoffice/patches/patch-set_soenv.in
@@ -0,0 +1,15 @@
+$NetBSD: patch-set_soenv.in,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Force the use of LD_LIBRARY_PATH to work around runpath issues
+when shared libraries are moved around by the build process
+
+--- set_soenv.in.orig 2011-08-23 13:05:22.000000000 +0000
++++ set_soenv.in
+@@ -1493,6 +1493,7 @@ ToFile( "ASM_PATH", $ASM_PATH,
+ ToFile( "ML_EXE", "@ML_EXE@", "e" );
+ ToFile( "FRAMEWORKSHOME", $FRAMEWORKSHOME, "e" );
+ ToFile( "Empty", $empty, "n" );
++ToFile( "LD_LIBRARY_PATH", "@LIBPATH@", "e" );
+
+ #
+ # Writing the platform independent constant values to file.
diff --git a/misc/libreoffice/patches/patch-sw_Module_sw.mk b/misc/libreoffice/patches/patch-sw_Module_sw.mk
new file mode 100644
index 00000000000..6ac701c774a
--- /dev/null
+++ b/misc/libreoffice/patches/patch-sw_Module_sw.mk
@@ -0,0 +1,20 @@
+$NetBSD: patch-sw_Module_sw.mk,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Disable unit tests crashing on NetBSD
+
+--- sw/Module_sw.mk.orig 2012-01-09 22:08:58.000000000 +0000
++++ sw/Module_sw.mk
+@@ -40,11 +40,13 @@ $(eval $(call gb_Module_add_targets,sw,\
+ Package_xml \
+ ))
+
++ifneq ($(OS),NETBSD)
+ $(eval $(call gb_Module_add_check_targets,sw,\
+ CppunitTest_sw_filters_test \
+ CppunitTest_sw_macros_test \
+ CppunitTest_sw_swdoc_test \
+ ))
++endif
+
+ $(eval $(call gb_Module_add_subsequentcheck_targets,sw,\
+ JunitTest_sw_complex \
diff --git a/misc/libreoffice/patches/patch-writerfilter_Module_writerfilter.mk b/misc/libreoffice/patches/patch-writerfilter_Module_writerfilter.mk
new file mode 100644
index 00000000000..5a63d5a4995
--- /dev/null
+++ b/misc/libreoffice/patches/patch-writerfilter_Module_writerfilter.mk
@@ -0,0 +1,19 @@
+$NetBSD: patch-writerfilter_Module_writerfilter.mk,v 1.1.1.1 2012/06/01 06:12:14 wiz Exp $
+
+Disable unit tests crashing on NetBSD
+
+--- writerfilter/Module_writerfilter.mk.orig 2012-01-09 22:08:58.000000000 +0000
++++ writerfilter/Module_writerfilter.mk
+@@ -37,10 +37,12 @@ $(eval $(call gb_Module_add_targets,writ
+ Package_writerfilter_generated \
+ ))
+
++ifneq ($(OS),NETBSD)
+ $(eval $(call gb_Module_add_check_targets,writerfilter,\
+ CppunitTest_writerfilter_doctok \
+ CppunitTest_writerfilter_rtftok \
+ ))
++endif
+
+ $(eval $(call gb_Module_add_subsequentcheck_targets,writerfilter,\
+ JunitTest_writerfilter_complex \