diff options
author | acm <acm@FreeBSD.org> | 2006-07-30 21:06:57 +0000 |
---|---|---|
committer | acm <acm@FreeBSD.org> | 2006-07-30 21:06:57 +0000 |
commit | 89d3cd236c565c52bc20a596a396e7cab1d92322 (patch) | |
tree | 6a5dce70f70b4a2d0b25b12f4bef24c42cb05839 /editors | |
parent | 83436999f14aaeefdb0d56143f85b5079c5f43f3 (diff) | |
download | FreeBSD-ports-89d3cd236c565c52bc20a596a396e7cab1d92322.zip FreeBSD-ports-89d3cd236c565c52bc20a596a396e7cab1d92322.tar.gz |
- New port: editors/lazarus
Lazarus is the class libraries for Free Pascal that emulate Delphi.
Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K
and more. Free Pascal is designed to be able to understand and compile
Delphi syntax, which is of course OOP.
Lazarus is the part of the missing puzzle that will allow you to
develop Delphi-like programs in all of the above platforms. Unlike Java
which strives to be a write once run anywhere, Lazarus and Free Pascal
strives for write once compile anywhere.
WWW: http://www.lazarus.freepascal.org/
Approved by: garga (mentor)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/Makefile | 1 | ||||
-rw-r--r-- | editors/lazarus/Makefile | 134 | ||||
-rw-r--r-- | editors/lazarus/distinfo | 6 | ||||
-rw-r--r-- | editors/lazarus/files/patch-Makefile | 24 | ||||
-rw-r--r-- | editors/lazarus/pkg-descr | 11 | ||||
-rw-r--r-- | editors/lazarus/pkg-plist | 3619 |
6 files changed, 3795 insertions, 0 deletions
diff --git a/editors/Makefile b/editors/Makefile index 6a24189..0d2bfd9 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -86,6 +86,7 @@ SUBDIR += kile SUBDIR += koffice-kde3 SUBDIR += kxmleditor + SUBDIR += lazarus SUBDIR += le SUBDIR += leafpad SUBDIR += led diff --git a/editors/lazarus/Makefile b/editors/lazarus/Makefile new file mode 100644 index 0000000..c304290 --- /dev/null +++ b/editors/lazarus/Makefile @@ -0,0 +1,134 @@ +# New ports collection makefile for: lazarus +# Date Created: 2006-02-09 +# Whom: Shaun Amott <shaun@inerd.com> +# +# $FreeBSD$ +# + +PORTNAME= lazarus +PORTVERSION= 0.9.16 +CATEGORIES= devel editors +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTFILES= ${PORTNAME}-${PORTVERSION:S/$/-0/}${EXTRACT_SUFX} \ + fpc-${FPC_MINVER:S/$/.source/}${EXTRACT_SUFX} +DIST_SUBDIR= freepascal + +MAINTAINER= acm@FreeBSD.org +COMMENT= A portable Delphi-like IDE for the FreePascal compiler + +BUILD_DEPENDS= ppc386:${PORTSDIR}/lang/fpc \ + fpcmake:${PORTSDIR}/lang/fpc-utils + +ONLY_FOR_ARCHS= i386 + +USE_ICONV= yes +USE_GETTEXT= yes +USE_GNOME= gtk12 gdkpixbuf +USE_GMAKE= yes + +MAKE_ENV= OPT="-Fu${UNITSDIR}/* -Fl${LOCALBASE}/lib -Fl${X11BASE}/lib" +EXTRACT_AFTER_ARGS= | ${TAR} xf - fpc/fcl/image fpc/fcl/inc lazarus +WRKSRC= ${WRKDIR}/${PORTNAME} + +BUILDNAME= ${ARCH}-freebsd +FPC_MINVER= 2.0.2 +UNITSDIR= ${LOCALBASE}/lib/fpc/${FPC_MINVER}/units/${BUILDNAME} +BASE_UNITS= GDBINT IBASE LIBASYNC MD5 MYSQL NETDB ODBC ORACLE \ + PASJPEG PASZLIB PTHREADS POSTGRES REGEXPR SQLITE +ALL_UNITS= ${BASE_UNITS} BFD FCL FORMS FPGTK FV GCONF GDBM GGI GNOME GTK GTK2 \ + IMLIB LIBGD LIBPNG NCURSES OPENGL SVGALIB \ + SYSLOG TCL UNZIP UTMP X11 ZLIB ZVT + +# Base units +GDBINT_UNIT= devel/fpc-gdbint +IBASE_UNIT= databases/fpc-ibase +LIBASYNC_UNIT= net/fpc-libasync +MD5_UNIT= security/fpc-md5 +MYSQL_UNIT= databases/fpc-mysql +NETDB_UNIT= net/fpc-netdb +ODBC_UNIT= databases/fpc-odbc +ORACLE_UNIT= databases/fpc-oracle +PASJPEG_UNIT= graphics/fpc-pasjpeg +PASZLIB_UNIT= archivers/fpc-paszlib +PTHREADS_UNIT= devel/fpc-pthreads +POSTGRES_UNIT= databases/fpc-postgres +REGEXPR_UNIT= devel/fpc-regexpr +SQLITE_UNIT= databases/fpc-sqlite + +# Extra units +BFD_UNIT= devel/fpc-bfd +FCL_UNIT= devel/fpc-fcl +FORMS_UNIT= x11-toolkits/fpc-forms +FPGTK_UNIT= graphics/fpc-fpgtk +FV_UNIT= devel/fpc-fv +GCONF_UNIT= devel/fpc-gconf +GDBM_UNIT= databases/fpc-gdbm +GGI_UNIT= graphics/fpc-ggi +GNOME_UNIT= x11-toolkits/fpc-gnome +GTK_UNIT= x11-toolkits/fpc-gtk +GTK2_UNIT= x11-toolkits/fpc-gtk2 +IMLIB_UNIT= graphics/fpc-imlib +LIBGD_UNIT= graphics/fpc-libgd +LIBPNG_UNIT= graphics/fpc-libpng +NCURSES_UNIT= graphics/fpc-ncurses +OPENGL_UNIT= graphics/fpc-opengl +SVGALIB_UNIT= graphics/fpc-svgalib +SYSLOG_UNIT= sysutils/fpc-syslog +TCL_UNIT= lang/fpc-tcl +UNZIP_UNIT= archivers/fpc-unzip +UTMP_UNIT= sysutils/fpc-utmp +X11_UNIT= x11/fpc-x11 +ZLIB_UNIT= devel/fpc-zlib +ZVT_UNIT= x11-toolkits/fpc-zvt + +.include <bsd.port.pre.mk> + +.for OPT in ${ALL_UNITS} +BUILD_DEPENDS+= ${UNITSDIR}/${OPT:L}/Package.fpc:${PORTSDIR}/${${OPT}_UNIT} +.endfor + +post-extract: + ${CP} ${WRKDIR}/fpc/fcl/inc/zstream.pp ${WRKSRC}/lcl && \ + ${CP} ${WRKDIR}/fpc/fcl/image/fpreadpng.pp \ + ${WRKDIR}/fpc/fcl/image/fpwritepng.pp ${WRKSRC}/lcl + +post-depends: +.if exists(${LOCALBASE}/bin/fpc) +FPC_VER!= ${LOCALBASE}/bin/fpc -i -v | ${SED} -n -e 's/^Free Pascal Compiler version //' -e '1p' +FPC_DIR= ${LOCALBASE}/lib/fpc/${FPC_VER} +FPC_REQVER!= ${ECHO_CMD} $$(expr ${FPC_VER:C/^[^\.]*\.//} \>= ${FPC_MINVER:C/^[^\.]*\.//}) + +.if (${FPC_REQVER} != 1) +IGNORE= requires fpc ${FPC_MINVER} or above. Please upgrade +.endif +.endif + +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' -e 's|%%DATADIR%%|${DATADIR}|g' \ + ${WRKSRC}/${MAKEFILE} +do-build: + @cd ${WRKSRC} && \ + ${GMAKE} ${MAKE_ENV} + +post-build: + @cd ${WRKSRC} && \ + ${RM} -Rf Makefile* COPYING* debian + +do-install: +.for DIRE in components converter debugger designer doceditor docs examples ide ideintf images install \ + languages lcl packager tools units + ${MKDIR} ${DATADIR}/${DIRE} + @cd ${WRKSRC}/${DIRE} && \ + ${FIND} * -type d -exec ${MKDIR} "${DATADIR}/${DIRE}/{}" \; && \ + ${FIND} * -type f -exec ${INSTALL_DATA} "{}" "${DATADIR}/${DIRE}/{}" \; +.endfor + +.for FILE in lazarus startlazarus + ${INSTALL_PROGRAM} ${WRKSRC}/${FILE} ${DATADIR} +.endfor + + ${INSTALL_SCRIPT} ${WRKSRC}/localize.sh ${DATADIR} + ${LN} -s ${DATADIR}/lazarus ${PREFIX}/bin/lazarus + +.include <bsd.port.post.mk> diff --git a/editors/lazarus/distinfo b/editors/lazarus/distinfo new file mode 100644 index 0000000..55db376 --- /dev/null +++ b/editors/lazarus/distinfo @@ -0,0 +1,6 @@ +MD5 (freepascal/lazarus-0.9.16-0.tar.gz) = 6ad709b389856c0514e94b52a0aaf344 +SHA256 (freepascal/lazarus-0.9.16-0.tar.gz) = e2f920f7af0549a76d6a5ae5b68542c11b4f350e1f05e4dccc81fc3872c63b00 +SIZE (freepascal/lazarus-0.9.16-0.tar.gz) = 9655279 +MD5 (freepascal/fpc-2.0.2.source.tar.gz) = 0a48954021273fec6b7fdba9038acdcc +SHA256 (freepascal/fpc-2.0.2.source.tar.gz) = b49a9044392484b7fe54163ab6e5fa7cb4fb47c8851c6934edadfb0de0796cc3 +SIZE (freepascal/fpc-2.0.2.source.tar.gz) = 13404431 diff --git a/editors/lazarus/files/patch-Makefile b/editors/lazarus/files/patch-Makefile new file mode 100644 index 0000000..653934c --- /dev/null +++ b/editors/lazarus/files/patch-Makefile @@ -0,0 +1,24 @@ +--- Makefile Sun Jul 23 00:46:54 2006 ++++ Makefile Sun Jul 23 00:54:26 2006 +@@ -232,12 +232,12 @@ + override PACKAGE_NAME=lazarus + override PACKAGE_VERSION=0.9b + RCPP?=$(strip $(firstword cpp$(SRCEXEEXT))) +-LAZARUS_INSTALL_DIR=/usr/share/lazarus ++LAZARUS_INSTALL_DIR=%%DATADIR%% + ifneq ($(findstring $(OS_TARGET),win32 win64),) + LAZARUS_INSTALL_DIR=C:\lazarus + endif + ifneq ($(findstring $(OS_TARGET),freebsd),) +-LAZARUS_INSTALL_DIR=/usr/local/lazarus ++LAZARUS_INSTALL_DIR=%%DATADIR%% + endif + ifeq ($(FULL_TARGET),i386-linux) + override TARGET_DIRS+=lcl components packager/registration ideintf designer packager +@@ -3759,5 +3759,5 @@ + $(COPYTREE) . $(LAZARUS_INSTALL_DIR) + ifeq ($(OS_TARGET),win32) + else +- ln -sf $(LAZARUS_INSTALL_DIR)/lazarus /usr/bin/lazarus ++ ln -sf $(LAZARUS_INSTALL_DIR)/lazarus %%LOCALBASE%%/bin/lazarus + endif diff --git a/editors/lazarus/pkg-descr b/editors/lazarus/pkg-descr new file mode 100644 index 0000000..7c24a5c --- /dev/null +++ b/editors/lazarus/pkg-descr @@ -0,0 +1,11 @@ +Lazarus is the class libraries for Free Pascal that emulate Delphi. +Free Pascal is a GPL'ed compiler that runs on Linux, Win32, OS/2, 68K +and more. Free Pascal is designed to be able to understand and compile +Delphi syntax, which is of course OOP. + +Lazarus is the part of the missing puzzle that will allow you to +develop Delphi-like programs in all of the above platforms. Unlike Java +which strives to be a write once run anywhere, Lazarus and Free Pascal +strives for write once compile anywhere. + +WWW: http://www.lazarus.freepascal.org/ diff --git a/editors/lazarus/pkg-plist b/editors/lazarus/pkg-plist new file mode 100644 index 0000000..e20f887 --- /dev/null +++ b/editors/lazarus/pkg-plist @@ -0,0 +1,3619 @@ +bin/lazarus +%%DATADIR%%/components/Makefile +%%DATADIR%%/components/Makefile.fpc +%%DATADIR%%/components/README.txt +%%DATADIR%%/components/cgi/Makefile +%%DATADIR%%/components/cgi/Makefile.fpc +%%DATADIR%%/components/cgi/README +%%DATADIR%%/components/cgi/cgilaz.lpk +%%DATADIR%%/components/cgi/cgilaz.pas +%%DATADIR%%/components/cgi/cgimodules.pas +%%DATADIR%%/components/cgi/ide/Makefile +%%DATADIR%%/components/cgi/ide/Makefile.fpc +%%DATADIR%%/components/cgi/ide/README.txt +%%DATADIR%%/components/cgi/ide/cgilazide.lpk +%%DATADIR%%/components/cgi/ide/cgilazide.pas +%%DATADIR%%/components/cgi/ide/cgilazideintf.pas +%%DATADIR%%/components/cgi/ide/lib/README.txt +%%DATADIR%%/components/cgi/lib/README.txt +%%DATADIR%%/components/codetools/Makefile +%%DATADIR%%/components/codetools/Makefile.fpc +%%DATADIR%%/components/codetools/allcodetoolunits.pp +%%DATADIR%%/components/codetools/basiccodetools.pas +%%DATADIR%%/components/codetools/codeatom.pas +%%DATADIR%%/components/codetools/codebeautifier.pas +%%DATADIR%%/components/codetools/codecache.pas +%%DATADIR%%/components/codetools/codecompletiontool.pas +%%DATADIR%%/components/codetools/codetemplatestool.pas +%%DATADIR%%/components/codetools/codetoolmanager.pas +%%DATADIR%%/components/codetools/codetoolmemmanager.pas +%%DATADIR%%/components/codetools/codetools.inc +%%DATADIR%%/components/codetools/codetoolsconfig.pas +%%DATADIR%%/components/codetools/codetoolsstrconsts.pas +%%DATADIR%%/components/codetools/codetoolsstructs.pas +%%DATADIR%%/components/codetools/codetree.pas +%%DATADIR%%/components/codetools/customcodetool.pas +%%DATADIR%%/components/codetools/definetemplates.pas +%%DATADIR%%/components/codetools/directorycacher.pas +%%DATADIR%%/components/codetools/eventcodetool.pas +%%DATADIR%%/components/codetools/examples/finddeclaration.lpi +%%DATADIR%%/components/codetools/examples/finddeclaration.lpr +%%DATADIR%%/components/codetools/examples/fixfilenames.lpi +%%DATADIR%%/components/codetools/examples/fixfilenames.pas +%%DATADIR%%/components/codetools/examples/getcontext.lpi +%%DATADIR%%/components/codetools/examples/getcontext.lpr +%%DATADIR%%/components/codetools/examples/methodjumping.lpi +%%DATADIR%%/components/codetools/examples/methodjumping.pas +%%DATADIR%%/components/codetools/examples/scanexamples/BigLettersUnit.pas +%%DATADIR%%/components/codetools/examples/scanexamples/brokenfilenames.pas +%%DATADIR%%/components/codetools/examples/scanexamples/brokenincfiles.inc +%%DATADIR%%/components/codetools/examples/scanexamples/empty.inc +%%DATADIR%%/components/codetools/examples/scanexamples/getcontextexample.pas +%%DATADIR%%/components/codetools/examples/scanexamples/simpleunit1.pas +%%DATADIR%%/components/codetools/examples/scanexamples/tgeneric2.pas +%%DATADIR%%/components/codetools/expreval.pas +%%DATADIR%%/components/codetools/extractproctool.pas +%%DATADIR%%/components/codetools/fileprocs.pas +%%DATADIR%%/components/codetools/finddeclarationcache.pas +%%DATADIR%%/components/codetools/finddeclarationtool.pas +%%DATADIR%%/components/codetools/fpc.errore.msg +%%DATADIR%%/components/codetools/identcompletiontool.pas +%%DATADIR%%/components/codetools/keywordfunclists.pas +%%DATADIR%%/components/codetools/languages/README +%%DATADIR%%/components/codetools/languages/codetools.ca.po +%%DATADIR%%/components/codetools/languages/codetools.de.po +%%DATADIR%%/components/codetools/languages/codetools.es.po +%%DATADIR%%/components/codetools/languages/codetools.esutf.po +%%DATADIR%%/components/codetools/languages/codetools.fi.po +%%DATADIR%%/components/codetools/languages/codetools.fr.po +%%DATADIR%%/components/codetools/languages/codetools.it.po +%%DATADIR%%/components/codetools/languages/codetools.pl.po +%%DATADIR%%/components/codetools/languages/codetools.pliso.po +%%DATADIR%%/components/codetools/languages/codetools.plwin.po +%%DATADIR%%/components/codetools/languages/codetools.po +%%DATADIR%%/components/codetools/languages/codetools.ru.po +%%DATADIR%%/components/codetools/languages/codetools.ua.po +%%DATADIR%%/components/codetools/laz_dom.pas +%%DATADIR%%/components/codetools/laz_xmlcfg.pas +%%DATADIR%%/components/codetools/laz_xmlread.pas +%%DATADIR%%/components/codetools/laz_xmlstreaming.pas +%%DATADIR%%/components/codetools/laz_xmlwrite.pas +%%DATADIR%%/components/codetools/lfmtrees.pas +%%DATADIR%%/components/codetools/linkscanner.pas +%%DATADIR%%/components/codetools/memcheck.pas +%%DATADIR%%/components/codetools/memcheck_laz.inc +%%DATADIR%%/components/codetools/methodjumptool.pas +%%DATADIR%%/components/codetools/multikeywordlisttool.pas +%%DATADIR%%/components/codetools/pascalparsertool.pas +%%DATADIR%%/components/codetools/pascalreadertool.pas +%%DATADIR%%/components/codetools/resourcecodetool.pas +%%DATADIR%%/components/codetools/sourcechanger.pas +%%DATADIR%%/components/codetools/sourcelog.pas +%%DATADIR%%/components/codetools/stdcodetools.pas +%%DATADIR%%/components/codetools/units/i386-freebsd/allcodetoolunits.o +%%DATADIR%%/components/codetools/units/i386-freebsd/allcodetoolunits.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/basiccodetools.o +%%DATADIR%%/components/codetools/units/i386-freebsd/basiccodetools.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codeatom.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codeatom.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codecache.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codecache.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codecompletiontool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codecompletiontool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetemplatestool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetemplatestool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolmanager.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolmanager.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolmemmanager.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolmemmanager.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsconfig.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsconfig.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsstrconsts.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsstrconsts.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsstrconsts.rst +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsstructs.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetoolsstructs.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/codetree.o +%%DATADIR%%/components/codetools/units/i386-freebsd/codetree.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/customcodetool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/customcodetool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/definetemplates.o +%%DATADIR%%/components/codetools/units/i386-freebsd/definetemplates.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/directorycacher.o +%%DATADIR%%/components/codetools/units/i386-freebsd/directorycacher.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/eventcodetool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/eventcodetool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/expreval.o +%%DATADIR%%/components/codetools/units/i386-freebsd/expreval.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/extractproctool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/extractproctool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/fileprocs.o +%%DATADIR%%/components/codetools/units/i386-freebsd/fileprocs.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/finddeclarationcache.o +%%DATADIR%%/components/codetools/units/i386-freebsd/finddeclarationcache.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/finddeclarationtool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/finddeclarationtool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/identcompletiontool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/identcompletiontool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/keywordfunclists.o +%%DATADIR%%/components/codetools/units/i386-freebsd/keywordfunclists.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_dom.o +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_dom.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlcfg.o +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlcfg.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlread.o +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlread.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlstreaming.o +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlstreaming.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlwrite.o +%%DATADIR%%/components/codetools/units/i386-freebsd/laz_xmlwrite.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/lfmtrees.o +%%DATADIR%%/components/codetools/units/i386-freebsd/lfmtrees.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/linkscanner.o +%%DATADIR%%/components/codetools/units/i386-freebsd/linkscanner.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/memcheck.o +%%DATADIR%%/components/codetools/units/i386-freebsd/memcheck.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/methodjumptool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/methodjumptool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/multikeywordlisttool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/multikeywordlisttool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/pascalparsertool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/pascalparsertool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/pascalreadertool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/pascalreadertool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/resourcecodetool.o +%%DATADIR%%/components/codetools/units/i386-freebsd/resourcecodetool.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/sourcechanger.o +%%DATADIR%%/components/codetools/units/i386-freebsd/sourcechanger.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/sourcelog.o +%%DATADIR%%/components/codetools/units/i386-freebsd/sourcelog.ppu +%%DATADIR%%/components/codetools/units/i386-freebsd/stdcodetools.o +%%DATADIR%%/components/codetools/units/i386-freebsd/stdcodetools.ppu +%%DATADIR%%/components/custom/README +%%DATADIR%%/components/custom/customidecomps.pas.template +%%DATADIR%%/components/customform/custforms.pp +%%DATADIR%%/components/customform/demo/appform.pas +%%DATADIR%%/components/customform/demo/appforms.lpk +%%DATADIR%%/components/customform/demo/appforms.pas +%%DATADIR%%/components/customform/demo/dbappform.pas +%%DATADIR%%/components/customform/demo/regappforms.pp +%%DATADIR%%/components/customform/lazcustforms.lpk +%%DATADIR%%/components/customform/lazcustforms.pas +%%DATADIR%%/components/chmhelp/democontrol/project1.lpi +%%DATADIR%%/components/chmhelp/democontrol/project1.lpr +%%DATADIR%%/components/chmhelp/democontrol/unit1.lfm +%%DATADIR%%/components/chmhelp/democontrol/unit1.lrs +%%DATADIR%%/components/chmhelp/democontrol/unit1.pas +%%DATADIR%%/components/chmhelp/lhelp/back.xpm +%%DATADIR%%/components/chmhelp/lhelp/chmdataprovider.pas +%%DATADIR%%/components/chmhelp/lhelp/chmpopup.lfm +%%DATADIR%%/components/chmhelp/lhelp/chmpopup.lrs +%%DATADIR%%/components/chmhelp/lhelp/chmpopup.pas +%%DATADIR%%/components/chmhelp/lhelp/chmspecialparser.pas +%%DATADIR%%/components/chmhelp/lhelp/lhelp.lpi +%%DATADIR%%/components/chmhelp/lhelp/lhelp.lpr +%%DATADIR%%/components/chmhelp/lhelp/lhelpcontrol.pas +%%DATADIR%%/components/chmhelp/lhelp/lhelpcore.lfm +%%DATADIR%%/components/chmhelp/lhelp/lhelpcore.lrs +%%DATADIR%%/components/chmhelp/lhelp/lhelpcore.pas +%%DATADIR%%/components/chmhelp/packages/chm/chmbase.pas +%%DATADIR%%/components/chmhelp/packages/chm/chmpkg.lpk +%%DATADIR%%/components/chmhelp/packages/chm/chmpkg.pas +%%DATADIR%%/components/chmhelp/packages/chm/chmreader.pas +%%DATADIR%%/components/chmhelp/packages/chm/paslzx.pas +%%DATADIR%%/components/chmhelp/packages/help/lhelpcontrol.pas +%%DATADIR%%/components/chmhelp/packages/help/lhelpcontrolpkg.lpk +%%DATADIR%%/components/chmhelp/packages/help/lhelpcontrolpkg.pas +%%DATADIR%%/components/chmhelp/packages/idehelp/chmhelppkg.lpk +%%DATADIR%%/components/chmhelp/packages/idehelp/chmhelppkg.pas +%%DATADIR%%/components/chmhelp/packages/idehelp/lazchmhelp.pas +%%DATADIR%%/components/fpcunit/Makefile +%%DATADIR%%/components/fpcunit/Makefile.fpc +%%DATADIR%%/components/fpcunit/blueball.xpm +%%DATADIR%%/components/fpcunit/fpcunittestrunner.lpk +%%DATADIR%%/components/fpcunit/fpcunittestrunner.pas +%%DATADIR%%/components/fpcunit/guitestrunner.lfm +%%DATADIR%%/components/fpcunit/guitestrunner.lrs +%%DATADIR%%/components/fpcunit/guitestrunner.pas +%%DATADIR%%/components/fpcunit/ide/Makefile +%%DATADIR%%/components/fpcunit/ide/Makefile.fpc +%%DATADIR%%/components/fpcunit/ide/README.txt +%%DATADIR%%/components/fpcunit/ide/fpcunitide.lpk +%%DATADIR%%/components/fpcunit/ide/fpcunitide.pas +%%DATADIR%%/components/fpcunit/ide/fpcunitlazideintf.pas +%%DATADIR%%/components/fpcunit/ide/lib/README.txt +%%DATADIR%%/components/fpcunit/ide/testcaseopts.lfm +%%DATADIR%%/components/fpcunit/ide/testcaseopts.lrs +%%DATADIR%%/components/fpcunit/ide/testcaseopts.pas +%%DATADIR%%/components/fpcunit/lib/README.txt +%%DATADIR%%/components/images/examples/README.txt +%%DATADIR%%/components/images/examples/imagesexample.lpi +%%DATADIR%%/components/images/examples/imagesexample.lpr +%%DATADIR%%/components/images/examples/lazarus.jpg +%%DATADIR%%/components/images/examples/mainform.lfm +%%DATADIR%%/components/images/examples/mainform.lrs +%%DATADIR%%/components/images/examples/mainform.pas +%%DATADIR%%/components/images/imagesforlazarus.lpk +%%DATADIR%%/components/images/imagesforlazarus.pas +%%DATADIR%%/components/images/lazbmp.pas +%%DATADIR%%/components/images/lazjpg.pas +%%DATADIR%%/components/images/lazpng.pas +%%DATADIR%%/components/images/lazpnm.pas +%%DATADIR%%/components/images/laztga.pas +%%DATADIR%%/components/images/lazxpm.pas +%%DATADIR%%/components/images/readme.txt +%%DATADIR%%/components/interbase/README +%%DATADIR%%/components/interbase/interbaselaz.lpk +%%DATADIR%%/components/interbase/interbaselaz.pas +%%DATADIR%%/components/interbase/lib/README +%%DATADIR%%/components/interbase/registerinterbase.lrs +%%DATADIR%%/components/interbase/registerinterbase.pas +%%DATADIR%%/components/interbase/tibdatabase.ico +%%DATADIR%%/components/interbase/tibdatabase.xpm +%%DATADIR%%/components/interbase/tibquery.ico +%%DATADIR%%/components/interbase/tibquery.xpm +%%DATADIR%%/components/interbase/tibtransaction.xpm +%%DATADIR%%/components/jpeg/Makefile +%%DATADIR%%/components/jpeg/Makefile.fpc +%%DATADIR%%/components/jpeg/examples/README.txt +%%DATADIR%%/components/jpeg/examples/jpegexample.lpi +%%DATADIR%%/components/jpeg/examples/jpegexample.lpr +%%DATADIR%%/components/jpeg/examples/lazarus.jpg +%%DATADIR%%/components/jpeg/examples/mainform.lfm +%%DATADIR%%/components/jpeg/examples/mainform.lrs +%%DATADIR%%/components/jpeg/examples/mainform.pas +%%DATADIR%%/components/jpeg/jpegforlazarus.lpk +%%DATADIR%%/components/jpeg/jpegforlazarus.pas +%%DATADIR%%/components/jpeg/lazjpeg.pas +%%DATADIR%%/components/jpeg/readme.txt +%%DATADIR%%/components/macfiles/Makefile +%%DATADIR%%/components/macfiles/Makefile.fpc +%%DATADIR%%/components/macfiles/examples/Readme.txt +%%DATADIR%%/components/macfiles/examples/createmacapplication.lpi +%%DATADIR%%/components/macfiles/examples/createmacapplication.lpr +%%DATADIR%%/components/macfiles/macapplicationres.pas +%%DATADIR%%/components/macfiles/macosfiles.lpk +%%DATADIR%%/components/macfiles/macosfiles.pas +%%DATADIR%%/components/memds/Makefile +%%DATADIR%%/components/memds/Makefile.fpc +%%DATADIR%%/components/memds/frmselectdataset.lfm +%%DATADIR%%/components/memds/frmselectdataset.lrs +%%DATADIR%%/components/memds/frmselectdataset.pp +%%DATADIR%%/components/memds/lib/README +%%DATADIR%%/components/memds/memdsicons.lrs +%%DATADIR%%/components/memds/memdslaz.lpk +%%DATADIR%%/components/memds/memdslaz.pas +%%DATADIR%%/components/memds/tmemdataset.xpm +%%DATADIR%%/components/mpaslex/mpaslex.pp +%%DATADIR%%/components/opengl/agl.pp +%%DATADIR%%/components/opengl/example/mainunit.lfm +%%DATADIR%%/components/opengl/example/mainunit.lrs +%%DATADIR%%/components/opengl/example/mainunit.pas +%%DATADIR%%/components/opengl/example/testopenglcontext1.lpi +%%DATADIR%%/components/opengl/example/testopenglcontext1.lpr +%%DATADIR%%/components/opengl/glcarbonaglcontext.pas +%%DATADIR%%/components/opengl/glgtkglxcontext.pas +%%DATADIR%%/components/opengl/glwin32wglcontext.pas +%%DATADIR%%/components/opengl/gtk2x11/gdk2x.pas +%%DATADIR%%/components/opengl/gtk2x11/gdk2x11.lpk +%%DATADIR%%/components/opengl/gtk2x11/gdk2x11.pas +%%DATADIR%%/components/opengl/gtk2x11/include/gdk2x11includes.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkdisplay-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkdrawable-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkinputprivate.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkpixmap-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkprivate-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkscreen-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkwindow-x11.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gdkx.inc +%%DATADIR%%/components/opengl/gtk2x11/include/gxid_proto.inc +%%DATADIR%%/components/opengl/gtk2x11/include/mwmutil.inc +%%DATADIR%%/components/opengl/gtk2x11/include/xsettings-client.inc +%%DATADIR%%/components/opengl/gtk2x11/include/xsettings-common.inc +%%DATADIR%%/components/opengl/gtk2x11/scripts/gdkx11_h2pas.sh +%%DATADIR%%/components/opengl/lazopenglcontext.lpk +%%DATADIR%%/components/opengl/lazopenglcontext.pas +%%DATADIR%%/components/opengl/openglcontext.lrs +%%DATADIR%%/components/opengl/openglcontext.pas +%%DATADIR%%/components/opengl/topenglcontrol.xpm +%%DATADIR%%/components/prettyformat/pfidesource.pas +%%DATADIR%%/components/prettyformat/prettyformat.lpk +%%DATADIR%%/components/prettyformat/prettyformat.pas +%%DATADIR%%/components/prettyformat/ptopu.pp +%%DATADIR%%/components/printers/Makefile +%%DATADIR%%/components/printers/Makefile.fpc +%%DATADIR%%/components/printers/lib/README +%%DATADIR%%/components/printers/osprinters.pas +%%DATADIR%%/components/printers/printer4lazarus.lpk +%%DATADIR%%/components/printers/printer4lazarus.pas +%%DATADIR%%/components/printers/printersdlgs.lrs +%%DATADIR%%/components/printers/printersdlgs.pp +%%DATADIR%%/components/printers/readme.txt +%%DATADIR%%/components/printers/sample/frmselprinter.lfm +%%DATADIR%%/components/printers/sample/frmselprinter.lrs +%%DATADIR%%/components/printers/sample/frmselprinter.pas +%%DATADIR%%/components/printers/sample/selectprinter.lpi +%%DATADIR%%/components/printers/sample/selectprinter.lpr +%%DATADIR%%/components/printers/unix/cupsdyn.pp +%%DATADIR%%/components/printers/unix/cupsprinters.inc +%%DATADIR%%/components/printers/unix/cupsprinters_h.inc +%%DATADIR%%/components/printers/unix/cupsprndialogs.inc +%%DATADIR%%/components/printers/unix/jobsimglist.lrs +%%DATADIR%%/components/printers/unix/minicupslibc.pas +%%DATADIR%%/components/printers/unix/printerprop.lrs +%%DATADIR%%/components/printers/unix/selectprinter.lrs +%%DATADIR%%/components/printers/unix/udlgprintersjobs.lfm +%%DATADIR%%/components/printers/unix/udlgprintersjobs.lrs +%%DATADIR%%/components/printers/unix/udlgprintersjobs.pp +%%DATADIR%%/components/printers/unix/udlgpropertiesprinter.lfm +%%DATADIR%%/components/printers/unix/udlgpropertiesprinter.lrs +%%DATADIR%%/components/printers/unix/udlgpropertiesprinter.pp +%%DATADIR%%/components/printers/unix/udlgselectprinter.lfm +%%DATADIR%%/components/printers/unix/udlgselectprinter.lrs +%%DATADIR%%/components/printers/unix/udlgselectprinter.pp +%%DATADIR%%/components/printers/win32/winprinters.inc +%%DATADIR%%/components/printers/win32/winprinters_h.inc +%%DATADIR%%/components/printers/win32/winprndialogs.inc +%%DATADIR%%/components/printers/win32/winutilprn.pas +%%DATADIR%%/components/printers/win32/winutilprnconst.inc +%%DATADIR%%/components/projecttemplates/Makefile +%%DATADIR%%/components/projecttemplates/Makefile.fpc +%%DATADIR%%/components/projecttemplates/README +%%DATADIR%%/components/projecttemplates/frmtemplatesettings.lfm +%%DATADIR%%/components/projecttemplates/frmtemplatesettings.lrs +%%DATADIR%%/components/projecttemplates/frmtemplatesettings.pas +%%DATADIR%%/components/projecttemplates/frmtemplatevariables.lfm +%%DATADIR%%/components/projecttemplates/frmtemplatevariables.lrs +%%DATADIR%%/components/projecttemplates/frmtemplatevariables.pas +%%DATADIR%%/components/projecttemplates/idetemplateproject.pp +%%DATADIR%%/components/projecttemplates/projecttemplates.pp +%%DATADIR%%/components/projecttemplates/projtemplates.lpk +%%DATADIR%%/components/projecttemplates/projtemplates.pas +%%DATADIR%%/components/rtticontrols/Makefile +%%DATADIR%%/components/rtticontrols/Makefile.fpc +%%DATADIR%%/components/rtticontrols/README +%%DATADIR%%/components/rtticontrols/baseicon.png +%%DATADIR%%/components/rtticontrols/examples/example1.lfm +%%DATADIR%%/components/rtticontrols/examples/example1.lrs +%%DATADIR%%/components/rtticontrols/examples/example1.pas +%%DATADIR%%/components/rtticontrols/examples/example2.lfm +%%DATADIR%%/components/rtticontrols/examples/example2.lrs +%%DATADIR%%/components/rtticontrols/examples/example2.pas +%%DATADIR%%/components/rtticontrols/examples/example3.lfm +%%DATADIR%%/components/rtticontrols/examples/example3.lrs +%%DATADIR%%/components/rtticontrols/examples/example3.pas +%%DATADIR%%/components/rtticontrols/examples/examplegrid1.lfm +%%DATADIR%%/components/rtticontrols/examples/examplegrid1.lrs +%%DATADIR%%/components/rtticontrols/examples/examplegrid1.pas +%%DATADIR%%/components/rtticontrols/examples/exampleproject1.lpi +%%DATADIR%%/components/rtticontrols/examples/exampleproject1.lpr +%%DATADIR%%/components/rtticontrols/examples/exampleproject2.lpi +%%DATADIR%%/components/rtticontrols/examples/exampleproject2.lpr +%%DATADIR%%/components/rtticontrols/examples/exampleproject3.lpi +%%DATADIR%%/components/rtticontrols/examples/exampleproject3.lpr +%%DATADIR%%/components/rtticontrols/examples/exampleprojectgrid1.lpi +%%DATADIR%%/components/rtticontrols/examples/exampleprojectgrid1.lpr +%%DATADIR%%/components/rtticontrols/lib/README +%%DATADIR%%/components/rtticontrols/rttictrls.lrs +%%DATADIR%%/components/rtticontrols/rttictrls.pas +%%DATADIR%%/components/rtticontrols/rttigrids.pas +%%DATADIR%%/components/rtticontrols/runtimetypeinfocontrols.lpk +%%DATADIR%%/components/rtticontrols/runtimetypeinfocontrols.pas +%%DATADIR%%/components/rtticontrols/tmultipropertylink.xpm +%%DATADIR%%/components/rtticontrols/ttibutton.xpm +%%DATADIR%%/components/rtticontrols/tticalendar.xpm +%%DATADIR%%/components/rtticontrols/tticolorbutton.xpm +%%DATADIR%%/components/rtticontrols/tticombobox.xpm +%%DATADIR%%/components/rtticontrols/tticheckbox.xpm +%%DATADIR%%/components/rtticontrols/tticheckgroup.xpm +%%DATADIR%%/components/rtticontrols/ttichecklistbox.xpm +%%DATADIR%%/components/rtticontrols/ttiedit.xpm +%%DATADIR%%/components/rtticontrols/ttifloatspinedit.xpm +%%DATADIR%%/components/rtticontrols/ttigrid.xpm +%%DATADIR%%/components/rtticontrols/ttigroupbox.xpm +%%DATADIR%%/components/rtticontrols/ttiimage.xpm +%%DATADIR%%/components/rtticontrols/ttilabel.xpm +%%DATADIR%%/components/rtticontrols/ttilistbox.xpm +%%DATADIR%%/components/rtticontrols/ttimaskedit.xpm +%%DATADIR%%/components/rtticontrols/ttimemo.xpm +%%DATADIR%%/components/rtticontrols/ttiprogressbar.xpm +%%DATADIR%%/components/rtticontrols/ttipropertygrid.xpm +%%DATADIR%%/components/rtticontrols/ttiradiogroup.xpm +%%DATADIR%%/components/rtticontrols/ttispinedit.xpm +%%DATADIR%%/components/rtticontrols/ttitrackbar.xpm +%%DATADIR%%/components/rx/apputils.pp +%%DATADIR%%/components/rx/lib/README.txt +%%DATADIR%%/components/rx/mrulist.lrs +%%DATADIR%%/components/rx/mrulist.pp +%%DATADIR%%/components/rx/placement.pp +%%DATADIR%%/components/rx/rx.lpk +%%DATADIR%%/components/rx/rx.pas +%%DATADIR%%/components/rx/strholder.lrs +%%DATADIR%%/components/rx/strholder.pp +%%DATADIR%%/components/rx/tmrumanager.xpm +%%DATADIR%%/components/rx/tstrholder.xpm +%%DATADIR%%/components/sdf/Makefile +%%DATADIR%%/components/sdf/Makefile.fpc +%%DATADIR%%/components/sdf/registersdf.lrs +%%DATADIR%%/components/sdf/registersdf.pas +%%DATADIR%%/components/sdf/sdflaz.lpk +%%DATADIR%%/components/sdf/sdflaz.pas +%%DATADIR%%/components/sdf/tfixedformatdataset.xpm +%%DATADIR%%/components/sdf/tsdfdataset.xpm +%%DATADIR%%/components/sqldb/Makefile +%%DATADIR%%/components/sqldb/Makefile.fpc +%%DATADIR%%/components/sqldb/lib/README +%%DATADIR%%/components/sqldb/registersqldb.lrs +%%DATADIR%%/components/sqldb/registersqldb.pas +%%DATADIR%%/components/sqldb/sqldblaz.lpk +%%DATADIR%%/components/sqldb/sqldblaz.pas +%%DATADIR%%/components/sqldb/tibconnection.xpm +%%DATADIR%%/components/sqldb/tmysqlconnection.xpm +%%DATADIR%%/components/sqldb/tpqconnection.xpm +%%DATADIR%%/components/sqldb/tsqlquery.xpm +%%DATADIR%%/components/sqldb/tsqltransaction.xpm +%%DATADIR%%/components/sqlite/lib/README +%%DATADIR%%/components/sqlite/registersqlite.pas +%%DATADIR%%/components/sqlite/registersqlite3.pas +%%DATADIR%%/components/sqlite/sqlite3icon.lrs +%%DATADIR%%/components/sqlite/sqlite3laz.lpk +%%DATADIR%%/components/sqlite/sqlite3laz.pas +%%DATADIR%%/components/sqlite/sqlitecomponenteditor.lfm +%%DATADIR%%/components/sqlite/sqlitecomponenteditor.lrs +%%DATADIR%%/components/sqlite/sqlitecomponenteditor.pas +%%DATADIR%%/components/sqlite/sqliteds.lrs +%%DATADIR%%/components/sqlite/sqliteicon.lrs +%%DATADIR%%/components/sqlite/sqlitelaz.lpk +%%DATADIR%%/components/sqlite/sqlitelaz.pas +%%DATADIR%%/components/sqlite/tsqlite3dataset.xpm +%%DATADIR%%/components/sqlite/tsqlitedataset.xpm +%%DATADIR%%/components/synedit/Makefile +%%DATADIR%%/components/synedit/Makefile.fpc +%%DATADIR%%/components/synedit/allsyneditunits.pp +%%DATADIR%%/components/synedit/design/README +%%DATADIR%%/components/synedit/design/tsynanysyn.xpm +%%DATADIR%%/components/synedit/design/tsynautocomplete.xpm +%%DATADIR%%/components/synedit/design/tsyncppsyn.xpm +%%DATADIR%%/components/synedit/design/tsyncsssyn.xpm +%%DATADIR%%/components/synedit/design/tsynedit.xpm +%%DATADIR%%/components/synedit/design/tsynexporterhtml.xpm +%%DATADIR%%/components/synedit/design/tsynhtmlsyn.xpm +%%DATADIR%%/components/synedit/design/tsynjavasyn.xpm +%%DATADIR%%/components/synedit/design/tsynlfmsyn.xpm +%%DATADIR%%/components/synedit/design/tsynmacrorecorder.xpm +%%DATADIR%%/components/synedit/design/tsynmemo.xpm +%%DATADIR%%/components/synedit/design/tsynmultisyn.xpm +%%DATADIR%%/components/synedit/design/tsynpassyn.xpm +%%DATADIR%%/components/synedit/design/tsynperlsyn.xpm +%%DATADIR%%/components/synedit/design/tsynphpsyn.xpm +%%DATADIR%%/components/synedit/design/tsynpythonsyn.xpm +%%DATADIR%%/components/synedit/design/tsynsqlsyn.xpm +%%DATADIR%%/components/synedit/design/tsyntexsyn.xpm +%%DATADIR%%/components/synedit/design/tsynunixshellscriptsyn.xpm +%%DATADIR%%/components/synedit/design/tsynxmlsyn.xpm +%%DATADIR%%/components/synedit/languages/README +%%DATADIR%%/components/synedit/languages/synedit.ca.po +%%DATADIR%%/components/synedit/languages/synedit.de.po +%%DATADIR%%/components/synedit/languages/synedit.fi.po +%%DATADIR%%/components/synedit/languages/synedit.fr.po +%%DATADIR%%/components/synedit/languages/synedit.it.po +%%DATADIR%%/components/synedit/languages/synedit.pl.po +%%DATADIR%%/components/synedit/languages/synedit.pliso.po +%%DATADIR%%/components/synedit/languages/synedit.plwin.po +%%DATADIR%%/components/synedit/languages/synedit.po +%%DATADIR%%/components/synedit/languages/synedit.ru.po +%%DATADIR%%/components/synedit/languages/synedit.ua.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.ca.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.de.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.fr.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.it.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.pl.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.pliso.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.plwin.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.ru.po +%%DATADIR%%/components/synedit/languages/synmacrorecorder.ua.po +%%DATADIR%%/components/synedit/syncompletion.pas +%%DATADIR%%/components/synedit/synedit.inc +%%DATADIR%%/components/synedit/synedit.pp +%%DATADIR%%/components/synedit/syneditautocomplete.pp +%%DATADIR%%/components/synedit/syneditexport.pas +%%DATADIR%%/components/synedit/synedithighlighter.pp +%%DATADIR%%/components/synedit/syneditkeycmds.pp +%%DATADIR%%/components/synedit/syneditlazdsgn.lrs +%%DATADIR%%/components/synedit/syneditlazdsgn.pas +%%DATADIR%%/components/synedit/syneditmiscclasses.pp +%%DATADIR%%/components/synedit/syneditmiscprocs.pp +%%DATADIR%%/components/synedit/syneditplugins.pas +%%DATADIR%%/components/synedit/syneditregexsearch.pas +%%DATADIR%%/components/synedit/syneditsearch.pp +%%DATADIR%%/components/synedit/syneditstrconst.pp +%%DATADIR%%/components/synedit/synedittextbuffer.pp +%%DATADIR%%/components/synedit/synedittypes.pp +%%DATADIR%%/components/synedit/synexporthtml.pas +%%DATADIR%%/components/synedit/synhighlighterany.pas +%%DATADIR%%/components/synedit/synhighlightercpp.pp +%%DATADIR%%/components/synedit/synhighlightercss.pas +%%DATADIR%%/components/synedit/synhighlighterhashentries.pas +%%DATADIR%%/components/synedit/synhighlighterhtml.pp +%%DATADIR%%/components/synedit/synhighlighterjava.pas +%%DATADIR%%/components/synedit/synhighlighterlfm.pas +%%DATADIR%%/components/synedit/synhighlightermulti.pas +%%DATADIR%%/components/synedit/synhighlighterpas.pp +%%DATADIR%%/components/synedit/synhighlighterperl.pas +%%DATADIR%%/components/synedit/synhighlighterphp.pas +%%DATADIR%%/components/synedit/synhighlighterposition.pas +%%DATADIR%%/components/synedit/synhighlighterpython.pas +%%DATADIR%%/components/synedit/synhighlightersql.pas +%%DATADIR%%/components/synedit/synhighlightertex.pas +%%DATADIR%%/components/synedit/synhighlighterunixshellscript.pas +%%DATADIR%%/components/synedit/synhighlighterxml.pas +%%DATADIR%%/components/synedit/synmacrorecorder.pas +%%DATADIR%%/components/synedit/synmemo.pas +%%DATADIR%%/components/synedit/synregexpr.pas +%%DATADIR%%/components/synedit/syntextdrawer.pp +%%DATADIR%%/components/synedit/units/i386-freebsd/allsyneditunits.o +%%DATADIR%%/components/synedit/units/i386-freebsd/allsyneditunits.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syncompletion.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syncompletion.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synedit.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synedit.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditautocomplete.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditautocomplete.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditexport.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditexport.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synedithighlighter.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synedithighlighter.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditkeycmds.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditkeycmds.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditlazdsgn.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditlazdsgn.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditmiscclasses.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditmiscclasses.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditmiscprocs.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditmiscprocs.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditplugins.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditplugins.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditregexsearch.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditregexsearch.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditsearch.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditsearch.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditstrconst.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditstrconst.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syneditstrconst.rst +%%DATADIR%%/components/synedit/units/i386-freebsd/synedittextbuffer.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synedittextbuffer.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synedittypes.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synedittypes.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synexporthtml.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synexporthtml.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterany.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterany.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightercpp.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightercpp.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightercss.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightercss.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterhashentries.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterhashentries.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterhtml.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterhtml.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterjava.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterjava.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterlfm.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterlfm.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightermulti.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightermulti.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterpas.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterpas.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterperl.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterperl.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterphp.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterphp.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterposition.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterposition.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterpython.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterpython.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightersql.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightersql.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightertex.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlightertex.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterunixshellscript.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterunixshellscript.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterunixshellscript.rst +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterxml.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synhighlighterxml.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synmacrorecorder.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synmacrorecorder.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synmacrorecorder.rst +%%DATADIR%%/components/synedit/units/i386-freebsd/synmemo.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synmemo.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/synregexpr.o +%%DATADIR%%/components/synedit/units/i386-freebsd/synregexpr.ppu +%%DATADIR%%/components/synedit/units/i386-freebsd/syntextdrawer.o +%%DATADIR%%/components/synedit/units/i386-freebsd/syntextdrawer.ppu +%%DATADIR%%/components/synunihighlighter/CREDITS +%%DATADIR%%/components/synunihighlighter/CHANGES +%%DATADIR%%/components/synunihighlighter/README +%%DATADIR%%/components/synunihighlighter/lib/README +%%DATADIR%%/components/synunihighlighter/synuni.lpk +%%DATADIR%%/components/synunihighlighter/synuni.pas +%%DATADIR%%/components/synunihighlighter/synunidesigner.pas +%%DATADIR%%/components/synunihighlighter/synunidesigner.rst +%%DATADIR%%/components/synunihighlighter/synunihighlighter.pas +%%DATADIR%%/components/synunihighlighter/synunireg.pas +%%DATADIR%%/components/synunihighlighter/synunireg.rst +%%DATADIR%%/components/tdbf/Makefile +%%DATADIR%%/components/tdbf/Makefile.fpc +%%DATADIR%%/components/tdbf/dbflaz.lpk +%%DATADIR%%/components/tdbf/dbflaz.pas +%%DATADIR%%/components/tdbf/registerdbf.lrs +%%DATADIR%%/components/tdbf/registerdbf.pas +%%DATADIR%%/components/tdbf/tdbf.xpm +%%DATADIR%%/components/trayicon/clean.bat +%%DATADIR%%/components/trayicon/examples/frmtest.dfm +%%DATADIR%%/components/trayicon/examples/frmtest.lfm +%%DATADIR%%/components/trayicon/examples/frmtest.lrs +%%DATADIR%%/components/trayicon/examples/frmtest.pas +%%DATADIR%%/components/trayicon/examples/icon.ico +%%DATADIR%%/components/trayicon/examples/magnifier.res +%%DATADIR%%/components/trayicon/examples/wndtray.dpr +%%DATADIR%%/components/trayicon/examples/wndtray.lpi +%%DATADIR%%/components/trayicon/trayicon.pas +%%DATADIR%%/components/trayicon/trayiconlaz.lpk +%%DATADIR%%/components/trayicon/trayiconlaz.pas +%%DATADIR%%/components/trayicon/wscommontrayicon.pas +%%DATADIR%%/components/trayicon/wsgtk2trayicon.pas +%%DATADIR%%/components/trayicon/wsgtktrayicon.pas +%%DATADIR%%/components/trayicon/wstrayicon.pas +%%DATADIR%%/components/trayicon/wswin32trayicon.pas +%%DATADIR%%/components/turbopower_ipro/Makefile +%%DATADIR%%/components/turbopower_ipro/Makefile.fpc +%%DATADIR%%/components/turbopower_ipro/ipanim.pas +%%DATADIR%%/components/turbopower_ipro/ipconst.pas +%%DATADIR%%/components/turbopower_ipro/ipdefct.inc +%%DATADIR%%/components/turbopower_ipro/ipdefine.inc +%%DATADIR%%/components/turbopower_ipro/iphtml.lrs +%%DATADIR%%/components/turbopower_ipro/iphtml.pas +%%DATADIR%%/components/turbopower_ipro/iphtmlpv.lfm +%%DATADIR%%/components/turbopower_ipro/iphtmlpv.lrs +%%DATADIR%%/components/turbopower_ipro/iphtmlpv.pas +%%DATADIR%%/components/turbopower_ipro/ipmsg.pas +%%DATADIR%%/components/turbopower_ipro/ipstrms.pas +%%DATADIR%%/components/turbopower_ipro/iputils.pas +%%DATADIR%%/components/turbopower_ipro/tiphtmlpanel.xpm +%%DATADIR%%/components/turbopower_ipro/turbopoweripro.lpk +%%DATADIR%%/components/turbopower_ipro/turbopoweripro.pas +%%DATADIR%%/converter/delphiproject2laz.pas +%%DATADIR%%/converter/delphiunit2laz.lfm +%%DATADIR%%/converter/delphiunit2laz.lrs +%%DATADIR%%/converter/delphiunit2laz.pas +%%DATADIR%%/converter/lazxmlforms.pas +%%DATADIR%%/debugger/breakpointsdlg.lfm +%%DATADIR%%/debugger/breakpointsdlg.lrs +%%DATADIR%%/debugger/breakpointsdlg.pp +%%DATADIR%%/debugger/callstackdlg.lfm +%%DATADIR%%/debugger/callstackdlg.lrs +%%DATADIR%%/debugger/callstackdlg.pp +%%DATADIR%%/debugger/cmdlinedebugger.pp +%%DATADIR%%/debugger/dbgoutputform.lfm +%%DATADIR%%/debugger/dbgoutputform.lrs +%%DATADIR%%/debugger/dbgoutputform.pp +%%DATADIR%%/debugger/dbgutils.pp +%%DATADIR%%/debugger/debugger.pp +%%DATADIR%%/debugger/debuggerdlg.pp +%%DATADIR%%/debugger/evaluatedlg.lfm +%%DATADIR%%/debugger/evaluatedlg.lrs +%%DATADIR%%/debugger/evaluatedlg.pp +%%DATADIR%%/debugger/gdbdebugger.pp +%%DATADIR%%/debugger/gdbmidebugger.pp +%%DATADIR%%/debugger/gdbtypeinfo.pp +%%DATADIR%%/debugger/localsdlg.lfm +%%DATADIR%%/debugger/localsdlg.lrs +%%DATADIR%%/debugger/localsdlg.pp +%%DATADIR%%/debugger/processdebugger.pp +%%DATADIR%%/debugger/processlist.pas +%%DATADIR%%/debugger/sshgdbmidebugger.pas +%%DATADIR%%/debugger/test/debugtest.pp +%%DATADIR%%/debugger/test/debugtestform.lrs +%%DATADIR%%/debugger/test/debugtestform.pp +%%DATADIR%%/debugger/test/examples/testcntr.pp +%%DATADIR%%/debugger/test/examples/testwait.pp +%%DATADIR%%/debugger/watchesdlg.lfm +%%DATADIR%%/debugger/watchesdlg.lrs +%%DATADIR%%/debugger/watchesdlg.pp +%%DATADIR%%/debugger/watchpropertydlg.lfm +%%DATADIR%%/debugger/watchpropertydlg.lrs +%%DATADIR%%/debugger/watchpropertydlg.pp +%%DATADIR%%/debugger/windebug/fpwd/README +%%DATADIR%%/debugger/windebug/fpwd/fpwd.lpr +%%DATADIR%%/debugger/windebug/fpwd/fpwdcommand.pas +%%DATADIR%%/debugger/windebug/fpwd/fpwdglobal.pas +%%DATADIR%%/debugger/windebug/fpwd/fpwdloop.pas +%%DATADIR%%/debugger/windebug/fpwd/fpwdpeimage.pas +%%DATADIR%%/debugger/windebug/fpwd/fpwdtype.pas +%%DATADIR%%/debugger/windebug/test/asmtest.lpi +%%DATADIR%%/debugger/windebug/test/asmtest.lpr +%%DATADIR%%/debugger/windebug/test/asmtestunit.lfm +%%DATADIR%%/debugger/windebug/test/asmtestunit.lrs +%%DATADIR%%/debugger/windebug/test/asmtestunit.pas +%%DATADIR%%/debugger/windebug/windebugger.pp +%%DATADIR%%/debugger/windebug/windextra.pp +%%DATADIR%%/debugger/windebug/windisas.pp +%%DATADIR%%/debugger/windebug/windpetypes.pp +%%DATADIR%%/designer/Makefile +%%DATADIR%%/designer/Makefile.fpc +%%DATADIR%%/designer/abstractcompiler.pp +%%DATADIR%%/designer/abstracteditor.pp +%%DATADIR%%/designer/abstractfilesystem.pp +%%DATADIR%%/designer/aligncompsdlg.lfm +%%DATADIR%%/designer/aligncompsdlg.lrs +%%DATADIR%%/designer/aligncompsdlg.pp +%%DATADIR%%/designer/anchoreditor.lfm +%%DATADIR%%/designer/anchoreditor.lrs +%%DATADIR%%/designer/anchoreditor.pas +%%DATADIR%%/designer/controlselection.pp +%%DATADIR%%/designer/changeclassdialog.lfm +%%DATADIR%%/designer/changeclassdialog.lrs +%%DATADIR%%/designer/changeclassdialog.pas +%%DATADIR%%/designer/designer.pp +%%DATADIR%%/designer/designermenu.pp +%%DATADIR%%/designer/designerprocs.pas +%%DATADIR%%/designer/filesystem.pp +%%DATADIR%%/designer/jitform/Makefile +%%DATADIR%%/designer/jitform/Makefile.fpc +%%DATADIR%%/designer/jitform/README.txt +%%DATADIR%%/designer/jitform/jitform.pas +%%DATADIR%%/designer/jitform/units/i386-freebsd/jitform.o +%%DATADIR%%/designer/jitform/units/i386-freebsd/jitform.ppu +%%DATADIR%%/designer/jitforms.pp +%%DATADIR%%/designer/menueditorform.pas +%%DATADIR%%/designer/menupropedit.pp +%%DATADIR%%/designer/noncontroldesigner.pas +%%DATADIR%%/designer/objinspext.pas +%%DATADIR%%/designer/scalecompsdlg.lfm +%%DATADIR%%/designer/scalecompsdlg.lrs +%%DATADIR%%/designer/scalecompsdlg.pp +%%DATADIR%%/designer/sizecompsdlg.lfm +%%DATADIR%%/designer/sizecompsdlg.lrs +%%DATADIR%%/designer/sizecompsdlg.pp +%%DATADIR%%/designer/taborderdlg.lfm +%%DATADIR%%/designer/taborderdlg.lrs +%%DATADIR%%/designer/taborderdlg.pas +%%DATADIR%%/doceditor/eleditor.pp +%%DATADIR%%/doceditor/eleditor.xml +%%DATADIR%%/doceditor/fmmakeskel.lfm +%%DATADIR%%/doceditor/fmmakeskel.lrs +%%DATADIR%%/doceditor/fmmakeskel.pp +%%DATADIR%%/doceditor/fpdeutil.pp +%%DATADIR%%/doceditor/frmabout.lfm +%%DATADIR%%/doceditor/frmabout.lrs +%%DATADIR%%/doceditor/frmabout.pp +%%DATADIR%%/doceditor/frmbuild.lfm +%%DATADIR%%/doceditor/frmbuild.lrs +%%DATADIR%%/doceditor/frmbuild.pp +%%DATADIR%%/doceditor/frmbuild.rst +%%DATADIR%%/doceditor/frmexample.lfm +%%DATADIR%%/doceditor/frmexample.lrs +%%DATADIR%%/doceditor/frmexample.pp +%%DATADIR%%/doceditor/frmlink.lfm +%%DATADIR%%/doceditor/frmlink.lrs +%%DATADIR%%/doceditor/frmlink.pp +%%DATADIR%%/doceditor/frmmain.lfm +%%DATADIR%%/doceditor/frmmain.lrs +%%DATADIR%%/doceditor/frmmain.pp +%%DATADIR%%/doceditor/frmmain.xml +%%DATADIR%%/doceditor/frmmakeskel.lfm +%%DATADIR%%/doceditor/frmmakeskel.lrs +%%DATADIR%%/doceditor/frmmakeskel.pp +%%DATADIR%%/doceditor/frmnewnode.lfm +%%DATADIR%%/doceditor/frmnewnode.lrs +%%DATADIR%%/doceditor/frmnewnode.pp +%%DATADIR%%/doceditor/frmoptions.lfm +%%DATADIR%%/doceditor/frmoptions.lrs +%%DATADIR%%/doceditor/frmoptions.pp +%%DATADIR%%/doceditor/frmsource.lfm +%%DATADIR%%/doceditor/frmsource.lrs +%%DATADIR%%/doceditor/frmsource.pas +%%DATADIR%%/doceditor/frmtable.lfm +%%DATADIR%%/doceditor/frmtable.lrs +%%DATADIR%%/doceditor/frmtable.pp +%%DATADIR%%/doceditor/icons.lrs +%%DATADIR%%/doceditor/images/add.xpm +%%DATADIR%%/doceditor/images/delete.xpm +%%DATADIR%%/doceditor/images/edit.xpm +%%DATADIR%%/doceditor/images/node_edit.xpm +%%DATADIR%%/doceditor/images/node_finished.xpm +%%DATADIR%%/doceditor/images/node_modified.xpm +%%DATADIR%%/doceditor/images/node_new.xpm +%%DATADIR%%/doceditor/lazde.lpi +%%DATADIR%%/doceditor/lazde.lpr +%%DATADIR%%/doceditor/lazdemsg.pp +%%DATADIR%%/doceditor/lazdemsg.rst +%%DATADIR%%/doceditor/lazdeopts.pp +%%DATADIR%%/doceditor/pgeditor.pp +%%DATADIR%%/doceditor/pkedit.pp +%%DATADIR%%/doceditor/pkeditor.pp +%%DATADIR%%/docs/BigIDE.txt +%%DATADIR%%/docs/Contributors.txt +%%DATADIR%%/docs/CrossCompile.txt +%%DATADIR%%/docs/DesignGuidelines.txt +%%DATADIR%%/docs/ExtendingTheIDE.txt +%%DATADIR%%/docs/FAQ +%%DATADIR%%/docs/ForDelphians.txt +%%DATADIR%%/docs/IDEWindowHelpTree.xml +%%DATADIR%%/docs/INSTALL +%%DATADIR%%/docs/LCLMessages.txt +%%DATADIR%%/docs/LazarusIDEInternals.pdf +%%DATADIR%%/docs/Packages.txt +%%DATADIR%%/docs/RemoteDebugging.txt +%%DATADIR%%/docs/TODO +%%DATADIR%%/docs/html/README +%%DATADIR%%/docs/html/fpdoc.css +%%DATADIR%%/docs/html/localrtlfooter.xml +%%DATADIR%%/docs/html/locallclfooter.xml +%%DATADIR%%/docs/html/sourceforgefooter.xml +%%DATADIR%%/docs/html/update_gtkintf_html.sh +%%DATADIR%%/docs/html/update_html.sh +%%DATADIR%%/docs/html/update_lcl_html.sh +%%DATADIR%%/docs/images/cheetah1.png +%%DATADIR%%/docs/images/laztitle.jpg +%%DATADIR%%/docs/index.html +%%DATADIR%%/docs/xml/README.txt +%%DATADIR%%/docs/xml/find_cvs_fpdoc_files.pl +%%DATADIR%%/docs/xml/lcl/actnlist.xml +%%DATADIR%%/docs/xml/lcl/alllclunits.xml +%%DATADIR%%/docs/xml/lcl/arrow.xml +%%DATADIR%%/docs/xml/lcl/asyncprocess.xml +%%DATADIR%%/docs/xml/lcl/avglvltree.xml +%%DATADIR%%/docs/xml/lcl/buttonpanel.xml +%%DATADIR%%/docs/xml/lcl/buttons.xml +%%DATADIR%%/docs/xml/lcl/calendar.xml +%%DATADIR%%/docs/xml/lcl/clipbrd.xml +%%DATADIR%%/docs/xml/lcl/clistbox.xml +%%DATADIR%%/docs/xml/lcl/colorbox.xml +%%DATADIR%%/docs/xml/lcl/comctrls.xml +%%DATADIR%%/docs/xml/lcl/comctrls/ttoolbutton.pas +%%DATADIR%%/docs/xml/lcl/comctrls/ttreenode_data.pas +%%DATADIR%%/docs/xml/lcl/commctrl.xml +%%DATADIR%%/docs/xml/lcl/controls.xml +%%DATADIR%%/docs/xml/lcl/customtimer.xml +%%DATADIR%%/docs/xml/lcl/chart.xml +%%DATADIR%%/docs/xml/lcl/checklst.xml +%%DATADIR%%/docs/xml/lcl/dbactns.xml +%%DATADIR%%/docs/xml/lcl/dbctrls.xml +%%DATADIR%%/docs/xml/lcl/dbgrids.xml +%%DATADIR%%/docs/xml/lcl/defaulttranslator.xml +%%DATADIR%%/docs/xml/lcl/dialogs.xml +%%DATADIR%%/docs/xml/lcl/dirsel.xml +%%DATADIR%%/docs/xml/lcl/dynamicarray.xml +%%DATADIR%%/docs/xml/lcl/dynamicarray/tarrayexample.pas +%%DATADIR%%/docs/xml/lcl/dynhasharray.xml +%%DATADIR%%/docs/xml/lcl/dynqueue.xml +%%DATADIR%%/docs/xml/lcl/editbtn.xml +%%DATADIR%%/docs/xml/lcl/extctrls.xml +%%DATADIR%%/docs/xml/lcl/extdlgs.xml +%%DATADIR%%/docs/xml/lcl/extendedstrings.xml +%%DATADIR%%/docs/xml/lcl/extgraphics.xml +%%DATADIR%%/docs/xml/lcl/filectrl.xml +%%DATADIR%%/docs/xml/lcl/fileutil.xml +%%DATADIR%%/docs/xml/lcl/forms.xml +%%DATADIR%%/docs/xml/lcl/fpcadds.xml +%%DATADIR%%/docs/xml/lcl/graphics.xml +%%DATADIR%%/docs/xml/lcl/graphmath.xml +%%DATADIR%%/docs/xml/lcl/graphtype.xml +%%DATADIR%%/docs/xml/lcl/grids.xml +%%DATADIR%%/docs/xml/lcl/helpintfs.xml +%%DATADIR%%/docs/xml/lcl/imglist.xml +%%DATADIR%%/docs/xml/lcl/inipropstorage.xml +%%DATADIR%%/docs/xml/lcl/interfacebase.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkdef.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkfontcache.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkglobals.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkint.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkmsgqueue.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkproc.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwinapiwindow.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsactnlist.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsarrow.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsbuttons.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwscalendar.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsclistbox.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwscomctrls.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwscontrols.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwschecklst.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsdbctrls.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsdbgrids.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsdialogs.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsdirsel.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwseditbtn.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsextctrls.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsextdlgs.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsfilectrl.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsforms.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsgrids.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsimglist.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsmaskedit.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsmenus.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwspairsplitter.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsspin.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwsstdctrls.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/gtkwstoolwin.xml +%%DATADIR%%/docs/xml/lcl/interfaces/gtk/interfaces.xml +%%DATADIR%%/docs/xml/lcl/intfgraphics.xml +%%DATADIR%%/docs/xml/lcl/lazconfigstorage.xml +%%DATADIR%%/docs/xml/lcl/lazhelphtml.xml +%%DATADIR%%/docs/xml/lcl/lazhelpintf.xml +%%DATADIR%%/docs/xml/lcl/lazlinkedlist.xml +%%DATADIR%%/docs/xml/lcl/lcl.xml +%%DATADIR%%/docs/xml/lcl/lclclasses.xml +%%DATADIR%%/docs/xml/lcl/lclintf.xml +%%DATADIR%%/docs/xml/lcl/lclmemmanager.xml +%%DATADIR%%/docs/xml/lcl/lclproc.xml +%%DATADIR%%/docs/xml/lcl/lclrescache.xml +%%DATADIR%%/docs/xml/lcl/lclstrconsts.xml +%%DATADIR%%/docs/xml/lcl/lcltype.xml +%%DATADIR%%/docs/xml/lcl/lconv.xml +%%DATADIR%%/docs/xml/lcl/ldockctrl.xml +%%DATADIR%%/docs/xml/lcl/ldockctrledit.xml +%%DATADIR%%/docs/xml/lcl/ldocktree.xml +%%DATADIR%%/docs/xml/lcl/lmessages.xml +%%DATADIR%%/docs/xml/lcl/lresources.xml +%%DATADIR%%/docs/xml/lcl/maps.xml +%%DATADIR%%/docs/xml/lcl/maskedit.xml +%%DATADIR%%/docs/xml/lcl/menus.xml +%%DATADIR%%/docs/xml/lcl/pairsplitter.xml +%%DATADIR%%/docs/xml/lcl/postscriptcanvas.xml +%%DATADIR%%/docs/xml/lcl/postscriptprinter.xml +%%DATADIR%%/docs/xml/lcl/printers.xml +%%DATADIR%%/docs/xml/lcl/propertystorage.xml +%%DATADIR%%/docs/xml/lcl/spin.xml +%%DATADIR%%/docs/xml/lcl/stdactns.xml +%%DATADIR%%/docs/xml/lcl/stdctrls.xml +%%DATADIR%%/docs/xml/lcl/stdctrls/tcustomcheckbox_allowgrayed.pas +%%DATADIR%%/docs/xml/lcl/stringhashlist.xml +%%DATADIR%%/docs/xml/lcl/textstrings.xml +%%DATADIR%%/docs/xml/lcl/toolwin.xml +%%DATADIR%%/docs/xml/lcl/translations.xml +%%DATADIR%%/docs/xml/lcl/utrace.xml +%%DATADIR%%/docs/xml/lcl/xmlpropstorage.xml +%%DATADIR%%/docs/xml/multi_makeskel.pl +%%DATADIR%%/examples/Makefile +%%DATADIR%%/examples/Makefile.fpc +%%DATADIR%%/examples/address_book/addrbook.dpr +%%DATADIR%%/examples/address_book/addrbook.lpi +%%DATADIR%%/examples/address_book/addrbook.lpr +%%DATADIR%%/examples/address_book/addrbook.res +%%DATADIR%%/examples/address_book/frmmain.dfm +%%DATADIR%%/examples/address_book/frmmain.lfm +%%DATADIR%%/examples/address_book/frmmain.lrs +%%DATADIR%%/examples/address_book/frmmain.pas +%%DATADIR%%/examples/address_book/frmmain.rst +%%DATADIR%%/examples/address_book/mybook.dbf +%%DATADIR%%/examples/address_book/mybook.mdx +%%DATADIR%%/examples/address_book/mybook2.dbf +%%DATADIR%%/examples/address_book/mybook2.mdx +%%DATADIR%%/examples/anchordocking/dockform1unit.lfm +%%DATADIR%%/examples/anchordocking/dockform1unit.lrs +%%DATADIR%%/examples/anchordocking/dockform1unit.pas +%%DATADIR%%/examples/anchordocking/dockform2unit.lfm +%%DATADIR%%/examples/anchordocking/dockform2unit.lrs +%%DATADIR%%/examples/anchordocking/dockform2unit.pas +%%DATADIR%%/examples/anchordocking/docking1.lpi +%%DATADIR%%/examples/anchordocking/docking1.lpr +%%DATADIR%%/examples/autosize/childsizinglayout/childsizinglayout.lpi +%%DATADIR%%/examples/autosize/childsizinglayout/childsizinglayout.lpr +%%DATADIR%%/examples/autosize/childsizinglayout/mainunit.lfm +%%DATADIR%%/examples/autosize/childsizinglayout/mainunit.lrs +%%DATADIR%%/examples/autosize/childsizinglayout/mainunit.pas +%%DATADIR%%/examples/barchart/chartdemo.lpi +%%DATADIR%%/examples/barchart/chartdemo.lpr +%%DATADIR%%/examples/barchart/frmmain.lfm +%%DATADIR%%/examples/barchart/frmmain.lrs +%%DATADIR%%/examples/barchart/frmmain.pas +%%DATADIR%%/examples/bitbtnform.pp +%%DATADIR%%/examples/bitbutton.lpi +%%DATADIR%%/examples/bitbutton.pp +%%DATADIR%%/examples/codepageconverter/codepages.ini +%%DATADIR%%/examples/codepageconverter/filefind/filefind.lrs +%%DATADIR%%/examples/codepageconverter/filefind/filefind.pas +%%DATADIR%%/examples/codepageconverter/filefind/filefindlaz.lpk +%%DATADIR%%/examples/codepageconverter/filefind/filefindlaz.pas +%%DATADIR%%/examples/codepageconverter/filefind/tfilesearch.xpm +%%DATADIR%%/examples/codepageconverter/koi8r +%%DATADIR%%/examples/codepageconverter/languages/lazconverter.ru_RU.UTF-8.po +%%DATADIR%%/examples/codepageconverter/latin2 +%%DATADIR%%/examples/codepageconverter/lazconverter.lpi +%%DATADIR%%/examples/codepageconverter/lazconverter.lpr +%%DATADIR%%/examples/codepageconverter/lazconverter.po +%%DATADIR%%/examples/codepageconverter/mainunit.lfm +%%DATADIR%%/examples/codepageconverter/mainunit.lrs +%%DATADIR%%/examples/codepageconverter/mainunit.lrt +%%DATADIR%%/examples/codepageconverter/mainunit.pas +%%DATADIR%%/examples/codepageconverter/mainunit.po +%%DATADIR%%/examples/codepageconverter/mainunit.ru_RU.UTF-8.po +%%DATADIR%%/examples/codepageconverter/win1250 +%%DATADIR%%/examples/codetools/jumptoimplementation/codetoolsexample1.pas +%%DATADIR%%/examples/codetools/jumptoimplementation/jumptoimplementation.lpk +%%DATADIR%%/examples/codetools/jumptoimplementation/jumptoimplementation.pas +%%DATADIR%%/examples/combobox.lpi +%%DATADIR%%/examples/combobox.pp +%%DATADIR%%/examples/comdialogs.lpi +%%DATADIR%%/examples/comdialogs.pp +%%DATADIR%%/examples/componentstreaming/componentstreaming.lpi +%%DATADIR%%/examples/componentstreaming/componentstreaming.lpr +%%DATADIR%%/examples/componentstreaming/mainunit.lfm +%%DATADIR%%/examples/componentstreaming/mainunit.lrs +%%DATADIR%%/examples/componentstreaming/mainunit.pas +%%DATADIR%%/examples/checkbox.lpi +%%DATADIR%%/examples/checkbox.pp +%%DATADIR%%/examples/dlgform.pp +%%DATADIR%%/examples/easter/about.lfm +%%DATADIR%%/examples/easter/about.lrs +%%DATADIR%%/examples/easter/about.pas +%%DATADIR%%/examples/easter/holyday.lpi +%%DATADIR%%/examples/easter/holyday.lpr +%%DATADIR%%/examples/easter/main.lfm +%%DATADIR%%/examples/easter/main.lrs +%%DATADIR%%/examples/easter/main.pas +%%DATADIR%%/examples/edittest.lpi +%%DATADIR%%/examples/edittest.pp +%%DATADIR%%/examples/exploremenu/README.txt +%%DATADIR%%/examples/exploremenu/exploreidemenu.lpk +%%DATADIR%%/examples/exploremenu/exploreidemenu.pas +%%DATADIR%%/examples/exploremenu/frmexploremenu.lfm +%%DATADIR%%/examples/exploremenu/frmexploremenu.lrs +%%DATADIR%%/examples/exploremenu/frmexploremenu.pas +%%DATADIR%%/examples/fontenum/fontenumeration.lpi +%%DATADIR%%/examples/fontenum/fontenumeration.lpr +%%DATADIR%%/examples/fontenum/mainunit.lfm +%%DATADIR%%/examples/fontenum/mainunit.lrs +%%DATADIR%%/examples/fontenum/mainunit.pas +%%DATADIR%%/examples/grid_semaphor/TSemaphorDBGrid.xpm +%%DATADIR%%/examples/grid_semaphor/example/project1.lpi +%%DATADIR%%/examples/grid_semaphor/example/project1.lpr +%%DATADIR%%/examples/grid_semaphor/example/table01.stb +%%DATADIR%%/examples/grid_semaphor/example/table02.stb +%%DATADIR%%/examples/grid_semaphor/example/table03hidden.stb +%%DATADIR%%/examples/grid_semaphor/example/table04hidden.stb +%%DATADIR%%/examples/grid_semaphor/example/unit1.lfm +%%DATADIR%%/examples/grid_semaphor/example/unit1.lrs +%%DATADIR%%/examples/grid_semaphor/example/unit1.pas +%%DATADIR%%/examples/grid_semaphor/readme.txt +%%DATADIR%%/examples/grid_semaphor/semaphordbgridicon.lrs +%%DATADIR%%/examples/grid_semaphor/semaphordbgrids.pas +%%DATADIR%%/examples/grid_semaphor/semaphorgridlpk.lpk +%%DATADIR%%/examples/grid_semaphor/semaphorgridlpk.pas +%%DATADIR%%/examples/grid_semaphor/semaphorgrids.pas +%%DATADIR%%/examples/grid_semaphor/semaphorgridsicon.lrs +%%DATADIR%%/examples/grid_semaphor/tsemaphorgrid.xpm +%%DATADIR%%/examples/groupbox.lpi +%%DATADIR%%/examples/groupbox.pp +%%DATADIR%%/examples/groupboxnested.lpi +%%DATADIR%%/examples/groupboxnested.pas +%%DATADIR%%/examples/helphtml/html/edit1.html +%%DATADIR%%/examples/helphtml/html/edit2.html +%%DATADIR%%/examples/helphtml/html/index.html +%%DATADIR%%/examples/helphtml/htmlhelp1.lpi +%%DATADIR%%/examples/helphtml/htmlhelp1.lpr +%%DATADIR%%/examples/helphtml/unit1.lfm +%%DATADIR%%/examples/helphtml/unit1.lrs +%%DATADIR%%/examples/helphtml/unit1.pas +%%DATADIR%%/examples/hello.lpi +%%DATADIR%%/examples/hello.pp +%%DATADIR%%/examples/helloform.pp +%%DATADIR%%/examples/idequickfix/quickfixdemo1.pas +%%DATADIR%%/examples/idequickfix/quickfixexample.lpk +%%DATADIR%%/examples/idequickfix/quickfixexample.pas +%%DATADIR%%/examples/imgviewer/file.bmp +%%DATADIR%%/examples/imgviewer/file.xpm +%%DATADIR%%/examples/imgviewer/frmmain.lfm +%%DATADIR%%/examples/imgviewer/frmmain.lrs +%%DATADIR%%/examples/imgviewer/frmmain.pas +%%DATADIR%%/examples/imgviewer/frmmain.rst +%%DATADIR%%/examples/imgviewer/images.bmp +%%DATADIR%%/examples/imgviewer/imgview.dpr +%%DATADIR%%/examples/imgviewer/imgview.lpi +%%DATADIR%%/examples/imgviewer/imgview.lpr +%%DATADIR%%/examples/imgviewer/imgview.res +%%DATADIR%%/examples/lazintfimage/fadein1.lpi +%%DATADIR%%/examples/lazintfimage/fadein1.lpr +%%DATADIR%%/examples/lazintfimage/mainunit1.lfm +%%DATADIR%%/examples/lazintfimage/mainunit1.lrs +%%DATADIR%%/examples/lazintfimage/mainunit1.pas +%%DATADIR%%/examples/listboxtest.lpi +%%DATADIR%%/examples/listboxtest.pp +%%DATADIR%%/examples/listview/listview.lpi +%%DATADIR%%/examples/listview/listview.lpr +%%DATADIR%%/examples/listview/testform.lfm +%%DATADIR%%/examples/listview/testform.lrs +%%DATADIR%%/examples/listview/testform.pp +%%DATADIR%%/examples/listviewtest.lpi +%%DATADIR%%/examples/listviewtest.pp +%%DATADIR%%/examples/loadpicture.lpi +%%DATADIR%%/examples/loadpicture.pas +%%DATADIR%%/examples/memotest.lpi +%%DATADIR%%/examples/memotest.pp +%%DATADIR%%/examples/messagedialogs.lpi +%%DATADIR%%/examples/messagedialogs.pp +%%DATADIR%%/examples/multithreading/mainunit.lfm +%%DATADIR%%/examples/multithreading/mainunit.lrs +%%DATADIR%%/examples/multithreading/mainunit.pas +%%DATADIR%%/examples/multithreading/multithreadingexample1.lpi +%%DATADIR%%/examples/multithreading/multithreadingexample1.lpr +%%DATADIR%%/examples/notebk.lpi +%%DATADIR%%/examples/notebk.pp +%%DATADIR%%/examples/notebku.pp +%%DATADIR%%/examples/notebooktest.lpi +%%DATADIR%%/examples/notebooktest.pp +%%DATADIR%%/examples/objectinspector/mainunit.lfm +%%DATADIR%%/examples/objectinspector/mainunit.lrs +%%DATADIR%%/examples/objectinspector/mainunit.pas +%%DATADIR%%/examples/objectinspector/oiexample.lpi +%%DATADIR%%/examples/objectinspector/oiexample.lpr +%%DATADIR%%/examples/openbrowser/OpenURLInFirefox.sh +%%DATADIR%%/examples/openbrowser/OpenURLInGaleon.sh +%%DATADIR%%/examples/openbrowser/OpenURLInKonqueror.sh +%%DATADIR%%/examples/openbrowser/OpenURLInMozilla.sh +%%DATADIR%%/examples/openbrowser/OpenURLInNetscape.sh +%%DATADIR%%/examples/openbrowser/OpenURLInOpera.sh +%%DATADIR%%/examples/openbrowser/mainunit.lfm +%%DATADIR%%/examples/openbrowser/mainunit.lrs +%%DATADIR%%/examples/openbrowser/mainunit.pas +%%DATADIR%%/examples/openbrowser/testbrowserrmc.lpi +%%DATADIR%%/examples/openbrowser/testbrowserrmc.lpr +%%DATADIR%%/examples/openglcontrol/data/particle.bmp +%%DATADIR%%/examples/openglcontrol/data/texture1.bmp +%%DATADIR%%/examples/openglcontrol/data/texture2.bmp +%%DATADIR%%/examples/openglcontrol/data/texture3.bmp +%%DATADIR%%/examples/openglcontrol/exampleform.pp +%%DATADIR%%/examples/openglcontrol/openglcontrol_demo.lpi +%%DATADIR%%/examples/openglcontrol/openglcontrol_demo.pas +%%DATADIR%%/examples/postscript/samplepostscriptcanvas.lpi +%%DATADIR%%/examples/postscript/samplepostscriptcanvas.lpr +%%DATADIR%%/examples/postscript/usamplepostscriptcanvas.lfm +%%DATADIR%%/examples/postscript/usamplepostscriptcanvas.lrs +%%DATADIR%%/examples/postscript/usamplepostscriptcanvas.pas +%%DATADIR%%/examples/progressbar.lpi +%%DATADIR%%/examples/progressbar.pp +%%DATADIR%%/examples/scrollbar.lpi +%%DATADIR%%/examples/scrollbar.pp +%%DATADIR%%/examples/selection.pp +%%DATADIR%%/examples/selectionform.pp +%%DATADIR%%/examples/speedtest.lpi +%%DATADIR%%/examples/speedtest.pp +%%DATADIR%%/examples/sprites/playground.lfm +%%DATADIR%%/examples/sprites/playground.lrs +%%DATADIR%%/examples/sprites/playground.pas +%%DATADIR%%/examples/sprites/spriteexample.lpi +%%DATADIR%%/examples/sprites/spriteexample.lpr +%%DATADIR%%/examples/synchronize.pp +%%DATADIR%%/examples/synedit1.lpi +%%DATADIR%%/examples/synedit1.pas +%%DATADIR%%/examples/taborder.lpi +%%DATADIR%%/examples/taborder.pas +%%DATADIR%%/examples/testall.lpi +%%DATADIR%%/examples/testall.pp +%%DATADIR%%/examples/testallform.pp +%%DATADIR%%/examples/testtools.inc +%%DATADIR%%/examples/toolbar.lpi +%%DATADIR%%/examples/toolbar.pp +%%DATADIR%%/examples/trackbar.lpi +%%DATADIR%%/examples/trackbar.pp +%%DATADIR%%/examples/treeview/README +%%DATADIR%%/examples/treeview/TV_Add_Remove.dpr +%%DATADIR%%/examples/treeview/TV_Add_Remove.res +%%DATADIR%%/examples/treeview/TV_Add_Remove_U1.dfm +%%DATADIR%%/examples/treeview/tv_add_remove.lpi +%%DATADIR%%/examples/treeview/tv_add_remove_u1.lfm +%%DATADIR%%/examples/treeview/tv_add_remove_u1.lrs +%%DATADIR%%/examples/treeview/tv_add_remove_u1.pas +%%DATADIR%%/examples/turbopower_ipro/defaultimage.lrs +%%DATADIR%%/examples/turbopower_ipro/defaultimage.xpm +%%DATADIR%%/examples/turbopower_ipro/index.html +%%DATADIR%%/examples/turbopower_ipro/mainunit.lfm +%%DATADIR%%/examples/turbopower_ipro/mainunit.lrs +%%DATADIR%%/examples/turbopower_ipro/mainunit.pas +%%DATADIR%%/examples/turbopower_ipro/readme +%%DATADIR%%/examples/turbopower_ipro/simplepage2.html +%%DATADIR%%/examples/turbopower_ipro/tpiproexample.lpi +%%DATADIR%%/examples/turbopower_ipro/tpiproexample.lpr +%%DATADIR%%/examples/xmlstreaming/mainunit.lfm +%%DATADIR%%/examples/xmlstreaming/mainunit.lrs +%%DATADIR%%/examples/xmlstreaming/mainunit.pas +%%DATADIR%%/examples/xmlstreaming/streamasxmldemo.lpi +%%DATADIR%%/examples/xmlstreaming/streamasxmldemo.lpr +%%DATADIR%%/ide/Makefile +%%DATADIR%%/ide/Makefile.fpc +%%DATADIR%%/ide/aboutfrm.lfm +%%DATADIR%%/ide/aboutfrm.lrs +%%DATADIR%%/ide/aboutfrm.pas +%%DATADIR%%/ide/addtoprojectdlg.lfm +%%DATADIR%%/ide/addtoprojectdlg.lrs +%%DATADIR%%/ide/addtoprojectdlg.pas +%%DATADIR%%/ide/basedebugmanager.pas +%%DATADIR%%/ide/bigidemake.cfg +%%DATADIR%%/ide/buildfiledlg.lfm +%%DATADIR%%/ide/buildfiledlg.lrs +%%DATADIR%%/ide/buildfiledlg.pas +%%DATADIR%%/ide/buildlazdialog.lfm +%%DATADIR%%/ide/buildlazdialog.lrs +%%DATADIR%%/ide/buildlazdialog.pas +%%DATADIR%%/ide/cleandirdlg.lfm +%%DATADIR%%/ide/cleandirdlg.lrs +%%DATADIR%%/ide/cleandirdlg.pas +%%DATADIR%%/ide/clipboardhistory.pas +%%DATADIR%%/ide/codecontextform.pas +%%DATADIR%%/ide/codeexplopts.lfm +%%DATADIR%%/ide/codeexplopts.lrs +%%DATADIR%%/ide/codeexplopts.pas +%%DATADIR%%/ide/codeexplorer.lfm +%%DATADIR%%/ide/codeexplorer.lrs +%%DATADIR%%/ide/codeexplorer.pas +%%DATADIR%%/ide/codemacroprompt.lfm +%%DATADIR%%/ide/codemacroprompt.lrs +%%DATADIR%%/ide/codemacroprompt.pas +%%DATADIR%%/ide/codemacroselect.lfm +%%DATADIR%%/ide/codemacroselect.lrs +%%DATADIR%%/ide/codemacroselect.pas +%%DATADIR%%/ide/codetemplatesdlg.lfm +%%DATADIR%%/ide/codetemplatesdlg.lrs +%%DATADIR%%/ide/codetemplatesdlg.pas +%%DATADIR%%/ide/codetoolsdefines.lfm +%%DATADIR%%/ide/codetoolsdefines.lrs +%%DATADIR%%/ide/codetoolsdefines.pas +%%DATADIR%%/ide/codetoolsdefpreview.lfm +%%DATADIR%%/ide/codetoolsdefpreview.lrs +%%DATADIR%%/ide/codetoolsdefpreview.pas +%%DATADIR%%/ide/codetoolsoptions.pas +%%DATADIR%%/ide/compiler.pp +%%DATADIR%%/ide/compileroptions.pp +%%DATADIR%%/ide/compileroptionsdlg.pp +%%DATADIR%%/ide/componentpalette.pas +%%DATADIR%%/ide/condef.lfm +%%DATADIR%%/ide/condef.lrs +%%DATADIR%%/ide/condef.pas +%%DATADIR%%/ide/customformeditor.pp +%%DATADIR%%/ide/charactermapdlg.lfm +%%DATADIR%%/ide/charactermapdlg.lrs +%%DATADIR%%/ide/charactermapdlg.pas +%%DATADIR%%/ide/checkcompileropts.lfm +%%DATADIR%%/ide/checkcompileropts.lrs +%%DATADIR%%/ide/checkcompileropts.pas +%%DATADIR%%/ide/checklfmdlg.lfm +%%DATADIR%%/ide/checklfmdlg.lrs +%%DATADIR%%/ide/checklfmdlg.pas +%%DATADIR%%/ide/debugmanager.pas +%%DATADIR%%/ide/debugoptionsfrm.lfm +%%DATADIR%%/ide/debugoptionsfrm.lrs +%%DATADIR%%/ide/debugoptionsfrm.pas +%%DATADIR%%/ide/dialogprocs.pas +%%DATADIR%%/ide/diffdialog.lfm +%%DATADIR%%/ide/diffdialog.lrs +%%DATADIR%%/ide/diffdialog.pas +%%DATADIR%%/ide/diffpatch.pas +%%DATADIR%%/ide/diskdiffsdialog.lfm +%%DATADIR%%/ide/diskdiffsdialog.lrs +%%DATADIR%%/ide/diskdiffsdialog.pas +%%DATADIR%%/ide/editdefinetree.pas +%%DATADIR%%/ide/editoroptions.lfm +%%DATADIR%%/ide/editoroptions.lrs +%%DATADIR%%/ide/editoroptions.pp +%%DATADIR%%/ide/encloseselectiondlg.lfm +%%DATADIR%%/ide/encloseselectiondlg.lrs +%%DATADIR%%/ide/encloseselectiondlg.pas +%%DATADIR%%/ide/environmentopts.lfm +%%DATADIR%%/ide/environmentopts.lrs +%%DATADIR%%/ide/environmentopts.pp +%%DATADIR%%/ide/extractprocdlg.lfm +%%DATADIR%%/ide/extractprocdlg.lrs +%%DATADIR%%/ide/extractprocdlg.pas +%%DATADIR%%/ide/exttooldialog.lfm +%%DATADIR%%/ide/exttooldialog.lrs +%%DATADIR%%/ide/exttooldialog.pas +%%DATADIR%%/ide/exttooleditdlg.pas +%%DATADIR%%/ide/filereferencelist.pas +%%DATADIR%%/ide/findinfilesdlg.lfm +%%DATADIR%%/ide/findinfilesdlg.lrs +%%DATADIR%%/ide/findinfilesdlg.pas +%%DATADIR%%/ide/findrenameidentifier.lfm +%%DATADIR%%/ide/findrenameidentifier.lrs +%%DATADIR%%/ide/findrenameidentifier.pas +%%DATADIR%%/ide/findreplacedialog.pp +%%DATADIR%%/ide/formeditor.pp +%%DATADIR%%/ide/frmsearch.lfm +%%DATADIR%%/ide/frmsearch.lrs +%%DATADIR%%/ide/frmsearch.pas +%%DATADIR%%/ide/helpfpcmessages.pas +%%DATADIR%%/ide/helpmanager.lfm +%%DATADIR%%/ide/helpmanager.lrs +%%DATADIR%%/ide/helpmanager.pas +%%DATADIR%%/ide/helpoptions.lfm +%%DATADIR%%/ide/helpoptions.lrs +%%DATADIR%%/ide/helpoptions.pas +%%DATADIR%%/ide/idecontexthelpedit.lfm +%%DATADIR%%/ide/idecontexthelpedit.lrs +%%DATADIR%%/ide/idecontexthelpedit.pas +%%DATADIR%%/ide/idedefs.pas +%%DATADIR%%/ide/ideoptiondefs.pas +%%DATADIR%%/ide/ideprocs.pp +%%DATADIR%%/ide/ideprotocol.pas +%%DATADIR%%/ide/idetranslations.pas +%%DATADIR%%/ide/idewindowhelp.pas +%%DATADIR%%/ide/imexportcompileropts.lfm +%%DATADIR%%/ide/imexportcompileropts.lrs +%%DATADIR%%/ide/imexportcompileropts.pas +%%DATADIR%%/ide/include/darwin/lazconf.inc +%%DATADIR%%/ide/include/freebsd/lazconf.inc +%%DATADIR%%/ide/include/ide.inc +%%DATADIR%%/ide/include/linux/lazconf.inc +%%DATADIR%%/ide/include/netbsd/lazconf.inc +%%DATADIR%%/ide/include/solaris/lazconf.inc +%%DATADIR%%/ide/include/unix/lazbaseconf.inc +%%DATADIR%%/ide/include/win32/lazconf.inc +%%DATADIR%%/ide/initialsetupdlgs.pas +%%DATADIR%%/ide/inputfiledialog.pas +%%DATADIR%%/ide/inputhistory.pas +%%DATADIR%%/ide/invertassigntool.pas +%%DATADIR%%/ide/keymapping.pp +%%DATADIR%%/ide/keymapschemedlg.lfm +%%DATADIR%%/ide/keymapschemedlg.lrs +%%DATADIR%%/ide/keymapschemedlg.pas +%%DATADIR%%/ide/lazarus.lpi +%%DATADIR%%/ide/lazarus.manifest +%%DATADIR%%/ide/lazarus.pp +%%DATADIR%%/ide/lazarus.rc +%%DATADIR%%/ide/lazarus_about_logo.lrs +%%DATADIR%%/ide/lazarus_dci.lrs +%%DATADIR%%/ide/lazarus_dci_file.dci +%%DATADIR%%/ide/lazarusidestrconsts.pas +%%DATADIR%%/ide/lazarusmanager.pas +%%DATADIR%%/ide/lazconf.pp +%%DATADIR%%/ide/lazdocfrm.lfm +%%DATADIR%%/ide/lazdocfrm.lrs +%%DATADIR%%/ide/lazdocfrm.pas +%%DATADIR%%/ide/lrtpotools.pas +%%DATADIR%%/ide/macropromptdlg.pas +%%DATADIR%%/ide/main.pp +%%DATADIR%%/ide/mainbar.pas +%%DATADIR%%/ide/mainbase.pas +%%DATADIR%%/ide/mainintf.pas +%%DATADIR%%/ide/makeresstrdlg.lfm +%%DATADIR%%/ide/makeresstrdlg.lrs +%%DATADIR%%/ide/makeresstrdlg.pas +%%DATADIR%%/ide/miscoptions.pas +%%DATADIR%%/ide/msgquickfixes.pas +%%DATADIR%%/ide/msgview.lfm +%%DATADIR%%/ide/msgview.lrs +%%DATADIR%%/ide/msgview.pp +%%DATADIR%%/ide/msgvieweditor.lfm +%%DATADIR%%/ide/msgvieweditor.lrs +%%DATADIR%%/ide/msgvieweditor.pas +%%DATADIR%%/ide/multireplacedlg.lfm +%%DATADIR%%/ide/multireplacedlg.lrs +%%DATADIR%%/ide/multireplacedlg.pas +%%DATADIR%%/ide/newdialog.lfm +%%DATADIR%%/ide/newdialog.lrs +%%DATADIR%%/ide/newdialog.pas +%%DATADIR%%/ide/newprojectdlg.pp +%%DATADIR%%/ide/objectlists.pas +%%DATADIR%%/ide/outputfilter.pas +%%DATADIR%%/ide/patheditordlg.pas +%%DATADIR%%/ide/progressdlg.lfm +%%DATADIR%%/ide/progressdlg.lrs +%%DATADIR%%/ide/progressdlg.pas +%%DATADIR%%/ide/project.pp +%%DATADIR%%/ide/projectdefs.pas +%%DATADIR%%/ide/projectinspector.lfm +%%DATADIR%%/ide/projectinspector.lrs +%%DATADIR%%/ide/projectinspector.pas +%%DATADIR%%/ide/projectopts.lfm +%%DATADIR%%/ide/projectopts.lrs +%%DATADIR%%/ide/projectopts.pp +%%DATADIR%%/ide/publishmodule.pas +%%DATADIR%%/ide/publishprojectdlg.lfm +%%DATADIR%%/ide/publishprojectdlg.lrs +%%DATADIR%%/ide/publishprojectdlg.pas +%%DATADIR%%/ide/revision.inc +%%DATADIR%%/ide/runparamsopts.lfm +%%DATADIR%%/ide/runparamsopts.lrs +%%DATADIR%%/ide/runparamsopts.pas +%%DATADIR%%/ide/searchresultview.lfm +%%DATADIR%%/ide/searchresultview.lrs +%%DATADIR%%/ide/searchresultview.pp +%%DATADIR%%/ide/showcompileropts.lfm +%%DATADIR%%/ide/showcompileropts.lrs +%%DATADIR%%/ide/showcompileropts.pas +%%DATADIR%%/ide/sortselectiondlg.pas +%%DATADIR%%/ide/sourceeditprocs.pas +%%DATADIR%%/ide/sourcemarks.pas +%%DATADIR%%/ide/splash.lfm +%%DATADIR%%/ide/splash.lrs +%%DATADIR%%/ide/splash.pp +%%DATADIR%%/ide/startlazarus.lpr +%%DATADIR%%/ide/startlazarus.rc +%%DATADIR%%/ide/startlazopts.pas +%%DATADIR%%/ide/sysvaruseroverridedlg.lfm +%%DATADIR%%/ide/sysvaruseroverridedlg.lrs +%%DATADIR%%/ide/sysvaruseroverridedlg.pas +%%DATADIR%%/ide/todolist.lfm +%%DATADIR%%/ide/todolist.lrs +%%DATADIR%%/ide/todolist.pp +%%DATADIR%%/ide/transfermacros.pp +%%DATADIR%%/ide/unitdependencies.lfm +%%DATADIR%%/ide/unitdependencies.lrs +%%DATADIR%%/ide/unitdependencies.pas +%%DATADIR%%/ide/uniteditor.lfm +%%DATADIR%%/ide/uniteditor.lrs +%%DATADIR%%/ide/uniteditor.pp +%%DATADIR%%/ide/unitinfodlg.lfm +%%DATADIR%%/ide/unitinfodlg.lrs +%%DATADIR%%/ide/unitinfodlg.pp +%%DATADIR%%/ide/viewunit_dlg.lfm +%%DATADIR%%/ide/viewunit_dlg.lrs +%%DATADIR%%/ide/viewunit_dlg.pp +%%DATADIR%%/ide/wordcompletion.pp +%%DATADIR%%/ideintf/Makefile +%%DATADIR%%/ideintf/Makefile.fpc +%%DATADIR%%/ideintf/README +%%DATADIR%%/ideintf/actionseditor.lfm +%%DATADIR%%/ideintf/actionseditor.lrs +%%DATADIR%%/ideintf/actionseditor.pas +%%DATADIR%%/ideintf/actionseditorstd.lfm +%%DATADIR%%/ideintf/actionseditorstd.lrs +%%DATADIR%%/ideintf/actionseditorstd.pas +%%DATADIR%%/ideintf/allideintf.pas +%%DATADIR%%/ideintf/baseideintf.pas +%%DATADIR%%/ideintf/columndlg.pp +%%DATADIR%%/ideintf/collectionpropeditform.lfm +%%DATADIR%%/ideintf/collectionpropeditform.lrs +%%DATADIR%%/ideintf/componenteditors.pas +%%DATADIR%%/ideintf/componentreg.pas +%%DATADIR%%/ideintf/componenttreeview.lrs +%%DATADIR%%/ideintf/componenttreeview.pas +%%DATADIR%%/ideintf/checkgroupeditordlg.lfm +%%DATADIR%%/ideintf/checkgroupeditordlg.lrs +%%DATADIR%%/ideintf/checklistboxeditordlg.lfm +%%DATADIR%%/ideintf/checklistboxeditordlg.lrs +%%DATADIR%%/ideintf/dbpropedits.pas +%%DATADIR%%/ideintf/fieldseditor.lfm +%%DATADIR%%/ideintf/fieldseditor.lrs +%%DATADIR%%/ideintf/fieldseditor.pas +%%DATADIR%%/ideintf/fieldslist.lfm +%%DATADIR%%/ideintf/fieldslist.lrs +%%DATADIR%%/ideintf/fieldslist.pas +%%DATADIR%%/ideintf/formeditingintf.pas +%%DATADIR%%/ideintf/frmselectprops.lfm +%%DATADIR%%/ideintf/frmselectprops.lrs +%%DATADIR%%/ideintf/frmselectprops.pas +%%DATADIR%%/ideintf/graphicpropedit.lfm +%%DATADIR%%/ideintf/graphicpropedit.lrs +%%DATADIR%%/ideintf/graphicpropedit.pas +%%DATADIR%%/ideintf/graphpropedits.pas +%%DATADIR%%/ideintf/helpfpdoc.pas +%%DATADIR%%/ideintf/idecommands.pas +%%DATADIR%%/ideintf/idedialogs.pas +%%DATADIR%%/ideintf/idehelpintf.pas +%%DATADIR%%/ideintf/idemsgintf.pas +%%DATADIR%%/ideintf/idewindowintf.pas +%%DATADIR%%/ideintf/imagelisteditor.lfm +%%DATADIR%%/ideintf/imagelisteditor.lrs +%%DATADIR%%/ideintf/imagelisteditor.pp +%%DATADIR%%/ideintf/lazideintf.pas +%%DATADIR%%/ideintf/listviewpropedit.lfm +%%DATADIR%%/ideintf/listviewpropedit.lrs +%%DATADIR%%/ideintf/listviewpropedit.pp +%%DATADIR%%/ideintf/macrointf.pas +%%DATADIR%%/ideintf/maskpropedit.lfm +%%DATADIR%%/ideintf/maskpropedit.lrs +%%DATADIR%%/ideintf/maskpropedit.pas +%%DATADIR%%/ideintf/menuintf.pas +%%DATADIR%%/ideintf/newfield.lfm +%%DATADIR%%/ideintf/newfield.lrs +%%DATADIR%%/ideintf/newfield.pas +%%DATADIR%%/ideintf/newitemintf.pas +%%DATADIR%%/ideintf/objectinspector.pp +%%DATADIR%%/ideintf/objinspstrconsts.pas +%%DATADIR%%/ideintf/oi_box.bmp +%%DATADIR%%/ideintf/oi_comp.bmp +%%DATADIR%%/ideintf/oi_control.bmp +%%DATADIR%%/ideintf/oi_form.bmp +%%DATADIR%%/ideintf/packageintf.pas +%%DATADIR%%/ideintf/projectintf.pas +%%DATADIR%%/ideintf/propedits.pp +%%DATADIR%%/ideintf/srceditorintf.pas +%%DATADIR%%/ideintf/stringgriddlg.lfm +%%DATADIR%%/ideintf/stringgriddlg.lrs +%%DATADIR%%/ideintf/stringspropeditdlg.lfm +%%DATADIR%%/ideintf/stringspropeditdlg.lrs +%%DATADIR%%/ideintf/stringspropeditdlg.pas +%%DATADIR%%/ideintf/texttools.pas +%%DATADIR%%/ideintf/treeviewpropedit.lfm +%%DATADIR%%/ideintf/treeviewpropedit.lrs +%%DATADIR%%/ideintf/treeviewpropedit.pas +%%DATADIR%%/ideintf/units/i386-freebsd/actionseditor.o +%%DATADIR%%/ideintf/units/i386-freebsd/actionseditor.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/actionseditorstd.o +%%DATADIR%%/ideintf/units/i386-freebsd/actionseditorstd.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/allideintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/allideintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/baseideintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/baseideintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/columndlg.o +%%DATADIR%%/ideintf/units/i386-freebsd/columndlg.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/componenteditors.o +%%DATADIR%%/ideintf/units/i386-freebsd/componenteditors.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/componentreg.o +%%DATADIR%%/ideintf/units/i386-freebsd/componentreg.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/componenttreeview.o +%%DATADIR%%/ideintf/units/i386-freebsd/componenttreeview.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/dbpropedits.o +%%DATADIR%%/ideintf/units/i386-freebsd/dbpropedits.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/fieldseditor.o +%%DATADIR%%/ideintf/units/i386-freebsd/fieldseditor.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/formeditingintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/formeditingintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/frmselectprops.o +%%DATADIR%%/ideintf/units/i386-freebsd/frmselectprops.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/graphicpropedit.o +%%DATADIR%%/ideintf/units/i386-freebsd/graphicpropedit.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/graphpropedits.o +%%DATADIR%%/ideintf/units/i386-freebsd/graphpropedits.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/helpfpdoc.o +%%DATADIR%%/ideintf/units/i386-freebsd/helpfpdoc.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/idecommands.o +%%DATADIR%%/ideintf/units/i386-freebsd/idecommands.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/idedialogs.o +%%DATADIR%%/ideintf/units/i386-freebsd/idedialogs.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/idehelpintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/idehelpintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/idemsgintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/idemsgintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/idewindowintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/idewindowintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/imagelisteditor.o +%%DATADIR%%/ideintf/units/i386-freebsd/imagelisteditor.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/lazideintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/lazideintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/listviewpropedit.o +%%DATADIR%%/ideintf/units/i386-freebsd/listviewpropedit.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/macrointf.o +%%DATADIR%%/ideintf/units/i386-freebsd/macrointf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/maskpropedit.o +%%DATADIR%%/ideintf/units/i386-freebsd/maskpropedit.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/menuintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/menuintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/newitemintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/newitemintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/objectinspector.o +%%DATADIR%%/ideintf/units/i386-freebsd/objectinspector.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/objinspstrconsts.o +%%DATADIR%%/ideintf/units/i386-freebsd/objinspstrconsts.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/objinspstrconsts.rst +%%DATADIR%%/ideintf/units/i386-freebsd/packageintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/packageintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/projectintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/projectintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/propedits.o +%%DATADIR%%/ideintf/units/i386-freebsd/propedits.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/srceditorintf.o +%%DATADIR%%/ideintf/units/i386-freebsd/srceditorintf.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/stringspropeditdlg.o +%%DATADIR%%/ideintf/units/i386-freebsd/stringspropeditdlg.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/texttools.o +%%DATADIR%%/ideintf/units/i386-freebsd/texttools.ppu +%%DATADIR%%/ideintf/units/i386-freebsd/treeviewpropedit.o +%%DATADIR%%/ideintf/units/i386-freebsd/treeviewpropedit.ppu +%%DATADIR%%/images/22x22/address-book-new.png +%%DATADIR%%/images/22x22/appointment-new.png +%%DATADIR%%/images/22x22/bookmark-new.png +%%DATADIR%%/images/22x22/contact-new.png +%%DATADIR%%/images/22x22/document-new.png +%%DATADIR%%/images/22x22/document-open.png +%%DATADIR%%/images/22x22/document-open.xpm +%%DATADIR%%/images/22x22/document-print-preview.png +%%DATADIR%%/images/22x22/document-print.png +%%DATADIR%%/images/22x22/document-properties.png +%%DATADIR%%/images/22x22/document-save-as.png +%%DATADIR%%/images/22x22/document-save.png +%%DATADIR%%/images/22x22/edit-clear.png +%%DATADIR%%/images/22x22/edit-copy.png +%%DATADIR%%/images/22x22/edit-cut.png +%%DATADIR%%/images/22x22/edit-delete.png +%%DATADIR%%/images/22x22/edit-find-replace.png +%%DATADIR%%/images/22x22/edit-find.png +%%DATADIR%%/images/22x22/edit-paste.png +%%DATADIR%%/images/22x22/edit-redo.png +%%DATADIR%%/images/22x22/edit-select-all.png +%%DATADIR%%/images/22x22/edit-undo.png +%%DATADIR%%/images/22x22/folder-new.png +%%DATADIR%%/images/22x22/format-indent-less.png +%%DATADIR%%/images/22x22/format-indent-more.png +%%DATADIR%%/images/22x22/format-justify-center.png +%%DATADIR%%/images/22x22/format-justify-fill.png +%%DATADIR%%/images/22x22/format-justify-left.png +%%DATADIR%%/images/22x22/format-justify-right.png +%%DATADIR%%/images/22x22/format-text-bold.png +%%DATADIR%%/images/22x22/format-text-italic.png +%%DATADIR%%/images/22x22/format-text-strikethrough.png +%%DATADIR%%/images/22x22/format-text-underline.png +%%DATADIR%%/images/22x22/go-bottom.png +%%DATADIR%%/images/22x22/go-down.png +%%DATADIR%%/images/22x22/go-first.png +%%DATADIR%%/images/22x22/go-home.png +%%DATADIR%%/images/22x22/go-home.xpm +%%DATADIR%%/images/22x22/go-jump.png +%%DATADIR%%/images/22x22/go-last.png +%%DATADIR%%/images/22x22/go-next.png +%%DATADIR%%/images/22x22/go-previous.png +%%DATADIR%%/images/22x22/go-top.png +%%DATADIR%%/images/22x22/go-up.png +%%DATADIR%%/images/22x22/list-add.png +%%DATADIR%%/images/22x22/list-remove.png +%%DATADIR%%/images/22x22/mail-forward.png +%%DATADIR%%/images/22x22/mail-mark-junk.png +%%DATADIR%%/images/22x22/mail-message-new.png +%%DATADIR%%/images/22x22/mail-reply-all.png +%%DATADIR%%/images/22x22/mail-reply-sender.png +%%DATADIR%%/images/22x22/mail-send-receive.png +%%DATADIR%%/images/22x22/media-eject.png +%%DATADIR%%/images/22x22/media-playback-pause.png +%%DATADIR%%/images/22x22/media-playback-start.png +%%DATADIR%%/images/22x22/media-playback-stop.png +%%DATADIR%%/images/22x22/media-record.png +%%DATADIR%%/images/22x22/media-seek-backward.png +%%DATADIR%%/images/22x22/media-seek-forward.png +%%DATADIR%%/images/22x22/media-skip-backward.png +%%DATADIR%%/images/22x22/media-skip-forward.png +%%DATADIR%%/images/22x22/process-stop.png +%%DATADIR%%/images/22x22/system-lock-screen.png +%%DATADIR%%/images/22x22/system-log-out.png +%%DATADIR%%/images/22x22/system-search.png +%%DATADIR%%/images/22x22/system-shutdown.png +%%DATADIR%%/images/22x22/tab-new.png +%%DATADIR%%/images/22x22/view-refresh.png +%%DATADIR%%/images/22x22/view-refresh.xpm +%%DATADIR%%/images/22x22/window-new.png +%%DATADIR%%/images/LazarusForm.bmp +%%DATADIR%%/images/LazarusForm.ico +%%DATADIR%%/images/LazarusProject.ico +%%DATADIR%%/images/LazarusSource.bmp +%%DATADIR%%/images/LazarusSource.ico +%%DATADIR%%/images/README +%%DATADIR%%/images/bookmark.lrs +%%DATADIR%%/images/btn_downarrow.ico +%%DATADIR%%/images/btn_downarrow.xpm +%%DATADIR%%/images/btn_newform.ico +%%DATADIR%%/images/btn_newform.xpm +%%DATADIR%%/images/btn_newunit.ico +%%DATADIR%%/images/btn_newunit.xpm +%%DATADIR%%/images/btn_openfile.ico +%%DATADIR%%/images/btn_openfile.xpm +%%DATADIR%%/images/btn_pause.ico +%%DATADIR%%/images/btn_pause.xpm +%%DATADIR%%/images/btn_run.ico +%%DATADIR%%/images/btn_run.xpm +%%DATADIR%%/images/btn_save.ico +%%DATADIR%%/images/btn_save.xpm +%%DATADIR%%/images/btn_saveall.bmp +%%DATADIR%%/images/btn_saveall.ico +%%DATADIR%%/images/btn_saveall.xpm +%%DATADIR%%/images/btn_stepinto.ico +%%DATADIR%%/images/btn_stepinto.xpm +%%DATADIR%%/images/btn_stepover.ico +%%DATADIR%%/images/btn_stepover.xpm +%%DATADIR%%/images/btn_toggleform.ico +%%DATADIR%%/images/btn_toggleform.xpm +%%DATADIR%%/images/btn_viewforms.ico +%%DATADIR%%/images/btn_viewforms.xpm +%%DATADIR%%/images/btn_viewunits.ico +%%DATADIR%%/images/btn_viewunits.xpm +%%DATADIR%%/images/codeexplorer/ce_class.xpm +%%DATADIR%%/images/codeexplorer/ce_const.xpm +%%DATADIR%%/images/codeexplorer/ce_default.xpm +%%DATADIR%%/images/codeexplorer/ce_finalization.xpm +%%DATADIR%%/images/codeexplorer/ce_implementation.xpm +%%DATADIR%%/images/codeexplorer/ce_initialization.xpm +%%DATADIR%%/images/codeexplorer/ce_interface.xpm +%%DATADIR%%/images/codeexplorer/ce_procedure.xpm +%%DATADIR%%/images/codeexplorer/ce_program.xpm +%%DATADIR%%/images/codeexplorer/ce_property.xpm +%%DATADIR%%/images/codeexplorer/ce_type.xpm +%%DATADIR%%/images/codeexplorer/ce_unit.xpm +%%DATADIR%%/images/codeexplorer/ce_variable.xpm +%%DATADIR%%/images/codetoolsdefines/block_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ctdefinestate_auto_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ctdefinestate_autoproj_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ctdefinestate_none_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ctdefinestate_projspec_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/define_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/definerecurse_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/directory_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/else_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/elseif_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/if_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ifdef_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/ifndef_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/undefine_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/undefineall_22x22.xpm +%%DATADIR%%/images/codetoolsdefines/undefinerecurse_22x22.xpm +%%DATADIR%%/images/color.ico +%%DATADIR%%/images/color.xpm +%%DATADIR%%/images/components/default.ico +%%DATADIR%%/images/components/default.xpm +%%DATADIR%%/images/components/tactionlist.xpm +%%DATADIR%%/images/components/tapplicationproperties.xpm +%%DATADIR%%/images/components/tarrow.ico +%%DATADIR%%/images/components/tarrow.xpm +%%DATADIR%%/images/components/tbarchart.xpm +%%DATADIR%%/images/components/tbevel.ico +%%DATADIR%%/images/components/tbevel.xpm +%%DATADIR%%/images/components/tbitbtn.ico +%%DATADIR%%/images/components/tbitbtn.xpm +%%DATADIR%%/images/components/tbutton.ico +%%DATADIR%%/images/components/tbutton.xpm +%%DATADIR%%/images/components/tbuttonpanel.xpm +%%DATADIR%%/images/components/tcalcedit.xpm +%%DATADIR%%/images/components/tcalculatordialog.xpm +%%DATADIR%%/images/components/tcalendar.ico +%%DATADIR%%/images/components/tcalendar.xpm +%%DATADIR%%/images/components/tcalendardialog.xpm +%%DATADIR%%/images/components/tcolorbox.xpm +%%DATADIR%%/images/components/tcolorbutton.xpm +%%DATADIR%%/images/components/tcolorcombobox.xpm +%%DATADIR%%/images/components/tcolordialog.ico +%%DATADIR%%/images/components/tcolordialog.xpm +%%DATADIR%%/images/components/tcombobox.ico +%%DATADIR%%/images/components/tcombobox.xpm +%%DATADIR%%/images/components/tcomboedit.xpm +%%DATADIR%%/images/components/tcheckbox.ico +%%DATADIR%%/images/components/tcheckbox.xpm +%%DATADIR%%/images/components/tcheckgroup.xpm +%%DATADIR%%/images/components/tchecklistbox.ico +%%DATADIR%%/images/components/tchecklistbox.xpm +%%DATADIR%%/images/components/tdatabase.ico +%%DATADIR%%/images/components/tdatabase.xpm +%%DATADIR%%/images/components/tdatasource.ico +%%DATADIR%%/images/components/tdatasource.xpm +%%DATADIR%%/images/components/tdateedit.xpm +%%DATADIR%%/images/components/tdbcalendar.xpm +%%DATADIR%%/images/components/tdbcombobox.xpm +%%DATADIR%%/images/components/tdbcontrol.xpm +%%DATADIR%%/images/components/tdbcheckbox.xpm +%%DATADIR%%/images/components/tdbedit.xpm +%%DATADIR%%/images/components/tdbgrid.xpm +%%DATADIR%%/images/components/tdbgroupbox.xpm +%%DATADIR%%/images/components/tdbimage.xpm +%%DATADIR%%/images/components/tdblistbox.xpm +%%DATADIR%%/images/components/tdbmemo.xpm +%%DATADIR%%/images/components/tdbnavigator.xpm +%%DATADIR%%/images/components/tdbradiogroup.xpm +%%DATADIR%%/images/components/tdbtext.xpm +%%DATADIR%%/images/components/tdialogtemplate.xpm +%%DATADIR%%/images/components/tdirectoryedit.xpm +%%DATADIR%%/images/components/tdrawgrid.xpm +%%DATADIR%%/images/components/tedit.ico +%%DATADIR%%/images/components/tedit.xpm +%%DATADIR%%/images/components/teditbutton.xpm +%%DATADIR%%/images/components/tfilelistbox.xpm +%%DATADIR%%/images/components/tfilenamedit.xpm +%%DATADIR%%/images/components/tfilenameedit.xpm +%%DATADIR%%/images/components/tfinddialog.xpm +%%DATADIR%%/images/components/tfloatspinedit.xpm +%%DATADIR%%/images/components/tfontdialog.ico +%%DATADIR%%/images/components/tfontdialog.xpm +%%DATADIR%%/images/components/tgroupbox.ico +%%DATADIR%%/images/components/tgroupbox.xpm +%%DATADIR%%/images/components/thtmlbrowserhelpviewer.xpm +%%DATADIR%%/images/components/thtmlhelpdatabase.xpm +%%DATADIR%%/images/components/tidedialoglayoutstorage.xpm +%%DATADIR%%/images/components/tidletimer.xpm +%%DATADIR%%/images/components/timage.ico +%%DATADIR%%/images/components/timage.xpm +%%DATADIR%%/images/components/timagelist.xpm +%%DATADIR%%/images/components/tinipropstorage.xpm +%%DATADIR%%/images/components/tlabel.ico +%%DATADIR%%/images/components/tlabel.xpm +%%DATADIR%%/images/components/tlabelededit.xpm +%%DATADIR%%/images/components/tlazcomponentqueue.xpm +%%DATADIR%%/images/components/tlistbox.ico +%%DATADIR%%/images/components/tlistbox.xpm +%%DATADIR%%/images/components/tlistview.ico +%%DATADIR%%/images/components/tlistview.xpm +%%DATADIR%%/images/components/tmainmenu.ico +%%DATADIR%%/images/components/tmainmenu.xpm +%%DATADIR%%/images/components/tmaskedit.xpm +%%DATADIR%%/images/components/tmemo.ico +%%DATADIR%%/images/components/tmemo.xpm +%%DATADIR%%/images/components/tmenu.ico +%%DATADIR%%/images/components/tmenu.xpm +%%DATADIR%%/images/components/tmouse.ico +%%DATADIR%%/images/components/tmouse.xpm +%%DATADIR%%/images/components/tnotebook.ico +%%DATADIR%%/images/components/tnotebook.xpm +%%DATADIR%%/images/components/topendialog.ico +%%DATADIR%%/images/components/topendialog.xpm +%%DATADIR%%/images/components/topenpicturedialog.ico +%%DATADIR%%/images/components/topenpicturedialog.xpm +%%DATADIR%%/images/components/tpagecontrol.xpm +%%DATADIR%%/images/components/tpaintbox.ico +%%DATADIR%%/images/components/tpaintbox.xpm +%%DATADIR%%/images/components/tpairsplitter.xpm +%%DATADIR%%/images/components/tpanel.ico +%%DATADIR%%/images/components/tpanel.xpm +%%DATADIR%%/images/components/tpicture.xpm +%%DATADIR%%/images/components/tpopup.xpm +%%DATADIR%%/images/components/tpopupmenu.ico +%%DATADIR%%/images/components/tpopupmenu.xpm +%%DATADIR%%/images/components/tprinterdialog.ico +%%DATADIR%%/images/components/tprinterdialog.xpm +%%DATADIR%%/images/components/tprintersetupdialog.ico +%%DATADIR%%/images/components/tprintersetupdialog.xpm +%%DATADIR%%/images/components/tprocess.xpm +%%DATADIR%%/images/components/tprogressbar.ico +%%DATADIR%%/images/components/tprogressbar.xpm +%%DATADIR%%/images/components/tquery.ico +%%DATADIR%%/images/components/tquery.xpm +%%DATADIR%%/images/components/tradiobutton.ico +%%DATADIR%%/images/components/tradiobutton.xpm +%%DATADIR%%/images/components/tradiogroup.ico +%%DATADIR%%/images/components/tradiogroup.xpm +%%DATADIR%%/images/components/treplacedialog.xpm +%%DATADIR%%/images/components/tsavedialog.ico +%%DATADIR%%/images/components/tsavedialog.xpm +%%DATADIR%%/images/components/tsavepicturedialog.ico +%%DATADIR%%/images/components/tsavepicturedialog.xpm +%%DATADIR%%/images/components/tscrollbar.ico +%%DATADIR%%/images/components/tscrollbar.xpm +%%DATADIR%%/images/components/tscrollbox.xpm +%%DATADIR%%/images/components/tselectdirdialog.xpm +%%DATADIR%%/images/components/tselectdirectorydialog.xpm +%%DATADIR%%/images/components/tshape.xpm +%%DATADIR%%/images/components/tspeedbutton.ico +%%DATADIR%%/images/components/tspeedbutton.xpm +%%DATADIR%%/images/components/tspinedit.ico +%%DATADIR%%/images/components/tspinedit.xpm +%%DATADIR%%/images/components/tsplitter.xpm +%%DATADIR%%/images/components/tstatictext.xpm +%%DATADIR%%/images/components/tstatusbar.ico +%%DATADIR%%/images/components/tstatusbar.xpm +%%DATADIR%%/images/components/tstringgrid.xpm +%%DATADIR%%/images/components/ttabcontrol.xpm +%%DATADIR%%/images/components/ttimer.ico +%%DATADIR%%/images/components/ttimer.xpm +%%DATADIR%%/images/components/ttogglebox.ico +%%DATADIR%%/images/components/ttogglebox.xpm +%%DATADIR%%/images/components/ttoolbar.ico +%%DATADIR%%/images/components/ttoolbar.xpm +%%DATADIR%%/images/components/ttoolbutton.xpm +%%DATADIR%%/images/components/ttrackbar.ico +%%DATADIR%%/images/components/ttrackbar.xpm +%%DATADIR%%/images/components/ttreeview.xpm +%%DATADIR%%/images/components/tupdown.xpm +%%DATADIR%%/images/components/txmlpropstorage.xpm +%%DATADIR%%/images/components/unregisteredcomponent.xpm +%%DATADIR%%/images/components_images.lrs +%%DATADIR%%/images/designer/anchorbottombottom.xpm +%%DATADIR%%/images/designer/anchorcenterhorizontal.xpm +%%DATADIR%%/images/designer/anchorcentervertical.xpm +%%DATADIR%%/images/designer/anchorleftleft.xpm +%%DATADIR%%/images/designer/anchorleftright.xpm +%%DATADIR%%/images/designer/anchortopbottom.xpm +%%DATADIR%%/images/designer/anchortoptop.xpm +%%DATADIR%%/images/designer/anchorrightright.xpm +%%DATADIR%%/images/down.xpm +%%DATADIR%%/images/downarrow.ico +%%DATADIR%%/images/downarrow.xpm +%%DATADIR%%/images/fonts.ico +%%DATADIR%%/images/fonts.xpm +%%DATADIR%%/images/formatbold.bmp +%%DATADIR%%/images/formatitalic.bmp +%%DATADIR%%/images/formatunderline.bmp +%%DATADIR%%/images/icon-naming-spec.xml +%%DATADIR%%/images/ide_icon48x48.png +%%DATADIR%%/images/insertcodetag.xpm +%%DATADIR%%/images/insertremark.xpm +%%DATADIR%%/images/insertvartag.xpm +%%DATADIR%%/images/keymapcategory.xpm +%%DATADIR%%/images/keymaprelation.xpm +%%DATADIR%%/images/laz_images.lrs +%%DATADIR%%/images/lazarus.ico +%%DATADIR%%/images/lazarus.xpm +%%DATADIR%%/images/lazarus64.ico +%%DATADIR%%/images/lazarus64.xpm +%%DATADIR%%/images/lazarus_about_logo.xpm +%%DATADIR%%/images/lazaruspackage.ico +%%DATADIR%%/images/leftarrow.ico +%%DATADIR%%/images/leftarrow.xpm +%%DATADIR%%/images/logo_big.jpg +%%DATADIR%%/images/mainicon.ico +%%DATADIR%%/images/mainicon.lrs +%%DATADIR%%/images/mainicon.xpm +%%DATADIR%%/images/menu/menu_breakpoints.xpm +%%DATADIR%%/images/menu/menu_build.xpm +%%DATADIR%%/images/menu/menu_buildall.xpm +%%DATADIR%%/images/menu/menu_buildlazarus.xpm +%%DATADIR%%/images/menu/menu_callstack.xpm +%%DATADIR%%/images/menu/menu_close.xpm +%%DATADIR%%/images/menu/menu_codetoolsdefineseditor.xpm +%%DATADIR%%/images/menu/menu_codetoolsoptions.xpm +%%DATADIR%%/images/menu/menu_copy.xpm +%%DATADIR%%/images/menu/menu_cut.xpm +%%DATADIR%%/images/menu/menu_debugger.xpm +%%DATADIR%%/images/menu/menu_debugoutput.xpm +%%DATADIR%%/images/menu/menu_editoroptions.xpm +%%DATADIR%%/images/menu/menu_environmentoptions.xpm +%%DATADIR%%/images/menu/menu_indent.xpm +%%DATADIR%%/images/menu/menu_new.xpm +%%DATADIR%%/images/menu/menu_open.xpm +%%DATADIR%%/images/menu/menu_openproject.xpm +%%DATADIR%%/images/menu/menu_paste.xpm +%%DATADIR%%/images/menu/menu_pause.xpm +%%DATADIR%%/images/menu/menu_projectinspector.xpm +%%DATADIR%%/images/menu/menu_projectoptions.xpm +%%DATADIR%%/images/menu/menu_redo.xpm +%%DATADIR%%/images/menu/menu_run.xpm +%%DATADIR%%/images/menu/menu_save.xpm +%%DATADIR%%/images/menu/menu_stepinto.xpm +%%DATADIR%%/images/menu/menu_stepover.xpm +%%DATADIR%%/images/menu/menu_undo.xpm +%%DATADIR%%/images/menu/menu_unindent.xpm +%%DATADIR%%/images/menu/menu_watches.xpm +%%DATADIR%%/images/mouse.ico +%%DATADIR%%/images/mouse.xpm +%%DATADIR%%/images/notebook.ico +%%DATADIR%%/images/notebook.xpm +%%DATADIR%%/images/penguin.ico +%%DATADIR%%/images/penguin.xpm +%%DATADIR%%/images/pkg_add.xpm +%%DATADIR%%/images/pkg_addunittopackage.xpm +%%DATADIR%%/images/pkg_binary.xpm +%%DATADIR%%/images/pkg_compile.xpm +%%DATADIR%%/images/pkg_conflict.xpm +%%DATADIR%%/images/pkg_files.xpm +%%DATADIR%%/images/pkg_include.xpm +%%DATADIR%%/images/pkg_inherited.xpm +%%DATADIR%%/images/pkg_lfm.xpm +%%DATADIR%%/images/pkg_lrs.xpm +%%DATADIR%%/images/pkg_package.xpm +%%DATADIR%%/images/pkg_package_autoinstall.xpm +%%DATADIR%%/images/pkg_package_circle.xpm +%%DATADIR%%/images/pkg_package_install.xpm +%%DATADIR%%/images/pkg_package_installed.xpm +%%DATADIR%%/images/pkg_package_uninstall.xpm +%%DATADIR%%/images/pkg_packagegraph.xpm +%%DATADIR%%/images/pkg_project.xpm +%%DATADIR%%/images/pkg_registerunit.xpm +%%DATADIR%%/images/pkg_removedfiles.xpm +%%DATADIR%%/images/pkg_removedrequired.xpm +%%DATADIR%%/images/pkg_required.xpm +%%DATADIR%%/images/pkg_text.xpm +%%DATADIR%%/images/pkg_unit.xpm +%%DATADIR%%/images/rightarrow.ico +%%DATADIR%%/images/rightarrow.xpm +%%DATADIR%%/images/sourceeditor/ActiveBreakPoint.ico +%%DATADIR%%/images/sourceeditor/ActiveBreakPoint.xpm +%%DATADIR%%/images/sourceeditor/InactiveBreakPoint.ico +%%DATADIR%%/images/sourceeditor/InactiveBreakPoint.xpm +%%DATADIR%%/images/sourceeditor/InvalidBreakPoint.ico +%%DATADIR%%/images/sourceeditor/InvalidBreakPoint.xpm +%%DATADIR%%/images/sourceeditor/MultiBreakPoint.xpm +%%DATADIR%%/images/sourceeditor/UnknownBreakPoint.ico +%%DATADIR%%/images/sourceeditor/UnknownBreakPoint.xpm +%%DATADIR%%/images/sourceeditor/bookmark0.ico +%%DATADIR%%/images/sourceeditor/bookmark0.xpm +%%DATADIR%%/images/sourceeditor/bookmark1.ico +%%DATADIR%%/images/sourceeditor/bookmark1.xpm +%%DATADIR%%/images/sourceeditor/bookmark2.ico +%%DATADIR%%/images/sourceeditor/bookmark2.xpm +%%DATADIR%%/images/sourceeditor/bookmark3.ico +%%DATADIR%%/images/sourceeditor/bookmark3.xpm +%%DATADIR%%/images/sourceeditor/bookmark4.ico +%%DATADIR%%/images/sourceeditor/bookmark4.xpm +%%DATADIR%%/images/sourceeditor/bookmark5.ico +%%DATADIR%%/images/sourceeditor/bookmark5.xpm +%%DATADIR%%/images/sourceeditor/bookmark6.ico +%%DATADIR%%/images/sourceeditor/bookmark6.xpm +%%DATADIR%%/images/sourceeditor/bookmark7.ico +%%DATADIR%%/images/sourceeditor/bookmark7.xpm +%%DATADIR%%/images/sourceeditor/bookmark8.ico +%%DATADIR%%/images/sourceeditor/bookmark8.xpm +%%DATADIR%%/images/sourceeditor/bookmark9.ico +%%DATADIR%%/images/sourceeditor/bookmark9.xpm +%%DATADIR%%/images/splash_logo.xpm +%%DATADIR%%/images/todo_goto.bmp +%%DATADIR%%/images/todo_options.bmp +%%DATADIR%%/images/todo_print.bmp +%%DATADIR%%/images/todo_refresh.bmp +%%DATADIR%%/images/unitdependencies/srctype_circle_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_filenotfound_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_forbiddencircle_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_library_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_package_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_parseerror_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_program_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_unit_22x22.xpm +%%DATADIR%%/images/unitdependencies/srctype_unknown_22x22.xpm +%%DATADIR%%/images/up.xpm +%%DATADIR%%/images/uparrow.ico +%%DATADIR%%/images/uparrow.xpm +%%DATADIR%%/images/vase_trans.xpm +%%DATADIR%%/install/lazarus.desktop +%%DATADIR%%/languages/README +%%DATADIR%%/languages/lazaruside.ar.po +%%DATADIR%%/languages/lazaruside.ca.po +%%DATADIR%%/languages/lazaruside.de.po +%%DATADIR%%/languages/lazaruside.es.po +%%DATADIR%%/languages/lazaruside.fi.po +%%DATADIR%%/languages/lazaruside.fr.po +%%DATADIR%%/languages/lazaruside.he.po +%%DATADIR%%/languages/lazaruside.it.po +%%DATADIR%%/languages/lazaruside.ja.po +%%DATADIR%%/languages/lazaruside.nl.po +%%DATADIR%%/languages/lazaruside.pb.po +%%DATADIR%%/languages/lazaruside.pl.po +%%DATADIR%%/languages/lazaruside.pliso.po +%%DATADIR%%/languages/lazaruside.plwin.po +%%DATADIR%%/languages/lazaruside.po +%%DATADIR%%/languages/lazaruside.ru.po +%%DATADIR%%/languages/lazaruside.ua.po +%%DATADIR%%/languages/lazaruside.zh-cn.po +%%DATADIR%%/languages/objinspstrconsts.ca.po +%%DATADIR%%/languages/objinspstrconsts.de.po +%%DATADIR%%/languages/objinspstrconsts.es.po +%%DATADIR%%/languages/objinspstrconsts.fi.po +%%DATADIR%%/languages/objinspstrconsts.fr.po +%%DATADIR%%/languages/objinspstrconsts.it.po +%%DATADIR%%/languages/objinspstrconsts.ja.po +%%DATADIR%%/languages/objinspstrconsts.nl.po +%%DATADIR%%/languages/objinspstrconsts.pb.po +%%DATADIR%%/languages/objinspstrconsts.pl.po +%%DATADIR%%/languages/objinspstrconsts.pliso.po +%%DATADIR%%/languages/objinspstrconsts.plwin.po +%%DATADIR%%/languages/objinspstrconsts.po +%%DATADIR%%/languages/objinspstrconsts.ru.po +%%DATADIR%%/languages/objinspstrconsts.ua.po +%%DATADIR%%/languages/objinspstrconsts.zh-cn.po +%%DATADIR%%/lazarus +%%DATADIR%%/lcl/LAYOUT.txt +%%DATADIR%%/lcl/Makefile +%%DATADIR%%/lcl/Makefile.fpc +%%DATADIR%%/lcl/actnlist.pas +%%DATADIR%%/lcl/alllclunits.pp +%%DATADIR%%/lcl/arrow.pp +%%DATADIR%%/lcl/asyncprocess.pp +%%DATADIR%%/lcl/avglvltree.pas +%%DATADIR%%/lcl/buttonpanel.pas +%%DATADIR%%/lcl/buttons.pp +%%DATADIR%%/lcl/calendar.pp +%%DATADIR%%/lcl/clipbrd.pp +%%DATADIR%%/lcl/clistbox.pp +%%DATADIR%%/lcl/colorbox.pas +%%DATADIR%%/lcl/comctrls.pp +%%DATADIR%%/lcl/commctrl.pp +%%DATADIR%%/lcl/controls.pp +%%DATADIR%%/lcl/customtimer.pas +%%DATADIR%%/lcl/chart.pp +%%DATADIR%%/lcl/checklst.pas +%%DATADIR%%/lcl/dbactns.pp +%%DATADIR%%/lcl/dbctrls.pp +%%DATADIR%%/lcl/dbgrids.pas +%%DATADIR%%/lcl/defaulttranslator.pas +%%DATADIR%%/lcl/dialogs.pp +%%DATADIR%%/lcl/dirsel.lfm +%%DATADIR%%/lcl/dirsel.lrs +%%DATADIR%%/lcl/dirsel.pas +%%DATADIR%%/lcl/dynamicarray.pas +%%DATADIR%%/lcl/dynhasharray.pp +%%DATADIR%%/lcl/dynqueue.pas +%%DATADIR%%/lcl/edbtnimg.lrs +%%DATADIR%%/lcl/editbtn.pas +%%DATADIR%%/lcl/extctrls.pp +%%DATADIR%%/lcl/extdlgs.lrs +%%DATADIR%%/lcl/extdlgs.pas +%%DATADIR%%/lcl/extendedstrings.pas +%%DATADIR%%/lcl/extgraphics.pas +%%DATADIR%%/lcl/filectrl.pp +%%DATADIR%%/lcl/fileutil.pas +%%DATADIR%%/lcl/forms.pp +%%DATADIR%%/lcl/forms/calendarpopup.lfm +%%DATADIR%%/lcl/forms/calendarpopup.lrs +%%DATADIR%%/lcl/forms/calendarpopup.pas +%%DATADIR%%/lcl/forms/finddlgunit.lfm +%%DATADIR%%/lcl/forms/finddlgunit.lrs +%%DATADIR%%/lcl/forms/finddlgunit.pas +%%DATADIR%%/lcl/forms/replacedlgunit.lfm +%%DATADIR%%/lcl/forms/replacedlgunit.lrs +%%DATADIR%%/lcl/forms/replacedlgunit.pas +%%DATADIR%%/lcl/fpcadds.pas +%%DATADIR%%/lcl/fpreadpng.pp +%%DATADIR%%/lcl/fpwritepng.pp +%%DATADIR%%/lcl/graphics.pp +%%DATADIR%%/lcl/graphmath.pp +%%DATADIR%%/lcl/graphtype.pp +%%DATADIR%%/lcl/grids.pas +%%DATADIR%%/lcl/helpintfs.pas +%%DATADIR%%/lcl/images/README +%%DATADIR%%/lcl/images/btncalccancel.xpm +%%DATADIR%%/lcl/images/btncalcimg.xpm +%%DATADIR%%/lcl/images/btncalcmin.xpm +%%DATADIR%%/lcl/images/btncalcmul.xpm +%%DATADIR%%/lcl/images/btncalcok.xpm +%%DATADIR%%/lcl/images/btncalcplus.xpm +%%DATADIR%%/lcl/images/btncalcpm.xpm +%%DATADIR%%/lcl/images/btncalculator.xpm +%%DATADIR%%/lcl/images/btncalendar.xpm +%%DATADIR%%/lcl/images/btnseldir.xpm +%%DATADIR%%/lcl/images/dbnavcancel.xpm +%%DATADIR%%/lcl/images/dbnavdelete.xpm +%%DATADIR%%/lcl/images/dbnavedit.xpm +%%DATADIR%%/lcl/images/dbnavfirst.xpm +%%DATADIR%%/lcl/images/dbnavinsert.xpm +%%DATADIR%%/lcl/images/dbnavlast.xpm +%%DATADIR%%/lcl/images/dbnavnext.xpm +%%DATADIR%%/lcl/images/dbnavpost.xpm +%%DATADIR%%/lcl/images/dbnavprior.xpm +%%DATADIR%%/lcl/images/dbnavrefresh.xpm +%%DATADIR%%/lcl/imglist.pp +%%DATADIR%%/lcl/include/actionlink.inc +%%DATADIR%%/lcl/include/alignment.inc +%%DATADIR%%/lcl/include/application.inc +%%DATADIR%%/lcl/include/applicationproperties.inc +%%DATADIR%%/lcl/include/basedragcontrolobject.inc +%%DATADIR%%/lcl/include/bevel.inc +%%DATADIR%%/lcl/include/bitbtn.inc +%%DATADIR%%/lcl/include/bitmap.inc +%%DATADIR%%/lcl/include/bitmapcanvas.inc +%%DATADIR%%/lcl/include/bitmapimage.inc +%%DATADIR%%/lcl/include/boundlabel.inc +%%DATADIR%%/lcl/include/brush.inc +%%DATADIR%%/lcl/include/buttoncontrol.inc +%%DATADIR%%/lcl/include/buttonglyph.inc +%%DATADIR%%/lcl/include/buttons.inc +%%DATADIR%%/lcl/include/canvas.inc +%%DATADIR%%/lcl/include/clipbrd.inc +%%DATADIR%%/lcl/include/colorbutton.inc +%%DATADIR%%/lcl/include/colordialog.inc +%%DATADIR%%/lcl/include/commondialog.inc +%%DATADIR%%/lcl/include/containedaction.inc +%%DATADIR%%/lcl/include/control.inc +%%DATADIR%%/lcl/include/controlactionlink.inc +%%DATADIR%%/lcl/include/controlcanvas.inc +%%DATADIR%%/lcl/include/controlscrollbar.inc +%%DATADIR%%/lcl/include/controlsproc.inc +%%DATADIR%%/lcl/include/customaction.inc +%%DATADIR%%/lcl/include/customactionlist.inc +%%DATADIR%%/lcl/include/customcombobox.inc +%%DATADIR%%/lcl/include/customcontrol.inc +%%DATADIR%%/lcl/include/customcheckbox.inc +%%DATADIR%%/lcl/include/customcheckgroup.inc +%%DATADIR%%/lcl/include/customdockform.inc +%%DATADIR%%/lcl/include/customedit.inc +%%DATADIR%%/lcl/include/customform.inc +%%DATADIR%%/lcl/include/customframe.inc +%%DATADIR%%/lcl/include/customgroupbox.inc +%%DATADIR%%/lcl/include/customimage.inc +%%DATADIR%%/lcl/include/customlabel.inc +%%DATADIR%%/lcl/include/customlabelededit.inc +%%DATADIR%%/lcl/include/customlistbox.inc +%%DATADIR%%/lcl/include/customlistview.inc +%%DATADIR%%/lcl/include/custommemo.inc +%%DATADIR%%/lcl/include/customnotebook.inc +%%DATADIR%%/lcl/include/custompage.inc +%%DATADIR%%/lcl/include/custompanel.inc +%%DATADIR%%/lcl/include/customsplitter.inc +%%DATADIR%%/lcl/include/customstatictext.inc +%%DATADIR%%/lcl/include/customupdown.inc +%%DATADIR%%/lcl/include/checkbox.inc +%%DATADIR%%/lcl/include/dbcalendar.inc +%%DATADIR%%/lcl/include/dbcombobox.inc +%%DATADIR%%/lcl/include/dbcustomnavigator.inc +%%DATADIR%%/lcl/include/dbcheckbox.inc +%%DATADIR%%/lcl/include/dbedit.inc +%%DATADIR%%/lcl/include/dbgroupbox.inc +%%DATADIR%%/lcl/include/dbimage.inc +%%DATADIR%%/lcl/include/dblistbox.inc +%%DATADIR%%/lcl/include/dbmemo.inc +%%DATADIR%%/lcl/include/dbradiogroup.inc +%%DATADIR%%/lcl/include/dbtext.inc +%%DATADIR%%/lcl/include/defaultbitbtnimages.inc +%%DATADIR%%/lcl/include/docktree.inc +%%DATADIR%%/lcl/include/dockzone.inc +%%DATADIR%%/lcl/include/dragdock.inc +%%DATADIR%%/lcl/include/dragobject.inc +%%DATADIR%%/lcl/include/edit.inc +%%DATADIR%%/lcl/include/filedialog.inc +%%DATADIR%%/lcl/include/fileutil.inc +%%DATADIR%%/lcl/include/finddialog.inc +%%DATADIR%%/lcl/include/font.inc +%%DATADIR%%/lcl/include/fontdialog.inc +%%DATADIR%%/lcl/include/graphic.inc +%%DATADIR%%/lcl/include/graphiccontrol.inc +%%DATADIR%%/lcl/include/graphicsobject.inc +%%DATADIR%%/lcl/include/hintwindow.inc +%%DATADIR%%/lcl/include/idletimer.inc +%%DATADIR%%/lcl/include/imglist.inc +%%DATADIR%%/lcl/include/inputdialog.inc +%%DATADIR%%/lcl/include/interfacebase.inc +%%DATADIR%%/lcl/include/intfbaselcl.inc +%%DATADIR%%/lcl/include/intfbasewinapi.inc +%%DATADIR%%/lcl/include/lclaction.inc +%%DATADIR%%/lcl/include/lclintf.inc +%%DATADIR%%/lcl/include/lclintfh.inc +%%DATADIR%%/lcl/include/listcolumn.inc +%%DATADIR%%/lcl/include/listcolumns.inc +%%DATADIR%%/lcl/include/listitem.inc +%%DATADIR%%/lcl/include/listitems.inc +%%DATADIR%%/lcl/include/mainmenu.inc +%%DATADIR%%/lcl/include/memo.inc +%%DATADIR%%/lcl/include/memoscrollbar.inc +%%DATADIR%%/lcl/include/memostrings.inc +%%DATADIR%%/lcl/include/menu.inc +%%DATADIR%%/lcl/include/menuactionlink.inc +%%DATADIR%%/lcl/include/menuitem.inc +%%DATADIR%%/lcl/include/messagedialogpixmaps.inc +%%DATADIR%%/lcl/include/messagedialogs.inc +%%DATADIR%%/lcl/include/mouse.inc +%%DATADIR%%/lcl/include/notebook.inc +%%DATADIR%%/lcl/include/page.inc +%%DATADIR%%/lcl/include/pagecontrol.inc +%%DATADIR%%/lcl/include/paintbox.inc +%%DATADIR%%/lcl/include/pen.inc +%%DATADIR%%/lcl/include/picture.inc +%%DATADIR%%/lcl/include/pixmap.inc +%%DATADIR%%/lcl/include/png.inc +%%DATADIR%%/lcl/include/pnm.inc +%%DATADIR%%/lcl/include/popupmenu.inc +%%DATADIR%%/lcl/include/progressbar.inc +%%DATADIR%%/lcl/include/promptdialog.inc +%%DATADIR%%/lcl/include/radiobutton.inc +%%DATADIR%%/lcl/include/radiogroup.inc +%%DATADIR%%/lcl/include/reginifile.inc +%%DATADIR%%/lcl/include/region.inc +%%DATADIR%%/lcl/include/replacedialog.inc +%%DATADIR%%/lcl/include/screen.inc +%%DATADIR%%/lcl/include/scrollbar.inc +%%DATADIR%%/lcl/include/scrollbox.inc +%%DATADIR%%/lcl/include/scrollingwincontrol.inc +%%DATADIR%%/lcl/include/shape.inc +%%DATADIR%%/lcl/include/sharedimage.inc +%%DATADIR%%/lcl/include/shortcutlist.inc +%%DATADIR%%/lcl/include/sizeconstraints.inc +%%DATADIR%%/lcl/include/speedbutton.inc +%%DATADIR%%/lcl/include/spinedit.inc +%%DATADIR%%/lcl/include/statusbar.inc +%%DATADIR%%/lcl/include/statuspanel.inc +%%DATADIR%%/lcl/include/statuspanels.inc +%%DATADIR%%/lcl/include/tabcontrol.inc +%%DATADIR%%/lcl/include/tabsheet.inc +%%DATADIR%%/lcl/include/timer.inc +%%DATADIR%%/lcl/include/togglebox.inc +%%DATADIR%%/lcl/include/toolbar.inc +%%DATADIR%%/lcl/include/toolbutton.inc +%%DATADIR%%/lcl/include/toolwindow.inc +%%DATADIR%%/lcl/include/trackbar.inc +%%DATADIR%%/lcl/include/treeview.inc +%%DATADIR%%/lcl/include/winapi.inc +%%DATADIR%%/lcl/include/winapih.inc +%%DATADIR%%/lcl/include/wincontrol.inc +%%DATADIR%%/lcl/inipropstorage.pas +%%DATADIR%%/lcl/interfacebase.pp +%%DATADIR%%/lcl/interfaces/LAYOUT.txt +%%DATADIR%%/lcl/interfaces/Makefile +%%DATADIR%%/lcl/interfaces/Makefile.fpc +%%DATADIR%%/lcl/interfaces/carbon/Makefile +%%DATADIR%%/lcl/interfaces/carbon/Makefile.fpc +%%DATADIR%%/lcl/interfaces/carbon/README +%%DATADIR%%/lcl/interfaces/carbon/carbondef.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonextra.pas +%%DATADIR%%/lcl/interfaces/carbon/carbonimages.lrs +%%DATADIR%%/lcl/interfaces/carbon/carbonint.pas +%%DATADIR%%/lcl/interfaces/carbon/carbonlclintf.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonlclintfh.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonobject.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonprivate.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonprivatecheckbox.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonprivatehiview.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonprivatewindow.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonproc.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonutils.pas +%%DATADIR%%/lcl/interfaces/carbon/carbonwinapi.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonwinapih.inc +%%DATADIR%%/lcl/interfaces/carbon/carbonwsactnlist.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsarrow.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsbuttons.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwscalendar.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsclistbox.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwscomctrls.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwscontrols.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwschecklst.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsdbctrls.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsdbgrids.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsdialogs.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsdirsel.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwseditbtn.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsextctrls.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsextdlgs.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsfilectrl.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsforms.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsgrids.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsimglist.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsmaskedit.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsmenus.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwspairsplitter.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsspin.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwsstdctrls.pp +%%DATADIR%%/lcl/interfaces/carbon/carbonwstoolwin.pp +%%DATADIR%%/lcl/interfaces/carbon/fpcmacosall.pas +%%DATADIR%%/lcl/interfaces/carbon/interfaces.pas +%%DATADIR%%/lcl/interfaces/gnome/Makefile +%%DATADIR%%/lcl/interfaces/gnome/Makefile.fpc +%%DATADIR%%/lcl/interfaces/gnome/gnomeint.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomelclintf.inc +%%DATADIR%%/lcl/interfaces/gnome/gnomelclintfh.inc +%%DATADIR%%/lcl/interfaces/gnome/gnomewinapi.inc +%%DATADIR%%/lcl/interfaces/gnome/gnomewinapih.inc +%%DATADIR%%/lcl/interfaces/gnome/gnomewsactnlist.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsarrow.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsbuttons.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewscalendar.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsclistbox.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewscomctrls.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewscontrols.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewschecklst.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsdbctrls.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsdbgrids.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsdialogs.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsdirsel.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewseditbtn.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsextctrls.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsextdlgs.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsfilectrl.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsforms.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsgrids.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsimglist.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsmaskedit.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsmenus.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewspairsplitter.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsspin.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewsstdctrls.pp +%%DATADIR%%/lcl/interfaces/gnome/gnomewstoolwin.pp +%%DATADIR%%/lcl/interfaces/gnome/interfaces.pp +%%DATADIR%%/lcl/interfaces/gtk/Makefile +%%DATADIR%%/lcl/interfaces/gtk/Makefile.fpc +%%DATADIR%%/lcl/interfaces/gtk/dragicons.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkcallback.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkcomboboxcallback.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkdef.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkdragcallback.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkfiledialogutils.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkfiledialogutilsh.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkfontcache.pas +%%DATADIR%%/lcl/interfaces/gtk/gtkglobals.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkimages.lrs +%%DATADIR%%/lcl/interfaces/gtk/gtkint.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkkeysyms.inc +%%DATADIR%%/lcl/interfaces/gtk/gtklclintf.inc +%%DATADIR%%/lcl/interfaces/gtk/gtklclintfh.inc +%%DATADIR%%/lcl/interfaces/gtk/gtklistsl.inc +%%DATADIR%%/lcl/interfaces/gtk/gtklistslh.inc +%%DATADIR%%/lcl/interfaces/gtk/gtklistviewcallback.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkmemostrings.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkmsgqueue.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkobject.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkpagecallback.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkproc.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkproc.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwinapi.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkwinapih.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkwinapiwindow.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsactnlist.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsarrow.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsbuttons.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwscalendar.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsclistbox.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwscomctrls.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwscontrols.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwscustomlistview.inc +%%DATADIR%%/lcl/interfaces/gtk/gtkwschecklst.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsdbctrls.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsdbgrids.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsdialogs.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsdirsel.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwseditbtn.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsextctrls.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsextdlgs.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsfilectrl.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsforms.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsgrids.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsimglist.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsmaskedit.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsmenus.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwspairsplitter.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsspin.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwsstdctrls.pp +%%DATADIR%%/lcl/interfaces/gtk/gtkwstoolwin.pp +%%DATADIR%%/lcl/interfaces/gtk/interfaces.pp +%%DATADIR%%/lcl/interfaces/gtk/tests/gtkclipboard.lpi +%%DATADIR%%/lcl/interfaces/gtk/tests/gtkclipboard.lpr +%%DATADIR%%/lcl/interfaces/gtk/tests/lclclipboardtest.lpi +%%DATADIR%%/lcl/interfaces/gtk/tests/lclclipboardtest.lpr +%%DATADIR%%/lcl/interfaces/gtk/tests/lclclipboardunit.lfm +%%DATADIR%%/lcl/interfaces/gtk/tests/lclclipboardunit.lrs +%%DATADIR%%/lcl/interfaces/gtk/tests/lclclipboardunit.pas +%%DATADIR%%/lcl/interfaces/gtk/tnotebook_close_tab.xpm +%%DATADIR%%/lcl/interfaces/gtk2/Makefile +%%DATADIR%%/lcl/interfaces/gtk2/Makefile.fpc +%%DATADIR%%/lcl/interfaces/gtk2/README +%%DATADIR%%/lcl/interfaces/gtk2/TODOS +%%DATADIR%%/lcl/interfaces/gtk2/gtk2int.pas +%%DATADIR%%/lcl/interfaces/gtk2/gtk2interface.lpk +%%DATADIR%%/lcl/interfaces/gtk2/gtk2interface.pas +%%DATADIR%%/lcl/interfaces/gtk2/gtk2lclintf.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2lclintfh.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2memostrings.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2object.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2winapi.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2winapih.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsactnlist.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsarrow.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsbuttons.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wscalendar.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsclistbox.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wscomctrls.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wscontrols.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wscustomlistview.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wscustommemo.inc +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wschecklst.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsdbctrls.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsdbgrids.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsdialogs.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsdirsel.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wseditbtn.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsextctrls.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsextdlgs.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsfilectrl.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsforms.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsgrids.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsimglist.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsmaskedit.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsmenus.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wspairsplitter.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsspin.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wsstdctrls.pp +%%DATADIR%%/lcl/interfaces/gtk2/gtk2wstoolwin.pp +%%DATADIR%%/lcl/interfaces/gtk2/interfaces.pas +%%DATADIR%%/lcl/interfaces/qt/Makefile +%%DATADIR%%/lcl/interfaces/qt/Makefile.fpc +%%DATADIR%%/lcl/interfaces/qt/README.txt +%%DATADIR%%/lcl/interfaces/qt/interfaces.pp +%%DATADIR%%/lcl/interfaces/qt/qt.pp +%%DATADIR%%/lcl/interfaces/qt/qt4.pas +%%DATADIR%%/lcl/interfaces/qt/qtcallback.inc +%%DATADIR%%/lcl/interfaces/qt/qtint.pp +%%DATADIR%%/lcl/interfaces/qt/qtlclintf.inc +%%DATADIR%%/lcl/interfaces/qt/qtlclintfh.inc +%%DATADIR%%/lcl/interfaces/qt/qtobject.inc +%%DATADIR%%/lcl/interfaces/qt/qtobjects.pas +%%DATADIR%%/lcl/interfaces/qt/qtprivate.pp +%%DATADIR%%/lcl/interfaces/qt/qtwinapi.inc +%%DATADIR%%/lcl/interfaces/qt/qtwinapih.inc +%%DATADIR%%/lcl/interfaces/qt/qtwsactnlist.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsarrow.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsbuttons.pp +%%DATADIR%%/lcl/interfaces/qt/qtwscalendar.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsclistbox.pp +%%DATADIR%%/lcl/interfaces/qt/qtwscomctrls.pp +%%DATADIR%%/lcl/interfaces/qt/qtwscontrols.pp +%%DATADIR%%/lcl/interfaces/qt/qtwschecklst.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsdbctrls.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsdbgrids.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsdialogs.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsdirsel.pp +%%DATADIR%%/lcl/interfaces/qt/qtwseditbtn.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsextctrls.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsextdlgs.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsfilectrl.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsforms.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsgrids.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsimglist.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsmaskedit.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsmenus.pp +%%DATADIR%%/lcl/interfaces/qt/qtwspairsplitter.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsspin.pp +%%DATADIR%%/lcl/interfaces/qt/qtwsstdctrls.pp +%%DATADIR%%/lcl/interfaces/qt/qtwstoolwin.pp +%%DATADIR%%/lcl/interfaces/win32/Makefile +%%DATADIR%%/lcl/interfaces/win32/Makefile.fpc +%%DATADIR%%/lcl/interfaces/win32/README +%%DATADIR%%/lcl/interfaces/win32/interfaces.pp +%%DATADIR%%/lcl/interfaces/win32/win32callback.inc +%%DATADIR%%/lcl/interfaces/win32/win32def.pp +%%DATADIR%%/lcl/interfaces/win32/win32int.pp +%%DATADIR%%/lcl/interfaces/win32/win32lclintf.inc +%%DATADIR%%/lcl/interfaces/win32/win32lclintfh.inc +%%DATADIR%%/lcl/interfaces/win32/win32listsl.inc +%%DATADIR%%/lcl/interfaces/win32/win32listslh.inc +%%DATADIR%%/lcl/interfaces/win32/win32memostrings.inc +%%DATADIR%%/lcl/interfaces/win32/win32object.inc +%%DATADIR%%/lcl/interfaces/win32/win32proc.pp +%%DATADIR%%/lcl/interfaces/win32/win32winapi.inc +%%DATADIR%%/lcl/interfaces/win32/win32winapih.inc +%%DATADIR%%/lcl/interfaces/win32/win32wsactnlist.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsarrow.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsbuttons.pp +%%DATADIR%%/lcl/interfaces/win32/win32wscalendar.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsclistbox.pp +%%DATADIR%%/lcl/interfaces/win32/win32wscomctrls.pp +%%DATADIR%%/lcl/interfaces/win32/win32wscontrols.pp +%%DATADIR%%/lcl/interfaces/win32/win32wscustomlistview.inc +%%DATADIR%%/lcl/interfaces/win32/win32wschecklst.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsdbctrls.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsdbgrids.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsdialogs.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsdirsel.pp +%%DATADIR%%/lcl/interfaces/win32/win32wseditbtn.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsextctrls.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsextdlgs.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsfilectrl.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsforms.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsgrids.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsimglist.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsmaskedit.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsmenus.pp +%%DATADIR%%/lcl/interfaces/win32/win32wspairsplitter.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsspin.pp +%%DATADIR%%/lcl/interfaces/win32/win32wsstdctrls.pp +%%DATADIR%%/lcl/interfaces/win32/win32wstoolwin.pp +%%DATADIR%%/lcl/interfaces/win32/winext.pas +%%DATADIR%%/lcl/interfaces/wince/Makefile +%%DATADIR%%/lcl/interfaces/wince/Makefile.fpc +%%DATADIR%%/lcl/interfaces/wince/interfaces.pp +%%DATADIR%%/lcl/interfaces/wince/wincecallback.inc +%%DATADIR%%/lcl/interfaces/wince/winceint.pp +%%DATADIR%%/lcl/interfaces/wince/wincelclintf.inc +%%DATADIR%%/lcl/interfaces/wince/wincelclintfh.inc +%%DATADIR%%/lcl/interfaces/wince/wincelistsl.inc +%%DATADIR%%/lcl/interfaces/wince/wincelistslh.inc +%%DATADIR%%/lcl/interfaces/wince/wincememostrings.inc +%%DATADIR%%/lcl/interfaces/wince/winceobject.inc +%%DATADIR%%/lcl/interfaces/wince/winceproc.pp +%%DATADIR%%/lcl/interfaces/wince/wincewinapi.inc +%%DATADIR%%/lcl/interfaces/wince/wincewinapiemu.pp +%%DATADIR%%/lcl/interfaces/wince/wincewinapih.inc +%%DATADIR%%/lcl/interfaces/wince/wincewsarrow.pp +%%DATADIR%%/lcl/interfaces/wince/wincewsbuttons.pp +%%DATADIR%%/lcl/interfaces/wince/wincewscomctrls.pp +%%DATADIR%%/lcl/interfaces/wince/wincewscontrols.pp +%%DATADIR%%/lcl/interfaces/wince/wincewscustomlistview.inc +%%DATADIR%%/lcl/interfaces/wince/wincewschecklst.pp +%%DATADIR%%/lcl/interfaces/wince/wincewsextctrls.pp +%%DATADIR%%/lcl/interfaces/wince/wincewsforms.pp +%%DATADIR%%/lcl/interfaces/wince/wincewsspin.pp +%%DATADIR%%/lcl/interfaces/wince/wincewsstdctrls.pp +%%DATADIR%%/lcl/intfgraphics.pas +%%DATADIR%%/lcl/languages/README +%%DATADIR%%/lcl/languages/lcl.ca.po +%%DATADIR%%/lcl/languages/lcl.de.po +%%DATADIR%%/lcl/languages/lcl.es.po +%%DATADIR%%/lcl/languages/lcl.fi.po +%%DATADIR%%/lcl/languages/lcl.fr.po +%%DATADIR%%/lcl/languages/lcl.it.po +%%DATADIR%%/lcl/languages/lcl.nl.po +%%DATADIR%%/lcl/languages/lcl.pb.po +%%DATADIR%%/lcl/languages/lcl.pl.po +%%DATADIR%%/lcl/languages/lcl.pliso.po +%%DATADIR%%/lcl/languages/lcl.plwin.po +%%DATADIR%%/lcl/languages/lcl.po +%%DATADIR%%/lcl/languages/lcl.ru.po +%%DATADIR%%/lcl/languages/lcl.ua.po +%%DATADIR%%/lcl/lazconfigstorage.pas +%%DATADIR%%/lcl/lazhelphtml.pas +%%DATADIR%%/lcl/lazhelpintf.pas +%%DATADIR%%/lcl/lazlinkedlist.pas +%%DATADIR%%/lcl/lclclasses.pp +%%DATADIR%%/lcl/lclicons.lrs +%%DATADIR%%/lcl/lclintf.pas +%%DATADIR%%/lcl/lclmemmanager.pas +%%DATADIR%%/lcl/lclproc.pas +%%DATADIR%%/lcl/lclrescache.pas +%%DATADIR%%/lcl/lclstrconsts.pas +%%DATADIR%%/lcl/lcltype.pp +%%DATADIR%%/lcl/lconv.pas +%%DATADIR%%/lcl/ldockctrl.pas +%%DATADIR%%/lcl/ldockctrledit.lfm +%%DATADIR%%/lcl/ldockctrledit.lrs +%%DATADIR%%/lcl/ldockctrledit.pas +%%DATADIR%%/lcl/ldocktree.pas +%%DATADIR%%/lcl/lmessages.pp +%%DATADIR%%/lcl/lresources.pp +%%DATADIR%%/lcl/maps.pp +%%DATADIR%%/lcl/maskedit.pp +%%DATADIR%%/lcl/menus.pp +%%DATADIR%%/lcl/nonwin32/README +%%DATADIR%%/lcl/nonwin32/messages.pp +%%DATADIR%%/lcl/pairsplitter.pas +%%DATADIR%%/lcl/postscriptcanvas.pas +%%DATADIR%%/lcl/postscriptprinter.pas +%%DATADIR%%/lcl/printers.pas +%%DATADIR%%/lcl/propertystorage.pas +%%DATADIR%%/lcl/spin.pp +%%DATADIR%%/lcl/stdactns.pas +%%DATADIR%%/lcl/stdctrls.pp +%%DATADIR%%/lcl/stringhashlist.pas +%%DATADIR%%/lcl/templates/template.inc +%%DATADIR%%/lcl/templates/template.pp +%%DATADIR%%/lcl/tests/test1_1simpleform1.lpi +%%DATADIR%%/lcl/tests/test1_1simpleform1.lpr +%%DATADIR%%/lcl/tests/test1_2button.lpi +%%DATADIR%%/lcl/tests/test1_2button.lpr +%%DATADIR%%/lcl/tests/test1_3label.lpi +%%DATADIR%%/lcl/tests/test1_3label.lpr +%%DATADIR%%/lcl/tests/test1_4edit.lpi +%%DATADIR%%/lcl/tests/test1_4edit.lpr +%%DATADIR%%/lcl/tests/test1_5checkbox.lpi +%%DATADIR%%/lcl/tests/test1_5checkbox.lpr +%%DATADIR%%/lcl/tests/test2_1buttonnavigation.lpi +%%DATADIR%%/lcl/tests/test2_1buttonnavigation.lpr +%%DATADIR%%/lcl/tests/test2_2labelattributes.lpi +%%DATADIR%%/lcl/tests/test2_2labelattributes.lpr +%%DATADIR%%/lcl/tests/test4_1synedit.lpi +%%DATADIR%%/lcl/tests/test4_1synedit.lpr +%%DATADIR%%/lcl/textstrings.pas +%%DATADIR%%/lcl/toolwin.pp +%%DATADIR%%/lcl/translations.pas +%%DATADIR%%/lcl/units/i386-freebsd/actnlist.o +%%DATADIR%%/lcl/units/i386-freebsd/actnlist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/alllclunits.o +%%DATADIR%%/lcl/units/i386-freebsd/alllclunits.ppu +%%DATADIR%%/lcl/units/i386-freebsd/arrow.o +%%DATADIR%%/lcl/units/i386-freebsd/arrow.ppu +%%DATADIR%%/lcl/units/i386-freebsd/asyncprocess.o +%%DATADIR%%/lcl/units/i386-freebsd/asyncprocess.ppu +%%DATADIR%%/lcl/units/i386-freebsd/avglvltree.o +%%DATADIR%%/lcl/units/i386-freebsd/avglvltree.ppu +%%DATADIR%%/lcl/units/i386-freebsd/buttonpanel.o +%%DATADIR%%/lcl/units/i386-freebsd/buttonpanel.ppu +%%DATADIR%%/lcl/units/i386-freebsd/buttons.o +%%DATADIR%%/lcl/units/i386-freebsd/buttons.ppu +%%DATADIR%%/lcl/units/i386-freebsd/calendar.o +%%DATADIR%%/lcl/units/i386-freebsd/calendar.ppu +%%DATADIR%%/lcl/units/i386-freebsd/calendarpopup.o +%%DATADIR%%/lcl/units/i386-freebsd/calendarpopup.ppu +%%DATADIR%%/lcl/units/i386-freebsd/clipbrd.o +%%DATADIR%%/lcl/units/i386-freebsd/clipbrd.ppu +%%DATADIR%%/lcl/units/i386-freebsd/clistbox.o +%%DATADIR%%/lcl/units/i386-freebsd/clistbox.ppu +%%DATADIR%%/lcl/units/i386-freebsd/colorbox.o +%%DATADIR%%/lcl/units/i386-freebsd/colorbox.ppu +%%DATADIR%%/lcl/units/i386-freebsd/comctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/comctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/commctrl.o +%%DATADIR%%/lcl/units/i386-freebsd/commctrl.ppu +%%DATADIR%%/lcl/units/i386-freebsd/controls.o +%%DATADIR%%/lcl/units/i386-freebsd/controls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/customtimer.o +%%DATADIR%%/lcl/units/i386-freebsd/customtimer.ppu +%%DATADIR%%/lcl/units/i386-freebsd/chart.o +%%DATADIR%%/lcl/units/i386-freebsd/chart.ppu +%%DATADIR%%/lcl/units/i386-freebsd/checklst.o +%%DATADIR%%/lcl/units/i386-freebsd/checklst.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dbactns.o +%%DATADIR%%/lcl/units/i386-freebsd/dbactns.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dbctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/dbctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dbgrids.o +%%DATADIR%%/lcl/units/i386-freebsd/dbgrids.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dialogs.o +%%DATADIR%%/lcl/units/i386-freebsd/dialogs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dynamicarray.o +%%DATADIR%%/lcl/units/i386-freebsd/dynamicarray.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dynhasharray.o +%%DATADIR%%/lcl/units/i386-freebsd/dynhasharray.ppu +%%DATADIR%%/lcl/units/i386-freebsd/dynqueue.o +%%DATADIR%%/lcl/units/i386-freebsd/dynqueue.ppu +%%DATADIR%%/lcl/units/i386-freebsd/editbtn.o +%%DATADIR%%/lcl/units/i386-freebsd/editbtn.ppu +%%DATADIR%%/lcl/units/i386-freebsd/extctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/extctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/extdlgs.o +%%DATADIR%%/lcl/units/i386-freebsd/extdlgs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/extendedstrings.o +%%DATADIR%%/lcl/units/i386-freebsd/extendedstrings.ppu +%%DATADIR%%/lcl/units/i386-freebsd/extgraphics.o +%%DATADIR%%/lcl/units/i386-freebsd/extgraphics.ppu +%%DATADIR%%/lcl/units/i386-freebsd/filectrl.o +%%DATADIR%%/lcl/units/i386-freebsd/filectrl.ppu +%%DATADIR%%/lcl/units/i386-freebsd/fileutil.o +%%DATADIR%%/lcl/units/i386-freebsd/fileutil.ppu +%%DATADIR%%/lcl/units/i386-freebsd/forms.o +%%DATADIR%%/lcl/units/i386-freebsd/forms.ppu +%%DATADIR%%/lcl/units/i386-freebsd/fpcadds.o +%%DATADIR%%/lcl/units/i386-freebsd/fpcadds.ppu +%%DATADIR%%/lcl/units/i386-freebsd/fpreadpng.o +%%DATADIR%%/lcl/units/i386-freebsd/fpreadpng.ppu +%%DATADIR%%/lcl/units/i386-freebsd/fpwritepng.o +%%DATADIR%%/lcl/units/i386-freebsd/fpwritepng.ppu +%%DATADIR%%/lcl/units/i386-freebsd/graphics.o +%%DATADIR%%/lcl/units/i386-freebsd/graphics.ppu +%%DATADIR%%/lcl/units/i386-freebsd/graphmath.o +%%DATADIR%%/lcl/units/i386-freebsd/graphmath.ppu +%%DATADIR%%/lcl/units/i386-freebsd/graphtype.o +%%DATADIR%%/lcl/units/i386-freebsd/graphtype.ppu +%%DATADIR%%/lcl/units/i386-freebsd/grids.o +%%DATADIR%%/lcl/units/i386-freebsd/grids.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkdef.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkdef.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkfontcache.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkfontcache.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkglobals.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkglobals.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkint.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkint.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkmsgqueue.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkmsgqueue.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkproc.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkproc.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwinapiwindow.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwinapiwindow.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsarrow.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsarrow.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsbuttons.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsbuttons.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscalendar.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscalendar.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscomctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscomctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscontrols.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwscontrols.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwschecklst.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwschecklst.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsdialogs.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsdialogs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsextctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsextctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsforms.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsforms.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsgrids.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsgrids.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsmenus.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsmenus.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsspin.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsspin.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsstdctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/gtkwsstdctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/gtk/interfaces.o +%%DATADIR%%/lcl/units/i386-freebsd/gtk/interfaces.ppu +%%DATADIR%%/lcl/units/i386-freebsd/helpintfs.o +%%DATADIR%%/lcl/units/i386-freebsd/helpintfs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/imglist.o +%%DATADIR%%/lcl/units/i386-freebsd/imglist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/inipropstorage.o +%%DATADIR%%/lcl/units/i386-freebsd/inipropstorage.ppu +%%DATADIR%%/lcl/units/i386-freebsd/interfacebase.o +%%DATADIR%%/lcl/units/i386-freebsd/interfacebase.ppu +%%DATADIR%%/lcl/units/i386-freebsd/intfgraphics.o +%%DATADIR%%/lcl/units/i386-freebsd/intfgraphics.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lazconfigstorage.o +%%DATADIR%%/lcl/units/i386-freebsd/lazconfigstorage.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lazhelphtml.o +%%DATADIR%%/lcl/units/i386-freebsd/lazhelphtml.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lazhelpintf.o +%%DATADIR%%/lcl/units/i386-freebsd/lazhelpintf.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lazlinkedlist.o +%%DATADIR%%/lcl/units/i386-freebsd/lazlinkedlist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclclasses.o +%%DATADIR%%/lcl/units/i386-freebsd/lclclasses.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclintf.o +%%DATADIR%%/lcl/units/i386-freebsd/lclintf.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclmemmanager.o +%%DATADIR%%/lcl/units/i386-freebsd/lclmemmanager.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclproc.o +%%DATADIR%%/lcl/units/i386-freebsd/lclproc.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclrescache.o +%%DATADIR%%/lcl/units/i386-freebsd/lclrescache.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclstrconsts.o +%%DATADIR%%/lcl/units/i386-freebsd/lclstrconsts.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lclstrconsts.rst +%%DATADIR%%/lcl/units/i386-freebsd/lcltype.o +%%DATADIR%%/lcl/units/i386-freebsd/lcltype.ppu +%%DATADIR%%/lcl/units/i386-freebsd/ldockctrl.o +%%DATADIR%%/lcl/units/i386-freebsd/ldockctrl.ppu +%%DATADIR%%/lcl/units/i386-freebsd/ldockctrledit.o +%%DATADIR%%/lcl/units/i386-freebsd/ldockctrledit.ppu +%%DATADIR%%/lcl/units/i386-freebsd/ldocktree.o +%%DATADIR%%/lcl/units/i386-freebsd/ldocktree.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lmessages.o +%%DATADIR%%/lcl/units/i386-freebsd/lmessages.ppu +%%DATADIR%%/lcl/units/i386-freebsd/lresources.o +%%DATADIR%%/lcl/units/i386-freebsd/lresources.ppu +%%DATADIR%%/lcl/units/i386-freebsd/maps.o +%%DATADIR%%/lcl/units/i386-freebsd/maps.ppu +%%DATADIR%%/lcl/units/i386-freebsd/maskedit.o +%%DATADIR%%/lcl/units/i386-freebsd/maskedit.ppu +%%DATADIR%%/lcl/units/i386-freebsd/menus.o +%%DATADIR%%/lcl/units/i386-freebsd/menus.ppu +%%DATADIR%%/lcl/units/i386-freebsd/messages.o +%%DATADIR%%/lcl/units/i386-freebsd/messages.ppu +%%DATADIR%%/lcl/units/i386-freebsd/pairsplitter.o +%%DATADIR%%/lcl/units/i386-freebsd/pairsplitter.ppu +%%DATADIR%%/lcl/units/i386-freebsd/postscriptcanvas.o +%%DATADIR%%/lcl/units/i386-freebsd/postscriptcanvas.ppu +%%DATADIR%%/lcl/units/i386-freebsd/postscriptprinter.o +%%DATADIR%%/lcl/units/i386-freebsd/postscriptprinter.ppu +%%DATADIR%%/lcl/units/i386-freebsd/printers.o +%%DATADIR%%/lcl/units/i386-freebsd/printers.ppu +%%DATADIR%%/lcl/units/i386-freebsd/propertystorage.o +%%DATADIR%%/lcl/units/i386-freebsd/propertystorage.ppu +%%DATADIR%%/lcl/units/i386-freebsd/spin.o +%%DATADIR%%/lcl/units/i386-freebsd/spin.ppu +%%DATADIR%%/lcl/units/i386-freebsd/stdactns.o +%%DATADIR%%/lcl/units/i386-freebsd/stdactns.ppu +%%DATADIR%%/lcl/units/i386-freebsd/stdctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/stdctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/stringhashlist.o +%%DATADIR%%/lcl/units/i386-freebsd/stringhashlist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/textstrings.o +%%DATADIR%%/lcl/units/i386-freebsd/textstrings.ppu +%%DATADIR%%/lcl/units/i386-freebsd/toolwin.o +%%DATADIR%%/lcl/units/i386-freebsd/toolwin.ppu +%%DATADIR%%/lcl/units/i386-freebsd/translations.o +%%DATADIR%%/lcl/units/i386-freebsd/translations.ppu +%%DATADIR%%/lcl/units/i386-freebsd/utrace.o +%%DATADIR%%/lcl/units/i386-freebsd/utrace.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsactnlist.o +%%DATADIR%%/lcl/units/i386-freebsd/wsactnlist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsarrow.o +%%DATADIR%%/lcl/units/i386-freebsd/wsarrow.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsbuttons.o +%%DATADIR%%/lcl/units/i386-freebsd/wsbuttons.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wscalendar.o +%%DATADIR%%/lcl/units/i386-freebsd/wscalendar.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsclistbox.o +%%DATADIR%%/lcl/units/i386-freebsd/wsclistbox.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wscomctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/wscomctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wscontrols.o +%%DATADIR%%/lcl/units/i386-freebsd/wscontrols.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wschecklst.o +%%DATADIR%%/lcl/units/i386-freebsd/wschecklst.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsdbctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/wsdbctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsdbgrids.o +%%DATADIR%%/lcl/units/i386-freebsd/wsdbgrids.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsdialogs.o +%%DATADIR%%/lcl/units/i386-freebsd/wsdialogs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsdirsel.o +%%DATADIR%%/lcl/units/i386-freebsd/wsdirsel.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wseditbtn.o +%%DATADIR%%/lcl/units/i386-freebsd/wseditbtn.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsextctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/wsextctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsextdlgs.o +%%DATADIR%%/lcl/units/i386-freebsd/wsextdlgs.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsfilectrl.o +%%DATADIR%%/lcl/units/i386-freebsd/wsfilectrl.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsforms.o +%%DATADIR%%/lcl/units/i386-freebsd/wsforms.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsgrids.o +%%DATADIR%%/lcl/units/i386-freebsd/wsgrids.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsimglist.o +%%DATADIR%%/lcl/units/i386-freebsd/wsimglist.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wslclclasses.o +%%DATADIR%%/lcl/units/i386-freebsd/wslclclasses.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsmaskedit.o +%%DATADIR%%/lcl/units/i386-freebsd/wsmaskedit.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsmenus.o +%%DATADIR%%/lcl/units/i386-freebsd/wsmenus.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wspairsplitter.o +%%DATADIR%%/lcl/units/i386-freebsd/wspairsplitter.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsproc.o +%%DATADIR%%/lcl/units/i386-freebsd/wsproc.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsspin.o +%%DATADIR%%/lcl/units/i386-freebsd/wsspin.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wsstdctrls.o +%%DATADIR%%/lcl/units/i386-freebsd/wsstdctrls.ppu +%%DATADIR%%/lcl/units/i386-freebsd/wstoolwin.o +%%DATADIR%%/lcl/units/i386-freebsd/wstoolwin.ppu +%%DATADIR%%/lcl/units/i386-freebsd/xmlpropstorage.o +%%DATADIR%%/lcl/units/i386-freebsd/xmlpropstorage.ppu +%%DATADIR%%/lcl/units/i386-freebsd/zstream.o +%%DATADIR%%/lcl/units/i386-freebsd/zstream.ppu +%%DATADIR%%/lcl/utrace.pp +%%DATADIR%%/lcl/widgetset/README +%%DATADIR%%/lcl/widgetset/wsactnlist.pp +%%DATADIR%%/lcl/widgetset/wsarrow.pp +%%DATADIR%%/lcl/widgetset/wsbuttons.pp +%%DATADIR%%/lcl/widgetset/wscalendar.pp +%%DATADIR%%/lcl/widgetset/wsclistbox.pp +%%DATADIR%%/lcl/widgetset/wscomctrls.pp +%%DATADIR%%/lcl/widgetset/wscontrols.pp +%%DATADIR%%/lcl/widgetset/wschecklst.pp +%%DATADIR%%/lcl/widgetset/wsdbctrls.pp +%%DATADIR%%/lcl/widgetset/wsdbgrids.pp +%%DATADIR%%/lcl/widgetset/wsdialogs.pp +%%DATADIR%%/lcl/widgetset/wsdirsel.pp +%%DATADIR%%/lcl/widgetset/wseditbtn.pp +%%DATADIR%%/lcl/widgetset/wsextctrls.pp +%%DATADIR%%/lcl/widgetset/wsextdlgs.pp +%%DATADIR%%/lcl/widgetset/wsfilectrl.pp +%%DATADIR%%/lcl/widgetset/wsforms.pp +%%DATADIR%%/lcl/widgetset/wsgrids.pp +%%DATADIR%%/lcl/widgetset/wsimglist.pp +%%DATADIR%%/lcl/widgetset/wslclclasses.pp +%%DATADIR%%/lcl/widgetset/wsmaskedit.pp +%%DATADIR%%/lcl/widgetset/wsmenus.pp +%%DATADIR%%/lcl/widgetset/wspairsplitter.pp +%%DATADIR%%/lcl/widgetset/wsproc.pp +%%DATADIR%%/lcl/widgetset/wsspin.pp +%%DATADIR%%/lcl/widgetset/wsstdctrls.pp +%%DATADIR%%/lcl/widgetset/wstoolwin.pp +%%DATADIR%%/lcl/xmlpropstorage.pas +%%DATADIR%%/lcl/zstream.pp +%%DATADIR%%/localize.sh +%%DATADIR%%/packager/Makefile +%%DATADIR%%/packager/Makefile.fpc +%%DATADIR%%/packager/addfiletoapackagedlg.lfm +%%DATADIR%%/packager/addfiletoapackagedlg.lrs +%%DATADIR%%/packager/addfiletoapackagedlg.pas +%%DATADIR%%/packager/addtopackagedlg.pas +%%DATADIR%%/packager/basepkgmanager.pas +%%DATADIR%%/packager/brokendependenciesdlg.pas +%%DATADIR%%/packager/globallinks/README +%%DATADIR%%/packager/globallinks/cgilaz-0.lpl +%%DATADIR%%/packager/globallinks/cgilazide-0.lpl +%%DATADIR%%/packager/globallinks/dbflaz-0.lpl +%%DATADIR%%/packager/globallinks/fpcunitide-0.lpl +%%DATADIR%%/packager/globallinks/fpcunittestrunner-0.lpl +%%DATADIR%%/packager/globallinks/gtk2interface-0.lpl +%%DATADIR%%/packager/globallinks/imagesforlazarus-0.lpl +%%DATADIR%%/packager/globallinks/interbaselaz-0.lpl +%%DATADIR%%/packager/globallinks/jpegforlazarus-0.lpl +%%DATADIR%%/packager/globallinks/lazcustomform-0.lpl +%%DATADIR%%/packager/globallinks/lazhtmllite-0.lpl +%%DATADIR%%/packager/globallinks/lazopenglcontext-0.lpl +%%DATADIR%%/packager/globallinks/macosfiles-0.lpl +%%DATADIR%%/packager/globallinks/memdslaz-0.lpl +%%DATADIR%%/packager/globallinks/mysql3laz-0.lpl +%%DATADIR%%/packager/globallinks/mysql4connlaz-0.lpl +%%DATADIR%%/packager/globallinks/mysql4laz-0.lpl +%%DATADIR%%/packager/globallinks/pqconnectionlaz-0.lpl +%%DATADIR%%/packager/globallinks/prettyformat-0.lpl +%%DATADIR%%/packager/globallinks/printer4lazarus-0.lpl +%%DATADIR%%/packager/globallinks/projtemplates-0.lpl +%%DATADIR%%/packager/globallinks/runtimetypeinfocontrols-0.lpl +%%DATADIR%%/packager/globallinks/rx-0.lpl +%%DATADIR%%/packager/globallinks/sdflaz-0.lpl +%%DATADIR%%/packager/globallinks/semaphorgridlpk-0.lpl +%%DATADIR%%/packager/globallinks/sqldblaz-0.lpl +%%DATADIR%%/packager/globallinks/sqlitedslaz-0.lpl +%%DATADIR%%/packager/globallinks/synuni-0.lpl +%%DATADIR%%/packager/globallinks/trayiconlaz-0.lpl +%%DATADIR%%/packager/globallinks/turbopoweripro-0.lpl +%%DATADIR%%/packager/installpkgsetdlg.lfm +%%DATADIR%%/packager/installpkgsetdlg.lrs +%%DATADIR%%/packager/installpkgsetdlg.pas +%%DATADIR%%/packager/openinstalledpkgdlg.pas +%%DATADIR%%/packager/packagedefs.pas +%%DATADIR%%/packager/packageeditor.pas +%%DATADIR%%/packager/packagelinks.pas +%%DATADIR%%/packager/packagesystem.pas +%%DATADIR%%/packager/pkggraphexplorer.lfm +%%DATADIR%%/packager/pkggraphexplorer.lrs +%%DATADIR%%/packager/pkggraphexplorer.pas +%%DATADIR%%/packager/pkgmanager.pas +%%DATADIR%%/packager/pkgoptionsdlg.pas +%%DATADIR%%/packager/pkgvirtualuniteditor.lfm +%%DATADIR%%/packager/pkgvirtualuniteditor.lrs +%%DATADIR%%/packager/pkgvirtualuniteditor.pas +%%DATADIR%%/packager/registerfcl.pas +%%DATADIR%%/packager/registerideintf.pas +%%DATADIR%%/packager/registerlcl.pas +%%DATADIR%%/packager/registersynedit.pas +%%DATADIR%%/packager/registration/Makefile +%%DATADIR%%/packager/registration/Makefile.fpc +%%DATADIR%%/packager/registration/README +%%DATADIR%%/packager/registration/lazaruspackageintf.pas +%%DATADIR%%/packager/ucomponentmanmain.lfm +%%DATADIR%%/packager/ucomponentmanmain.lrs +%%DATADIR%%/packager/ucomponentmanmain.pas +%%DATADIR%%/packager/ufrmaddcomponent.lfm +%%DATADIR%%/packager/ufrmaddcomponent.lrs +%%DATADIR%%/packager/ufrmaddcomponent.pas +%%DATADIR%%/packager/units/i386-freebsd/lazaruspackageintf.o +%%DATADIR%%/packager/units/i386-freebsd/lazaruspackageintf.ppu +%%DATADIR%%/startlazarus +%%DATADIR%%/tools/Makefile +%%DATADIR%%/tools/Makefile.fpc +%%DATADIR%%/tools/apiwizz/Makefile +%%DATADIR%%/tools/apiwizz/Makefile.fpc +%%DATADIR%%/tools/apiwizz/apiwizard.lfm +%%DATADIR%%/tools/apiwizz/apiwizard.lrs +%%DATADIR%%/tools/apiwizz/apiwizard.pp +%%DATADIR%%/tools/apiwizz/apiwizz.pp +%%DATADIR%%/tools/copy_po_files_to_lazarus_sources.sh +%%DATADIR%%/tools/cvs2cl.pl +%%DATADIR%%/tools/check_ide_libs.sh +%%DATADIR%%/tools/delete_non_cvs_files.pl +%%DATADIR%%/tools/find_non_cvs_files.pl +%%DATADIR%%/tools/getallmofiles.sh +%%DATADIR%%/tools/getallpofiles.sh +%%DATADIR%%/tools/install/README +%%DATADIR%%/tools/install/build_fpc-src_rpm.sh +%%DATADIR%%/tools/install/build_fpc_rpm.sh +%%DATADIR%%/tools/install/build_fpc_snaphot_rpm.sh +%%DATADIR%%/tools/install/create_clean_fpcsrc_directory.sh +%%DATADIR%%/tools/install/create_clean_lazarus_directory.sh +%%DATADIR%%/tools/install/create_fpc_deb.sh +%%DATADIR%%/tools/install/create_fpc_export_tgz.sh +%%DATADIR%%/tools/install/create_fpc_tgz_from_local_dir.sh +%%DATADIR%%/tools/install/create_lazarus_deb.sh +%%DATADIR%%/tools/install/create_lazarus_export_tgz.sh +%%DATADIR%%/tools/install/create_lazarus_rpm.sh +%%DATADIR%%/tools/install/create_lazarus_snapshot_rpm.sh +%%DATADIR%%/tools/install/create_lazarus_tgz_from_local_dir.sh +%%DATADIR%%/tools/install/cross_unix/HowToCreate_fpc_crosswin32_rpm.txt +%%DATADIR%%/tools/install/cross_unix/build_linux_cross_win32_rpm.sh +%%DATADIR%%/tools/install/cross_unix/update_cross_fpc.sh +%%DATADIR%%/tools/install/cvsexportlocal.pas +%%DATADIR%%/tools/install/debian_fpc-src/control +%%DATADIR%%/tools/install/debian_fpc-src/copyright +%%DATADIR%%/tools/install/debian_fpc-src/changelog +%%DATADIR%%/tools/install/debian_fpc-src/changelog.Debian +%%DATADIR%%/tools/install/debian_lazarus/control +%%DATADIR%%/tools/install/debian_lazarus/copyright +%%DATADIR%%/tools/install/debian_lazarus/changelog +%%DATADIR%%/tools/install/debian_lazarus/changelog.Debian +%%DATADIR%%/tools/install/do_nothing.sh +%%DATADIR%%/tools/install/download_and_build_fpc_rpm.sh +%%DATADIR%%/tools/install/file_filter.sh +%%DATADIR%%/tools/install/fpc-src.spec +%%DATADIR%%/tools/install/fpcsrc-patch +%%DATADIR%%/tools/install/get_lazarus_version.sh +%%DATADIR%%/tools/install/macosx/fpc-release.packproj.template +%%DATADIR%%/tools/install/macosx/fpc.packproj.template +%%DATADIR%%/tools/install/macosx/fpc_installer_info.zip +%%DATADIR%%/tools/install/macosx/fpcsrc-release.packproj.template +%%DATADIR%%/tools/install/macosx/fpcsrc.packproj.template +%%DATADIR%%/tools/install/macosx/lazarus.packproj.template +%%DATADIR%%/tools/install/macosx/makefpcsnapshot.sh +%%DATADIR%%/tools/install/macosx/makefpcsrcsnapshot.sh +%%DATADIR%%/tools/install/macosx/makelazsnapshot.sh +%%DATADIR%%/tools/install/replace_in_files.pl +%%DATADIR%%/tools/install/rpm/create_nonroot_rpmmacros.sh +%%DATADIR%%/tools/install/rpm/fpc.spec.template +%%DATADIR%%/tools/install/rpm/fpc_crosswin32.spec.template +%%DATADIR%%/tools/install/rpm/get_rpm_source_dir.sh +%%DATADIR%%/tools/install/rpm/lazarus.spec.template +%%DATADIR%%/tools/install/setup.sh +%%DATADIR%%/tools/install/smart_strip.sh +%%DATADIR%%/tools/install/win32/Finnish-5.1.0.isl +%%DATADIR%%/tools/install/win32/build-fpc.bat +%%DATADIR%%/tools/install/win32/build-lazarus.bat +%%DATADIR%%/tools/install/win32/create_installer.bat +%%DATADIR%%/tools/install/win32/create_snapshot_installer.bat +%%DATADIR%%/tools/install/win32/editoroptions.xml +%%DATADIR%%/tools/install/win32/environmentoptions.xml +%%DATADIR%%/tools/install/win32/lazarus.iss +%%DATADIR%%/tools/install/win32/lazarus_install_cheetah.bmp +%%DATADIR%%/tools/install/win32/lazarus_install_cheetah_small.bmp +%%DATADIR%%/tools/install/win32/readme.txt +%%DATADIR%%/tools/install/win32/samplecfg.vbs +%%DATADIR%%/tools/install/win32/samplefpc.cfg +%%DATADIR%%/tools/lazarusmake.ini +%%DATADIR%%/tools/lazres.lpi +%%DATADIR%%/tools/lazres.pp +%%DATADIR%%/tools/lfm_to_lrs.sh +%%DATADIR%%/tools/runwait.sh +%%DATADIR%%/tools/svn2revisioninc +%%DATADIR%%/tools/svn2revisioninc.lpi +%%DATADIR%%/tools/svn2revisioninc.o +%%DATADIR%%/tools/svn2revisioninc.pas +%%DATADIR%%/tools/updatepofiles.pas +%%DATADIR%%/units/i386-freebsd/aboutfrm.o +%%DATADIR%%/units/i386-freebsd/aboutfrm.ppu +%%DATADIR%%/units/i386-freebsd/addfiletoapackagedlg.o +%%DATADIR%%/units/i386-freebsd/addfiletoapackagedlg.ppu +%%DATADIR%%/units/i386-freebsd/addtopackagedlg.o +%%DATADIR%%/units/i386-freebsd/addtopackagedlg.ppu +%%DATADIR%%/units/i386-freebsd/addtoprojectdlg.o +%%DATADIR%%/units/i386-freebsd/addtoprojectdlg.ppu +%%DATADIR%%/units/i386-freebsd/aligncompsdlg.o +%%DATADIR%%/units/i386-freebsd/aligncompsdlg.ppu +%%DATADIR%%/units/i386-freebsd/anchoreditor.o +%%DATADIR%%/units/i386-freebsd/anchoreditor.ppu +%%DATADIR%%/units/i386-freebsd/basedebugmanager.o +%%DATADIR%%/units/i386-freebsd/basedebugmanager.ppu +%%DATADIR%%/units/i386-freebsd/basepkgmanager.o +%%DATADIR%%/units/i386-freebsd/basepkgmanager.ppu +%%DATADIR%%/units/i386-freebsd/breakpointsdlg.o +%%DATADIR%%/units/i386-freebsd/breakpointsdlg.ppu +%%DATADIR%%/units/i386-freebsd/brokendependenciesdlg.o +%%DATADIR%%/units/i386-freebsd/brokendependenciesdlg.ppu +%%DATADIR%%/units/i386-freebsd/buildfiledlg.o +%%DATADIR%%/units/i386-freebsd/buildfiledlg.ppu +%%DATADIR%%/units/i386-freebsd/buildlazdialog.o +%%DATADIR%%/units/i386-freebsd/buildlazdialog.ppu +%%DATADIR%%/units/i386-freebsd/callstackdlg.o +%%DATADIR%%/units/i386-freebsd/callstackdlg.ppu +%%DATADIR%%/units/i386-freebsd/cleandirdlg.o +%%DATADIR%%/units/i386-freebsd/cleandirdlg.ppu +%%DATADIR%%/units/i386-freebsd/clipboardhistory.o +%%DATADIR%%/units/i386-freebsd/clipboardhistory.ppu +%%DATADIR%%/units/i386-freebsd/cmdlinedebugger.o +%%DATADIR%%/units/i386-freebsd/cmdlinedebugger.ppu +%%DATADIR%%/units/i386-freebsd/codecontextform.o +%%DATADIR%%/units/i386-freebsd/codecontextform.ppu +%%DATADIR%%/units/i386-freebsd/codeexplopts.o +%%DATADIR%%/units/i386-freebsd/codeexplopts.ppu +%%DATADIR%%/units/i386-freebsd/codeexplorer.o +%%DATADIR%%/units/i386-freebsd/codeexplorer.ppu +%%DATADIR%%/units/i386-freebsd/codemacroprompt.o +%%DATADIR%%/units/i386-freebsd/codemacroprompt.ppu +%%DATADIR%%/units/i386-freebsd/codemacroselect.o +%%DATADIR%%/units/i386-freebsd/codemacroselect.ppu +%%DATADIR%%/units/i386-freebsd/codetemplatesdlg.o +%%DATADIR%%/units/i386-freebsd/codetemplatesdlg.ppu +%%DATADIR%%/units/i386-freebsd/codetoolsdefines.o +%%DATADIR%%/units/i386-freebsd/codetoolsdefines.ppu +%%DATADIR%%/units/i386-freebsd/codetoolsdefpreview.o +%%DATADIR%%/units/i386-freebsd/codetoolsdefpreview.ppu +%%DATADIR%%/units/i386-freebsd/codetoolsoptions.o +%%DATADIR%%/units/i386-freebsd/codetoolsoptions.ppu +%%DATADIR%%/units/i386-freebsd/compiler.o +%%DATADIR%%/units/i386-freebsd/compiler.ppu +%%DATADIR%%/units/i386-freebsd/compileroptions.o +%%DATADIR%%/units/i386-freebsd/compileroptions.ppu +%%DATADIR%%/units/i386-freebsd/compileroptionsdlg.o +%%DATADIR%%/units/i386-freebsd/compileroptionsdlg.ppu +%%DATADIR%%/units/i386-freebsd/componentpalette.o +%%DATADIR%%/units/i386-freebsd/componentpalette.ppu +%%DATADIR%%/units/i386-freebsd/condef.o +%%DATADIR%%/units/i386-freebsd/condef.ppu +%%DATADIR%%/units/i386-freebsd/controlselection.o +%%DATADIR%%/units/i386-freebsd/controlselection.ppu +%%DATADIR%%/units/i386-freebsd/customformeditor.o +%%DATADIR%%/units/i386-freebsd/customformeditor.ppu +%%DATADIR%%/units/i386-freebsd/changeclassdialog.o +%%DATADIR%%/units/i386-freebsd/changeclassdialog.ppu +%%DATADIR%%/units/i386-freebsd/charactermapdlg.o +%%DATADIR%%/units/i386-freebsd/charactermapdlg.ppu +%%DATADIR%%/units/i386-freebsd/checkcompileropts.o +%%DATADIR%%/units/i386-freebsd/checkcompileropts.ppu +%%DATADIR%%/units/i386-freebsd/checklfmdlg.o +%%DATADIR%%/units/i386-freebsd/checklfmdlg.ppu +%%DATADIR%%/units/i386-freebsd/dbgoutputform.o +%%DATADIR%%/units/i386-freebsd/dbgoutputform.ppu +%%DATADIR%%/units/i386-freebsd/dbgutils.o +%%DATADIR%%/units/i386-freebsd/dbgutils.ppu +%%DATADIR%%/units/i386-freebsd/debugger.o +%%DATADIR%%/units/i386-freebsd/debugger.ppu +%%DATADIR%%/units/i386-freebsd/debuggerdlg.o +%%DATADIR%%/units/i386-freebsd/debuggerdlg.ppu +%%DATADIR%%/units/i386-freebsd/debugmanager.o +%%DATADIR%%/units/i386-freebsd/debugmanager.ppu +%%DATADIR%%/units/i386-freebsd/debugoptionsfrm.o +%%DATADIR%%/units/i386-freebsd/debugoptionsfrm.ppu +%%DATADIR%%/units/i386-freebsd/delphiproject2laz.o +%%DATADIR%%/units/i386-freebsd/delphiproject2laz.ppu +%%DATADIR%%/units/i386-freebsd/delphiunit2laz.o +%%DATADIR%%/units/i386-freebsd/delphiunit2laz.ppu +%%DATADIR%%/units/i386-freebsd/designer.o +%%DATADIR%%/units/i386-freebsd/designer.ppu +%%DATADIR%%/units/i386-freebsd/designermenu.o +%%DATADIR%%/units/i386-freebsd/designermenu.ppu +%%DATADIR%%/units/i386-freebsd/designerprocs.o +%%DATADIR%%/units/i386-freebsd/designerprocs.ppu +%%DATADIR%%/units/i386-freebsd/dialogprocs.o +%%DATADIR%%/units/i386-freebsd/dialogprocs.ppu +%%DATADIR%%/units/i386-freebsd/diffdialog.o +%%DATADIR%%/units/i386-freebsd/diffdialog.ppu +%%DATADIR%%/units/i386-freebsd/diffpatch.o +%%DATADIR%%/units/i386-freebsd/diffpatch.ppu +%%DATADIR%%/units/i386-freebsd/diskdiffsdialog.o +%%DATADIR%%/units/i386-freebsd/diskdiffsdialog.ppu +%%DATADIR%%/units/i386-freebsd/editdefinetree.o +%%DATADIR%%/units/i386-freebsd/editdefinetree.ppu +%%DATADIR%%/units/i386-freebsd/editoroptions.o +%%DATADIR%%/units/i386-freebsd/editoroptions.ppu +%%DATADIR%%/units/i386-freebsd/encloseselectiondlg.o +%%DATADIR%%/units/i386-freebsd/encloseselectiondlg.ppu +%%DATADIR%%/units/i386-freebsd/environmentopts.o +%%DATADIR%%/units/i386-freebsd/environmentopts.ppu +%%DATADIR%%/units/i386-freebsd/evaluatedlg.o +%%DATADIR%%/units/i386-freebsd/evaluatedlg.ppu +%%DATADIR%%/units/i386-freebsd/extractprocdlg.o +%%DATADIR%%/units/i386-freebsd/extractprocdlg.ppu +%%DATADIR%%/units/i386-freebsd/exttooldialog.o +%%DATADIR%%/units/i386-freebsd/exttooldialog.ppu +%%DATADIR%%/units/i386-freebsd/exttooleditdlg.o +%%DATADIR%%/units/i386-freebsd/exttooleditdlg.ppu +%%DATADIR%%/units/i386-freebsd/filereferencelist.o +%%DATADIR%%/units/i386-freebsd/filereferencelist.ppu +%%DATADIR%%/units/i386-freebsd/findinfilesdlg.o +%%DATADIR%%/units/i386-freebsd/findinfilesdlg.ppu +%%DATADIR%%/units/i386-freebsd/findrenameidentifier.o +%%DATADIR%%/units/i386-freebsd/findrenameidentifier.ppu +%%DATADIR%%/units/i386-freebsd/findreplacedialog.o +%%DATADIR%%/units/i386-freebsd/findreplacedialog.ppu +%%DATADIR%%/units/i386-freebsd/formeditor.o +%%DATADIR%%/units/i386-freebsd/formeditor.ppu +%%DATADIR%%/units/i386-freebsd/frmsearch.o +%%DATADIR%%/units/i386-freebsd/frmsearch.ppu +%%DATADIR%%/units/i386-freebsd/gdbmidebugger.o +%%DATADIR%%/units/i386-freebsd/gdbmidebugger.ppu +%%DATADIR%%/units/i386-freebsd/gdbtypeinfo.o +%%DATADIR%%/units/i386-freebsd/gdbtypeinfo.ppu +%%DATADIR%%/units/i386-freebsd/helpfpcmessages.o +%%DATADIR%%/units/i386-freebsd/helpfpcmessages.ppu +%%DATADIR%%/units/i386-freebsd/helpmanager.o +%%DATADIR%%/units/i386-freebsd/helpmanager.ppu +%%DATADIR%%/units/i386-freebsd/helpoptions.o +%%DATADIR%%/units/i386-freebsd/helpoptions.ppu +%%DATADIR%%/units/i386-freebsd/idecontexthelpedit.o +%%DATADIR%%/units/i386-freebsd/idecontexthelpedit.ppu +%%DATADIR%%/units/i386-freebsd/idedefs.o +%%DATADIR%%/units/i386-freebsd/idedefs.ppu +%%DATADIR%%/units/i386-freebsd/ideoptiondefs.o +%%DATADIR%%/units/i386-freebsd/ideoptiondefs.ppu +%%DATADIR%%/units/i386-freebsd/ideprocs.o +%%DATADIR%%/units/i386-freebsd/ideprocs.ppu +%%DATADIR%%/units/i386-freebsd/ideprotocol.o +%%DATADIR%%/units/i386-freebsd/ideprotocol.ppu +%%DATADIR%%/units/i386-freebsd/idetranslations.o +%%DATADIR%%/units/i386-freebsd/idetranslations.ppu +%%DATADIR%%/units/i386-freebsd/idewindowhelp.o +%%DATADIR%%/units/i386-freebsd/idewindowhelp.ppu +%%DATADIR%%/units/i386-freebsd/imexportcompileropts.o +%%DATADIR%%/units/i386-freebsd/imexportcompileropts.ppu +%%DATADIR%%/units/i386-freebsd/initialsetupdlgs.o +%%DATADIR%%/units/i386-freebsd/initialsetupdlgs.ppu +%%DATADIR%%/units/i386-freebsd/inputfiledialog.o +%%DATADIR%%/units/i386-freebsd/inputfiledialog.ppu +%%DATADIR%%/units/i386-freebsd/inputhistory.o +%%DATADIR%%/units/i386-freebsd/inputhistory.ppu +%%DATADIR%%/units/i386-freebsd/installpkgsetdlg.o +%%DATADIR%%/units/i386-freebsd/installpkgsetdlg.ppu +%%DATADIR%%/units/i386-freebsd/invertassigntool.o +%%DATADIR%%/units/i386-freebsd/invertassigntool.ppu +%%DATADIR%%/units/i386-freebsd/jitforms.o +%%DATADIR%%/units/i386-freebsd/jitforms.ppu +%%DATADIR%%/units/i386-freebsd/keymapping.o +%%DATADIR%%/units/i386-freebsd/keymapping.ppu +%%DATADIR%%/units/i386-freebsd/keymapschemedlg.o +%%DATADIR%%/units/i386-freebsd/keymapschemedlg.ppu +%%DATADIR%%/units/i386-freebsd/lazarus.o +%%DATADIR%%/units/i386-freebsd/lazarusidestrconsts.o +%%DATADIR%%/units/i386-freebsd/lazarusidestrconsts.ppu +%%DATADIR%%/units/i386-freebsd/lazarusidestrconsts.rst +%%DATADIR%%/units/i386-freebsd/lazarusmanager.o +%%DATADIR%%/units/i386-freebsd/lazarusmanager.ppu +%%DATADIR%%/units/i386-freebsd/lazconf.o +%%DATADIR%%/units/i386-freebsd/lazconf.ppu +%%DATADIR%%/units/i386-freebsd/lazdocfrm.o +%%DATADIR%%/units/i386-freebsd/lazdocfrm.ppu +%%DATADIR%%/units/i386-freebsd/lazxmlforms.o +%%DATADIR%%/units/i386-freebsd/lazxmlforms.ppu +%%DATADIR%%/units/i386-freebsd/localsdlg.o +%%DATADIR%%/units/i386-freebsd/localsdlg.ppu +%%DATADIR%%/units/i386-freebsd/macropromptdlg.o +%%DATADIR%%/units/i386-freebsd/macropromptdlg.ppu +%%DATADIR%%/units/i386-freebsd/main.o +%%DATADIR%%/units/i386-freebsd/main.ppu +%%DATADIR%%/units/i386-freebsd/mainbar.o +%%DATADIR%%/units/i386-freebsd/mainbar.ppu +%%DATADIR%%/units/i386-freebsd/mainbase.o +%%DATADIR%%/units/i386-freebsd/mainbase.ppu +%%DATADIR%%/units/i386-freebsd/mainintf.o +%%DATADIR%%/units/i386-freebsd/mainintf.ppu +%%DATADIR%%/units/i386-freebsd/makeresstrdlg.o +%%DATADIR%%/units/i386-freebsd/makeresstrdlg.ppu +%%DATADIR%%/units/i386-freebsd/menueditorform.o +%%DATADIR%%/units/i386-freebsd/menueditorform.ppu +%%DATADIR%%/units/i386-freebsd/miscoptions.o +%%DATADIR%%/units/i386-freebsd/miscoptions.ppu +%%DATADIR%%/units/i386-freebsd/mpaslex.o +%%DATADIR%%/units/i386-freebsd/mpaslex.ppu +%%DATADIR%%/units/i386-freebsd/msgquickfixes.o +%%DATADIR%%/units/i386-freebsd/msgquickfixes.ppu +%%DATADIR%%/units/i386-freebsd/msgview.o +%%DATADIR%%/units/i386-freebsd/msgview.ppu +%%DATADIR%%/units/i386-freebsd/newdialog.o +%%DATADIR%%/units/i386-freebsd/newdialog.ppu +%%DATADIR%%/units/i386-freebsd/newprojectdlg.o +%%DATADIR%%/units/i386-freebsd/newprojectdlg.ppu +%%DATADIR%%/units/i386-freebsd/noncontroldesigner.o +%%DATADIR%%/units/i386-freebsd/noncontroldesigner.ppu +%%DATADIR%%/units/i386-freebsd/objectlists.o +%%DATADIR%%/units/i386-freebsd/objectlists.ppu +%%DATADIR%%/units/i386-freebsd/objinspext.o +%%DATADIR%%/units/i386-freebsd/objinspext.ppu +%%DATADIR%%/units/i386-freebsd/openinstalledpkgdlg.o +%%DATADIR%%/units/i386-freebsd/openinstalledpkgdlg.ppu +%%DATADIR%%/units/i386-freebsd/outputfilter.o +%%DATADIR%%/units/i386-freebsd/outputfilter.ppu +%%DATADIR%%/units/i386-freebsd/packagedefs.o +%%DATADIR%%/units/i386-freebsd/packagedefs.ppu +%%DATADIR%%/units/i386-freebsd/packageeditor.o +%%DATADIR%%/units/i386-freebsd/packageeditor.ppu +%%DATADIR%%/units/i386-freebsd/packagelinks.o +%%DATADIR%%/units/i386-freebsd/packagelinks.ppu +%%DATADIR%%/units/i386-freebsd/packagesystem.o +%%DATADIR%%/units/i386-freebsd/packagesystem.ppu +%%DATADIR%%/units/i386-freebsd/patheditordlg.o +%%DATADIR%%/units/i386-freebsd/patheditordlg.ppu +%%DATADIR%%/units/i386-freebsd/pkggraphexplorer.o +%%DATADIR%%/units/i386-freebsd/pkggraphexplorer.ppu +%%DATADIR%%/units/i386-freebsd/pkgmanager.o +%%DATADIR%%/units/i386-freebsd/pkgmanager.ppu +%%DATADIR%%/units/i386-freebsd/pkgoptionsdlg.o +%%DATADIR%%/units/i386-freebsd/pkgoptionsdlg.ppu +%%DATADIR%%/units/i386-freebsd/pkgvirtualuniteditor.o +%%DATADIR%%/units/i386-freebsd/pkgvirtualuniteditor.ppu +%%DATADIR%%/units/i386-freebsd/processdebugger.o +%%DATADIR%%/units/i386-freebsd/processdebugger.ppu +%%DATADIR%%/units/i386-freebsd/processlist.o +%%DATADIR%%/units/i386-freebsd/processlist.ppu +%%DATADIR%%/units/i386-freebsd/progressdlg.o +%%DATADIR%%/units/i386-freebsd/progressdlg.ppu +%%DATADIR%%/units/i386-freebsd/project.o +%%DATADIR%%/units/i386-freebsd/project.ppu +%%DATADIR%%/units/i386-freebsd/projectdefs.o +%%DATADIR%%/units/i386-freebsd/projectdefs.ppu +%%DATADIR%%/units/i386-freebsd/projectinspector.o +%%DATADIR%%/units/i386-freebsd/projectinspector.ppu +%%DATADIR%%/units/i386-freebsd/projectopts.o +%%DATADIR%%/units/i386-freebsd/projectopts.ppu +%%DATADIR%%/units/i386-freebsd/publishmodule.o +%%DATADIR%%/units/i386-freebsd/publishmodule.ppu +%%DATADIR%%/units/i386-freebsd/publishprojectdlg.o +%%DATADIR%%/units/i386-freebsd/publishprojectdlg.ppu +%%DATADIR%%/units/i386-freebsd/registerfcl.o +%%DATADIR%%/units/i386-freebsd/registerfcl.ppu +%%DATADIR%%/units/i386-freebsd/registerideintf.o +%%DATADIR%%/units/i386-freebsd/registerideintf.ppu +%%DATADIR%%/units/i386-freebsd/registerlcl.o +%%DATADIR%%/units/i386-freebsd/registerlcl.ppu +%%DATADIR%%/units/i386-freebsd/registersynedit.o +%%DATADIR%%/units/i386-freebsd/registersynedit.ppu +%%DATADIR%%/units/i386-freebsd/runparamsopts.o +%%DATADIR%%/units/i386-freebsd/runparamsopts.ppu +%%DATADIR%%/units/i386-freebsd/scalecompsdlg.o +%%DATADIR%%/units/i386-freebsd/scalecompsdlg.ppu +%%DATADIR%%/units/i386-freebsd/searchresultview.o +%%DATADIR%%/units/i386-freebsd/searchresultview.ppu +%%DATADIR%%/units/i386-freebsd/showcompileropts.o +%%DATADIR%%/units/i386-freebsd/showcompileropts.ppu +%%DATADIR%%/units/i386-freebsd/sizecompsdlg.o +%%DATADIR%%/units/i386-freebsd/sizecompsdlg.ppu +%%DATADIR%%/units/i386-freebsd/sortselectiondlg.o +%%DATADIR%%/units/i386-freebsd/sortselectiondlg.ppu +%%DATADIR%%/units/i386-freebsd/sourceeditprocs.o +%%DATADIR%%/units/i386-freebsd/sourceeditprocs.ppu +%%DATADIR%%/units/i386-freebsd/sourcemarks.o +%%DATADIR%%/units/i386-freebsd/sourcemarks.ppu +%%DATADIR%%/units/i386-freebsd/splash.o +%%DATADIR%%/units/i386-freebsd/splash.ppu +%%DATADIR%%/units/i386-freebsd/sshgdbmidebugger.o +%%DATADIR%%/units/i386-freebsd/sshgdbmidebugger.ppu +%%DATADIR%%/units/i386-freebsd/startlazarus.o +%%DATADIR%%/units/i386-freebsd/startlazopts.o +%%DATADIR%%/units/i386-freebsd/startlazopts.ppu +%%DATADIR%%/units/i386-freebsd/sysvaruseroverridedlg.o +%%DATADIR%%/units/i386-freebsd/sysvaruseroverridedlg.ppu +%%DATADIR%%/units/i386-freebsd/taborderdlg.o +%%DATADIR%%/units/i386-freebsd/taborderdlg.ppu +%%DATADIR%%/units/i386-freebsd/todolist.o +%%DATADIR%%/units/i386-freebsd/todolist.ppu +%%DATADIR%%/units/i386-freebsd/transfermacros.o +%%DATADIR%%/units/i386-freebsd/transfermacros.ppu +%%DATADIR%%/units/i386-freebsd/ucomponentmanmain.o +%%DATADIR%%/units/i386-freebsd/ucomponentmanmain.ppu +%%DATADIR%%/units/i386-freebsd/ufrmaddcomponent.o +%%DATADIR%%/units/i386-freebsd/ufrmaddcomponent.ppu +%%DATADIR%%/units/i386-freebsd/unitdependencies.o +%%DATADIR%%/units/i386-freebsd/unitdependencies.ppu +%%DATADIR%%/units/i386-freebsd/uniteditor.o +%%DATADIR%%/units/i386-freebsd/uniteditor.ppu +%%DATADIR%%/units/i386-freebsd/unitinfodlg.o +%%DATADIR%%/units/i386-freebsd/unitinfodlg.ppu +%%DATADIR%%/units/i386-freebsd/viewunit_dlg.o +%%DATADIR%%/units/i386-freebsd/viewunit_dlg.ppu +%%DATADIR%%/units/i386-freebsd/watchesdlg.o +%%DATADIR%%/units/i386-freebsd/watchesdlg.ppu +%%DATADIR%%/units/i386-freebsd/watchpropertydlg.o +%%DATADIR%%/units/i386-freebsd/watchpropertydlg.ppu +%%DATADIR%%/units/i386-freebsd/wordcompletion.o +%%DATADIR%%/units/i386-freebsd/wordcompletion.ppu +@dirrm %%DATADIR%%/components/cgi/ide/lib +@dirrm %%DATADIR%%/components/cgi/ide +@dirrm %%DATADIR%%/components/cgi/lib +@dirrm %%DATADIR%%/components/cgi +@dirrm %%DATADIR%%/components/chmhelp/packages/chm +@dirrm %%DATADIR%%/components/chmhelp/packages/help +@dirrm %%DATADIR%%/components/chmhelp/packages/idehelp +@dirrm %%DATADIR%%/components/chmhelp/packages +@dirrm %%DATADIR%%/components/chmhelp/lhelp +@dirrm %%DATADIR%%/components/chmhelp/democontrol +@dirrm %%DATADIR%%/components/chmhelp +@dirrm %%DATADIR%%/components/codetools/languages +@dirrm %%DATADIR%%/components/codetools/examples/scanexamples/include +@dirrm %%DATADIR%%/components/codetools/examples/scanexamples +@dirrm %%DATADIR%%/components/codetools/examples +@dirrm %%DATADIR%%/components/codetools/units/i386-freebsd +@dirrm %%DATADIR%%/components/codetools/units +@dirrm %%DATADIR%%/components/codetools +@dirrm %%DATADIR%%/components/custom +@dirrm %%DATADIR%%/components/customform/demo +@dirrm %%DATADIR%%/components/customform/lib +@dirrm %%DATADIR%%/components/customform +@dirrm %%DATADIR%%/components/fpcunit/ide/lib +@dirrm %%DATADIR%%/components/fpcunit/ide +@dirrm %%DATADIR%%/components/fpcunit/lib +@dirrm %%DATADIR%%/components/fpcunit +@dirrm %%DATADIR%%/components/images/examples +@dirrm %%DATADIR%%/components/images +@dirrm %%DATADIR%%/components/interbase/lib +@dirrm %%DATADIR%%/components/interbase +@dirrm %%DATADIR%%/components/jpeg/examples +@dirrm %%DATADIR%%/components/jpeg +@dirrm %%DATADIR%%/components/macfiles/examples +@dirrm %%DATADIR%%/components/macfiles +@dirrm %%DATADIR%%/components/memds/lib +@dirrm %%DATADIR%%/components/memds +@dirrm %%DATADIR%%/components/mpaslex +@dirrm %%DATADIR%%/components/opengl/example +@dirrm %%DATADIR%%/components/opengl/gtk2x11/scripts +@dirrm %%DATADIR%%/components/opengl/gtk2x11/include +@dirrm %%DATADIR%%/components/opengl/gtk2x11 +@dirrm %%DATADIR%%/components/opengl +@dirrm %%DATADIR%%/components/prettyformat/lib +@dirrm %%DATADIR%%/components/prettyformat +@dirrm %%DATADIR%%/components/printers/sample +@dirrm %%DATADIR%%/components/printers/unix +@dirrm %%DATADIR%%/components/printers/lib +@dirrm %%DATADIR%%/components/printers/win32 +@dirrm %%DATADIR%%/components/printers +@dirrm %%DATADIR%%/components/projecttemplates/lib +@dirrm %%DATADIR%%/components/projecttemplates +@dirrm %%DATADIR%%/components/rtticontrols/examples +@dirrm %%DATADIR%%/components/rtticontrols/lib +@dirrm %%DATADIR%%/components/rtticontrols +@dirrm %%DATADIR%%/components/rx/lib +@dirrm %%DATADIR%%/components/rx +@dirrm %%DATADIR%%/components/sdf +@dirrm %%DATADIR%%/components/sqldb/lib +@dirrm %%DATADIR%%/components/sqldb +@dirrm %%DATADIR%%/components/sqlite/lib +@dirrm %%DATADIR%%/components/sqlite +@dirrm %%DATADIR%%/components/synedit/languages +@dirrm %%DATADIR%%/components/synedit/design +@dirrm %%DATADIR%%/components/synedit/units/i386-freebsd +@dirrm %%DATADIR%%/components/synedit/units +@dirrm %%DATADIR%%/components/synedit +@dirrm %%DATADIR%%/components/synunihighlighter/lib +@dirrm %%DATADIR%%/components/synunihighlighter +@dirrm %%DATADIR%%/components/tdbf +@dirrm %%DATADIR%%/components/trayicon/examples +@dirrm %%DATADIR%%/components/trayicon +@dirrm %%DATADIR%%/components/turbopower_ipro +@dirrm %%DATADIR%%/components +@dirrm %%DATADIR%%/converter +@dirrm %%DATADIR%%/debugger/test/examples +@dirrm %%DATADIR%%/debugger/test +@dirrm %%DATADIR%%/debugger/windebug/test +@dirrm %%DATADIR%%/debugger/windebug/fpwd +@dirrm %%DATADIR%%/debugger/windebug +@dirrm %%DATADIR%%/debugger +@dirrm %%DATADIR%%/designer/jitform/units/i386-freebsd +@dirrm %%DATADIR%%/designer/jitform/units +@dirrm %%DATADIR%%/designer/jitform +@dirrm %%DATADIR%%/designer +@dirrm %%DATADIR%%/doceditor/images +@dirrm %%DATADIR%%/doceditor/units +@dirrm %%DATADIR%%/doceditor +@dirrm %%DATADIR%%/docs/html +@dirrm %%DATADIR%%/docs/images +@dirrm %%DATADIR%%/docs/xml/lcl/interfaces/gtk +@dirrm %%DATADIR%%/docs/xml/lcl/interfaces +@dirrm %%DATADIR%%/docs/xml/lcl/comctrls +@dirrm %%DATADIR%%/docs/xml/lcl/stdctrls +@dirrm %%DATADIR%%/docs/xml/lcl/dynamicarray +@dirrm %%DATADIR%%/docs/xml/lcl +@dirrm %%DATADIR%%/docs/xml +@dirrm %%DATADIR%%/docs +@dirrm %%DATADIR%%/examples/address_book +@dirrm %%DATADIR%%/examples/anchordocking +@dirrm %%DATADIR%%/examples/autosize/childsizinglayout +@dirrm %%DATADIR%%/examples/autosize +@dirrm %%DATADIR%%/examples/barchart +@dirrm %%DATADIR%%/examples/codepageconverter/languages +@dirrm %%DATADIR%%/examples/codepageconverter/filefind +@dirrm %%DATADIR%%/examples/codepageconverter +@dirrm %%DATADIR%%/examples/codetools/jumptoimplementation/lib +@dirrm %%DATADIR%%/examples/codetools/jumptoimplementation +@dirrm %%DATADIR%%/examples/codetools +@dirrm %%DATADIR%%/examples/componentstreaming +@dirrm %%DATADIR%%/examples/easter +@dirrm %%DATADIR%%/examples/exploremenu +@dirrm %%DATADIR%%/examples/fontenum +@dirrm %%DATADIR%%/examples/grid_semaphor/example +@dirrm %%DATADIR%%/examples/grid_semaphor +@dirrm %%DATADIR%%/examples/help +@dirrm %%DATADIR%%/examples/helphtml/html +@dirrm %%DATADIR%%/examples/helphtml +@dirrm %%DATADIR%%/examples/idequickfix +@dirrm %%DATADIR%%/examples/imgviewer +@dirrm %%DATADIR%%/examples/lazintfimage +@dirrm %%DATADIR%%/examples/listview +@dirrm %%DATADIR%%/examples/multithreading +@dirrm %%DATADIR%%/examples/objectinspector +@dirrm %%DATADIR%%/examples/openbrowser +@dirrm %%DATADIR%%/examples/openglcontrol/data +@dirrm %%DATADIR%%/examples/openglcontrol +@dirrm %%DATADIR%%/examples/postscript +@dirrm %%DATADIR%%/examples/sprites +@dirrm %%DATADIR%%/examples/treeview +@dirrm %%DATADIR%%/examples/turbopower_ipro +@dirrm %%DATADIR%%/examples/xmlstreaming +@dirrm %%DATADIR%%/examples +@dirrm %%DATADIR%%/ide/include/solaris +@dirrm %%DATADIR%%/ide/include/darwin +@dirrm %%DATADIR%%/ide/include/freebsd +@dirrm %%DATADIR%%/ide/include/netbsd +@dirrm %%DATADIR%%/ide/include/linux +@dirrm %%DATADIR%%/ide/include/unix +@dirrm %%DATADIR%%/ide/include/win32 +@dirrm %%DATADIR%%/ide/include +@dirrm %%DATADIR%%/ide +@dirrm %%DATADIR%%/ideintf/units/i386-freebsd +@dirrm %%DATADIR%%/ideintf/units +@dirrm %%DATADIR%%/ideintf +@dirrm %%DATADIR%%/images/22x22 +@dirrm %%DATADIR%%/images/codeexplorer +@dirrm %%DATADIR%%/images/codetoolsdefines +@dirrm %%DATADIR%%/images/components +@dirrm %%DATADIR%%/images/designer +@dirrm %%DATADIR%%/images/menu +@dirrm %%DATADIR%%/images/sourceeditor +@dirrm %%DATADIR%%/images/unitdependencies +@dirrm %%DATADIR%%/images +@dirrm %%DATADIR%%/install +@dirrm %%DATADIR%%/languages +@dirrm %%DATADIR%%/lcl/forms +@dirrm %%DATADIR%%/lcl/images +@dirrm %%DATADIR%%/lcl/include +@dirrm %%DATADIR%%/lcl/interfaces/carbon +@dirrm %%DATADIR%%/lcl/interfaces/gtk2 +@dirrm %%DATADIR%%/lcl/interfaces/qt +@dirrm %%DATADIR%%/lcl/interfaces/gnome +@dirrm %%DATADIR%%/lcl/interfaces/wince +@dirrm %%DATADIR%%/lcl/interfaces/gtk/tests +@dirrm %%DATADIR%%/lcl/interfaces/gtk +@dirrm %%DATADIR%%/lcl/interfaces/win32 +@dirrm %%DATADIR%%/lcl/interfaces +@dirrm %%DATADIR%%/lcl/languages +@dirrm %%DATADIR%%/lcl/nonwin32 +@dirrm %%DATADIR%%/lcl/templates +@dirrm %%DATADIR%%/lcl/tests +@dirrm %%DATADIR%%/lcl/units/i386-freebsd/gtk +@dirrm %%DATADIR%%/lcl/units/i386-freebsd +@dirrm %%DATADIR%%/lcl/units +@dirrm %%DATADIR%%/lcl/widgetset +@dirrm %%DATADIR%%/lcl +@dirrm %%DATADIR%%/packager/globallinks +@dirrm %%DATADIR%%/packager/registration +@dirrm %%DATADIR%%/packager/units/i386-freebsd +@dirrm %%DATADIR%%/packager/units +@dirrm %%DATADIR%%/packager +@dirrm %%DATADIR%%/tools/apiwizz +@dirrm %%DATADIR%%/tools/install/debian_lazarus +@dirrm %%DATADIR%%/tools/install/macosx +@dirrm %%DATADIR%%/tools/install/debian_fpc-src +@dirrm %%DATADIR%%/tools/install/rpm +@dirrm %%DATADIR%%/tools/install/cross_unix +@dirrm %%DATADIR%%/tools/install/win32 +@dirrm %%DATADIR%%/tools/install +@dirrm %%DATADIR%%/tools +@dirrm %%DATADIR%%/units/i386-freebsd +@dirrm %%DATADIR%%/units +@dirrm %%DATADIR%% |