aboutsummaryrefslogtreecommitdiff
path: root/lang/fpc-devel
diff options
context:
space:
mode:
authorJose Alonso Cardenas Marquez <acm@FreeBSD.org>2023-10-28 22:54:03 +0000
committerJose Alonso Cardenas Marquez <acm@FreeBSD.org>2023-10-28 22:54:03 +0000
commitdb9286bab5ad2d84ea3e7daeeb05ddf8f100c596 (patch)
treee376c6c08df4da8919d27db9aae4e56773e85d44 /lang/fpc-devel
parent06eee289d926958aa7f210246fc86ae8a1708ac5 (diff)
downloadports-db9286bab5ad2d84ea3e7daeeb05ddf8f100c596.tar.gz
ports-db9286bab5ad2d84ea3e7daeeb05ddf8f100c596.zip
lang/fpc-devel: New port: Free Pascal compiler with Turbo and Delphi (devel)
Free Pascal is a mature, versatile, open source Pascal compiler. It can target many processor architectures: Intel x86 (16 and 32 bit), AMD64/x86-64, PowerPC, PowerPC64, SPARC, SPARC64, ARM, AArch64, MIPS, Motorola 68k, AVR, and the JVM. Supported operating systems include Windows (16/32/64 bit, CE, and native NT), Linux, Mac OS X/iOS/iPhoneSimulator/Darwin, FreeBSD and other BSD flavors, DOS (16 bit, or 32 bit DPMI), OS/2, AIX, Android, Haiku, Nintendo GBA/DS/Wii, AmigaOS, MorphOS, AROS, Atari TOS, and various embedded platforms. Additionally, support for RISC-V (32/64), Xtensa, and Z80 architectures, and for the LLVM compiler infrastructure is available in the development version. Additionally, the Free Pascal team maintains a transpiler for pascal to Javascript called pas2js.
Diffstat (limited to 'lang/fpc-devel')
-rw-r--r--lang/fpc-devel/Makefile183
-rw-r--r--lang/fpc-devel/distinfo9
-rw-r--r--lang/fpc-devel/files/patch-compiler-systems_t__bsd.pas22
-rw-r--r--lang/fpc-devel/files/patch-compiler-utils_samplecfg13
-rw-r--r--lang/fpc-devel/files/patch-compiler_globals.pas32
-rw-r--r--lang/fpc-devel/files/patch-packages-dts-src-dts.pas97
-rw-r--r--lang/fpc-devel/files/patch-packages-libnettle-src_libnettle.pp11
-rw-r--r--lang/fpc-devel/files/patch-packages-opencl-src_cl.pp11
-rw-r--r--lang/fpc-devel/files/patch-packages_libvlc_fpmake.pp13
-rw-r--r--lang/fpc-devel/files/pkg-message.in21
-rw-r--r--lang/fpc-devel/pkg-descr12
-rw-r--r--lang/fpc-devel/pkg-plist3403
12 files changed, 3827 insertions, 0 deletions
diff --git a/lang/fpc-devel/Makefile b/lang/fpc-devel/Makefile
new file mode 100644
index 000000000000..6c2dd658e87f
--- /dev/null
+++ b/lang/fpc-devel/Makefile
@@ -0,0 +1,183 @@
+PORTNAME= fpc
+PORTVERSION= 3.3.1.20231027
+PORTREVISION= 0
+CATEGORIES= lang
+MASTER_SITES= LOCAL/acm/freepascal/:bootstrap \
+ LOCAL/acm/freepascal/:man
+PKGNAMESUFFIX= -devel
+DIST_SUBDIR= freepascal
+
+MAINTAINER= acm@FreeBSD.org
+COMMENT= Free Pascal compiler with Turbo and Delphi (devel)
+WWW= https://www.freepascal.org/
+
+CONFLICTS= fpc
+
+RUN_DEPENDS= ${LOCALBASE}/bin/as:devel/binutils
+
+ONLY_FOR_ARCHS= amd64 i386
+
+USES+= gmake iconv
+USE_BINUTILS= yes
+BOOTVER= 3.2.2
+FPCBASEVER= 3.3.1
+MANVER= 3.0.4
+
+FPC_LDPATH?= "${LOCALBASE}/bin/ld.bfd"
+
+USE_GITLAB= yes
+GL_SITE= https://gitlab.com/freepascal.org
+GL_ACCOUNT= fpc
+GL_PROJECT= source
+GL_COMMIT= 55e72fc0f1505c75f60af706736d32ceca9815a4
+
+FPCSRCDIR= source-${GL_COMMIT}
+
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "i386"
+PPNAME= ppc386
+FPC_ARCH= i386
+PLIST_SUB+= FPC_I386="" \
+ FPC_AMD64="@comment "
+.elif ${ARCH} == "amd64"
+PPNAME= ppcx64
+FPC_ARCH= x86_64
+PLIST_SUB+= FPC_I386="@comment " \
+ FPC_AMD64=""
+.endif
+
+.if ${OPSYS} == FreeBSD
+PLIST_SUB+= FREEBSD=""
+.else
+PLIST_SUB+= FREEBSD="@comment "
+.endif
+
+SUB_FILES= pkg-message
+
+BUILDNAME= ${FPC_ARCH}-${OPSYS:tl}
+PLIST_SUB+= PORTVERSION=${FPCBASEVER} \
+ BUILDNAME=${BUILDNAME}
+DISTFILES+= ${BOOTDIR}.tar.gz:${OPSYS:MDragonFly}bootstrap \
+ fpc-${MANVER}.man.tar.gz:man
+NEWFPCMAKE= ${WRKDIR}/${FPCSRCDIR}/utils/fpcm/bin/${BUILDNAME}/fpcmake
+MAKE_ARGS+= FPCMAKE=${NEWFPCMAKE} \
+ FPCTARGET=${BUILDNAME} \
+ ARCH=${FPC_ARCH} \
+ OPT="${OPT}" \
+ BSDHIER=1 \
+ INSTALL="${INSTALL_DATA}" \
+ INSTALLEXE="${INSTALL_PROGRAM}" \
+ INSTALLSCR="${INSTALL_SCRIPT}" \
+ INSTALL_PREFIX=${STAGEDIR}${PREFIX} \
+ FPC_LDPATH=${FPC_LDPATH}
+NEWPPC= PP=${WRKSRC}/compiler/${PPNAME}
+NEWFPC= FPC=${WRKSRC}/compiler/${PPNAME}
+BOOTDIR= ${PPNAME}-${BOOTVER}-${OPSYS:tl}
+BOOTPPC= PP=${WRKDIR}/${BOOTDIR}
+
+do-extract:
+# unpack binary distribution
+ @${MKDIR} ${WRKDIR}
+ @${TAR} -xzf ${_DISTDIR}/${BOOTDIR}.tar.gz \
+ --directory ${WRKDIR} && ${CHMOD} +x ${WRKDIR}/${BOOTDIR}
+# unpack man files
+ @${TAR} -xzf ${_DISTDIR}/fpc-${MANVER}.man.tar.gz --directory ${WRKDIR}
+# unpack source distribution
+ @(cd ${WRKDIR} && ${GZIP_CMD} -dc \
+ ${_DISTDIR}/${PORTNAME}-source-${GL_COMMIT}_GL0${EXTRACT_SUFX} | \
+ ${TAR} -xf -)
+
+post-patch:
+.if ${OPSYS} == FreeBSD
+ @${REINPLACE_CMD} -i "" -e 's|900044|${OSVERSION}|g' \
+ -e 's|1201000|${OSVERSION}|g' \
+ -e 's|1200000|${OSVERSION}|g' \
+ ${WRKSRC}/rtl/freebsd/${FPC_ARCH}/*.as \
+ ${WRKSRC}/rtl/freebsd/${FPC_ARCH}/*.inc
+.else
+ @${REINPLACE_CMD} -i "" -e 's|400000|${DFLYVERSION}|g' \
+ ${WRKSRC}/rtl/dragonfly/${FPC_ARCH}/*.as
+.endif
+.if empty(ICONV_LIB)
+ @${REINPLACE_CMD} -i "" -e "s|s<>'c'|(s<>'c') and (s<>'iconv')|" \
+ -e "s|%%FPC_LDPATH%%|${FPC_LDPATH}|g" \
+ ${WRKDIR}/${FPCSRCDIR}/compiler/systems/t_bsd.pas
+ @${REINPLACE_CMD} -i "" -e 's|defined(bsd) and not ||' \
+ ${WRKDIR}/${FPCSRCDIR}/rtl/unix/cwstring.pp
+.endif
+ @${REINPLACE_CMD} -i "" -e '/samplecfg/ {s/INSTALLEXE/INSTALLSCR/;}' \
+ ${WRKDIR}/${FPCSRCDIR}/compiler/Makefile
+ @${REINPLACE_CMD} -i "" -e 's|/usr/local|${PREFIX}|g' \
+ ${WRKDIR}/${FPCSRCDIR}/packages/fpmkunit/src/fpmkunit.pp
+
+# enable units
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/a52/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/dts/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|freebsd,||g' \
+ ${WRKSRC}/packages/fpgtk/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|iphonesim|freebsd,iphonesim|g' \
+ ${WRKSRC}/packages/gnome1/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|iphonesim|freebsd,iphonesim|g' \
+ ${WRKSRC}/packages/gtk1/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|iphonesim|freebsd,iphonesim|g' \
+ ${WRKSRC}/packages/imlib/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/ldap/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/libnettle/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/libsee/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/lua/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/mad/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/modplug/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/newt/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/oggvorbis/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/openal/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/opencl/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/proj4/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|os2|freebsd,os2|g' \
+ ${WRKSRC}/packages/rexx/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/wasmedge/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/wasmtime/fpmake.pp
+ @${REINPLACE_CMD} -i "" -e 's|linux|freebsd,linux|g' \
+ ${WRKSRC}/packages/zorba/fpmake.pp
+
+do-build:
+# build fpc compiler
+ @${ECHO_MSG} "##### STARTING COMPILER AND UNITS #####"
+ (cd ${WRKDIR}/${FPCSRCDIR} && ${SETENV} ${MAKE_ENV} \
+ ${MAKE_CMD} all ${MAKE_ARGS} ${BOOTPPC})
+ @${ECHO_MSG} "##### COMPLETE COMPILER AND UNITS #####"
+
+do-install:
+ # Installing fpc compiler
+ (cd ${WRKDIR}/${FPCSRCDIR} && ${SETENV} ${MAKE_ENV} \
+ ${MAKE_CMD} install ${MAKE_ARGS} ${BOOTPPC})
+
+ # Installing manpages
+ ${INSTALL_MAN} ${WRKDIR}/man/man1/* ${STAGEDIR}${MAN1PREFIX}/man/man1
+ ${INSTALL_MAN} ${WRKDIR}/man/man5/* ${STAGEDIR}${MAN1PREFIX}/man/man5
+ # symlinking compiler
+ (cd ${STAGEDIR}${PREFIX}/bin && ${LN} -sf ../lib/fpc/${FPCBASEVER}/${PPNAME})
+ # creating sample configuration file
+ ${SH} "${STAGEDIR}${PREFIX}/lib/fpc/${FPCBASEVER}/samplecfg" \
+ "${STAGEDIR}${PREFIX}/lib/fpc/${FPCBASEVER}" \
+ "${STAGEDIR}${PREFIX}/etc"
+ @${REINPLACE_CMD} -i "" -e 's|${STAGEDIR}||' \
+ -e 's|^#-Fl/lib;/usr/lib|-Fl${LOCALBASE}/lib;${LOCALBASE}/lib/qt5;${LOCALBASE}/lib/qt6|g' \
+ ${STAGEDIR}${PREFIX}/etc/fpc.cfg.sample
+
+.include <bsd.port.post.mk>
diff --git a/lang/fpc-devel/distinfo b/lang/fpc-devel/distinfo
new file mode 100644
index 000000000000..57b9a7abdf7c
--- /dev/null
+++ b/lang/fpc-devel/distinfo
@@ -0,0 +1,9 @@
+TIMESTAMP = 1698457114
+SHA256 (freepascal/ppc386-3.2.2-freebsd.tar.gz) = 2e175954442e28799edfe08c01635d209298b992f1062d03872571d58aa9f43a
+SIZE (freepascal/ppc386-3.2.2-freebsd.tar.gz) = 1364288
+SHA256 (freepascal/ppcx64-3.2.2-freebsd.tar.gz) = 8cf6258688c3457f27bcec18e6993443ed2fcfe7d7c8697d54a13f32965e8fb0
+SIZE (freepascal/ppcx64-3.2.2-freebsd.tar.gz) = 2052903
+SHA256 (freepascal/fpc-3.0.4.man.tar.gz) = bc5357fc6e56d77eeeb5d820023f7f721f5febcc684837f296a598c6c772b26c
+SIZE (freepascal/fpc-3.0.4.man.tar.gz) = 47294
+SHA256 (freepascal/fpc-source-55e72fc0f1505c75f60af706736d32ceca9815a4_GL0.tar.gz) = 6e8cf9b2c0b76462645239c2cd555f854536c857a01b5afb46bb2f3b6ac33061
+SIZE (freepascal/fpc-source-55e72fc0f1505c75f60af706736d32ceca9815a4_GL0.tar.gz) = 55866150
diff --git a/lang/fpc-devel/files/patch-compiler-systems_t__bsd.pas b/lang/fpc-devel/files/patch-compiler-systems_t__bsd.pas
new file mode 100644
index 000000000000..3d4b57df7478
--- /dev/null
+++ b/lang/fpc-devel/files/patch-compiler-systems_t__bsd.pas
@@ -0,0 +1,22 @@
+--- compiler/systems/t_bsd.pas 2023-10-27 23:25:22.849393000 -0500
++++ compiler/systems/t_bsd.pas 2023-10-27 23:26:39.226882000 -0500
+@@ -115,6 +115,8 @@
+ if not Dontlinkstdlibpath Then
+ if target_info.system in systems_openbsd then
+ LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib;=$OPENBSD_X11BASE/lib;=$OPENBSD_LOCALBASE/lib',true)
++ else if target_info.system in systems_freebsd then
++ LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib;=$FREEBSD_LOCALBASE/lib',true)
+ else
+ LibrarySearchPath.AddLibraryPath(sysrootpath,'=/lib;=/usr/lib;=/usr/X11R6/lib',true);
+ end;
+@@ -130,7 +132,9 @@
+ if cs_link_lld in current_settings.globalswitches then
+ LdProgram:='ld.lld'
+ else if target_info.system in (systems_openbsd+systems_freebsd+[system_x86_64_dragonfly]) then
+- LdProgram:='ld.bfd';
++ LdProgram:=GetEnvPChar('FPC_LDPATH');
++ if not FileExists(LdProgram,True) then
++ LdProgram:='ld.bfd';
+ LibrarySuffix:=' ';
+ LdSupportsNoResponseFile := (target_info.system in ([system_m68k_netbsd]+systems_darwin));
+ with Info do
diff --git a/lang/fpc-devel/files/patch-compiler-utils_samplecfg b/lang/fpc-devel/files/patch-compiler-utils_samplecfg
new file mode 100644
index 000000000000..901f71d8cf35
--- /dev/null
+++ b/lang/fpc-devel/files/patch-compiler-utils_samplecfg
@@ -0,0 +1,13 @@
+--- compiler/utils/samplecfg.orig 2015-08-06 19:47:53 UTC
++++ compiler/utils/samplecfg
+@@ -38,8 +38,8 @@ sysfpdir=$sysfpdirbase2/text
+ # Detect if we have write permission in sysdir.
+ if [ -w "$sysdir" ] ; then
+ echo Write permission in $sysdir.
+- fpccfgfile="$sysdir"/fpc.cfg
+- fppkgfile="$sysdir"/fppkg.cfg
++ fpccfgfile="$sysdir"/fpc.cfg.sample
++ fppkgfile="$sysdir"/fppkg.cfg.sample
+ defaultfile="$sysdir"/fppkg/default
+ compilerconfigdir="-d CompilerConfigDir=$sysdir/fppkg"
+ else
diff --git a/lang/fpc-devel/files/patch-compiler_globals.pas b/lang/fpc-devel/files/patch-compiler_globals.pas
new file mode 100644
index 000000000000..c55dfddc8f62
--- /dev/null
+++ b/lang/fpc-devel/files/patch-compiler_globals.pas
@@ -0,0 +1,32 @@
+--- compiler/globals.pas 2023-10-27 23:30:38.797736000 -0500
++++ compiler/globals.pas 2023-10-27 23:31:45.729414000 -0500
+@@ -1023,6 +1023,19 @@
+ FreeEnvPChar(envvalue);
+ end;
+ {$endif openbsd}
++{$ifdef freebsd}
++ function GetFreeBSDLocalBase: ansistring;
++ var
++ envvalue: pchar;
++ begin
++ envvalue := GetEnvPChar('LOCALBASE');
++ if assigned(envvalue) then
++ Result:=envvalue
++ else
++ Result:='/usr/local';
++ FreeEnvPChar(envvalue);
++ end;
++{$endif freebsd}
+ var
+ envstr: string;
+ envvalue: pchar;
+@@ -1062,6 +1075,9 @@
+ Replace(s,'$OPENBSD_LOCALBASE',GetOpenBSDLocalBase);
+ Replace(s,'$OPENBSD_X11BASE',GetOpenBSDX11Base);
+ {$endif openbsd}
++{$ifdef freebsd}
++ Replace(s,'$FREEBSD_LOCALBASE',GetFreeBSDLocalBase);
++{$endif freebsd}
+ if not substitute_env_variables then
+ exit;
+ { Replace environment variables between dollar signs }
diff --git a/lang/fpc-devel/files/patch-packages-dts-src-dts.pas b/lang/fpc-devel/files/patch-packages-dts-src-dts.pas
new file mode 100644
index 000000000000..623471ea21a0
--- /dev/null
+++ b/lang/fpc-devel/files/patch-packages-dts-src-dts.pas
@@ -0,0 +1,97 @@
+--- packages/dts/src/dts.pas 2010-04-21 20:42:31.000000000 +0100
++++ packages/dts/src/dts.pas 2010-04-21 20:52:51.000000000 +0100
+@@ -272,7 +272,7 @@
+ {$IF Defined(WINDOWS)}
+ dtslib = 'dts.dll';
+ {$ELSEIF Defined(UNIX)}
+- dtslib = 'libdts.so';
++ dtslib = 'libdca.so';
+ {$ELSE}
+ {$MESSAGE ERROR 'DYNLINK not supported'}
+ {$IFEND}
+@@ -331,14 +331,14 @@
+ DTS_ADJUST_LEVEL = $100;
+
+
+-function dts_init(mm_accel: cuint32): pdts_state_t; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-function dts_syncinfo(state: pdts_state_t; buf: pcuint8; var flags: cint; var sample_rate: cint; var bit_rate: cint; var frame_length: cint): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-function dts_frame(state: pdts_state_t; buf: pcuint8; var flags: cint; var level: dts_level_t; bias: dts_sample_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-procedure dts_dynrng(state: pdts_state_t; call: dts_dynrng_call; data: pointer); cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-function dts_blocks_num(state: pdts_state_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-function dts_block(state: pdts_state_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-function dts_samples(state: pdts_state_t): pdts_sample_t; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+-procedure dts_free(state: pdts_state_t); cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_init(mm_accel: cuint32): pdts_state_t; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_syncinfo(state: pdts_state_t; buf: pcuint8; var flags: cint; var sample_rate: cint; var bit_rate: cint; var frame_length: cint): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_frame(state: pdts_state_t; buf: pcuint8; var flags: cint; var level: dts_level_t; bias: dts_sample_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++procedure dca_dynrng(state: pdts_state_t; call: dts_dynrng_call; data: pointer); cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_blocks_num(state: pdts_state_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_block(state: pdts_state_t): cint; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++function dca_samples(state: pdts_state_t): pdts_sample_t; cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
++procedure dca_free(state: pdts_state_t); cdecl; external {$IFDEF DYNLINK}dtslib{$ENDIF};
+
+
+
+@@ -378,12 +378,61 @@
+ end;
+
+
++function dts_init(mm_accel: cuint32): pdts_state_t;
++function dts_syncinfo(state: pdts_state_t; buf: pcuint8; var flags: cint; var sample_rate: cint; var bit_rate: cint; var frame_length: cint): cint;
++function dts_frame(state: pdts_state_t; buf: pcuint8; var flags: cint; var level: dts_level_t; bias: dts_sample_t): cint;
++procedure dts_dynrng(state: pdts_state_t; call: dts_dynrng_call; data: pointer);
++function dts_blocks_num(state: pdts_state_t): cint;
++function dts_block(state: pdts_state_t): cint;
++function dts_samples(state: pdts_state_t): pdts_sample_t;
++procedure dts_free(state: pdts_state_t);
++
+ function dts_decoder_init(mm_accel: cuint32; user: pointer; read: dts_read_func; seek: dts_seek_func; close: dts_close_func; tell: dts_tell_func): pdts_decoder;
+ function dts_decoder_read(decoder: pdts_decoder; buffer: pointer; length: cint): cint;
+ procedure dts_decoder_free(decoder: pdts_decoder);
+
+ implementation
+
++function dts_init(mm_accel: cuint32): pdts_state_t;
++begin
++ Result := dca_init(mm_accel);
++end;
++
++function dts_syncinfo(state: pdts_state_t; buf: pcuint8; var flags: cint; var sample_rate: cint; var bit_rate: cint; var frame_length: cint): cint;
++begin
++ Result := dca_syncinfo(state, buf, flags, sample_rate, bit_rate, frame_length);
++end;
++
++function dts_frame(state: pdts_state_t; buf: pcuint8; var flags: cint; var level: dts_level_t; bias: dts_sample_t): cint;
++begin
++ Result := dca_frame(state, buf, flags, level, bias);
++end;
++
++procedure dts_dynrng(state: pdts_state_t; call: dts_dynrng_call; data: pointer);
++begin
++ dca_dynrng(state, call, data);
++end;
++
++function dts_blocks_num(state: pdts_state_t): cint;
++begin
++ Result := dca_blocks_num(state);
++end;
++
++function dts_block(state: pdts_state_t): cint;
++begin
++ Result := dca_block(state);
++end;
++
++function dts_samples(state: pdts_state_t): pdts_sample_t;
++begin
++ Result := dca_samples(state)
++end;
++
++procedure dts_free(state: pdts_state_t);
++begin
++ dca_free(state);
++end;
++
+ function dts_decoder_init(mm_accel: cuint32; user: pointer; read: dts_read_func; seek: dts_seek_func; close: dts_close_func; tell: dts_tell_func): pdts_decoder;
+ begin
+ GetMem(Result, Sizeof(dts_decoder));
+Only in work.new/fpc-2.4.0/packages/dts/src: dts.pas~
diff --git a/lang/fpc-devel/files/patch-packages-libnettle-src_libnettle.pp b/lang/fpc-devel/files/patch-packages-libnettle-src_libnettle.pp
new file mode 100644
index 000000000000..9432276f4e91
--- /dev/null
+++ b/lang/fpc-devel/files/patch-packages-libnettle-src_libnettle.pp
@@ -0,0 +1,11 @@
+--- packages/libnettle/src/libnettle.pp 2023-10-28 12:47:25.745893000 -0500
++++ packages/libnettle/src/libnettle.pp 2023-10-28 12:52:31.472802000 -0500
+@@ -51,7 +51,7 @@
+ NettleExternal_library='nettle';
+ HogweedExternal_library='hogweed';
+
+-{$ifdef linux}
++{$if defined(linux) or defined(freebsd)}
+ NettleLibraryFileName = 'lib'+NettleExternal_library+'.so';
+ HogweedLibraryFileName = 'lib'+HogweedExternal_library+'.so';
+ {$else}
diff --git a/lang/fpc-devel/files/patch-packages-opencl-src_cl.pp b/lang/fpc-devel/files/patch-packages-opencl-src_cl.pp
new file mode 100644
index 000000000000..a45464f029ce
--- /dev/null
+++ b/lang/fpc-devel/files/patch-packages-opencl-src_cl.pp
@@ -0,0 +1,11 @@
+--- packages/opencl/src/cl.pp 2023-10-28 12:54:09.078367000 -0500
++++ packages/opencl/src/cl.pp 2023-10-28 12:54:33.911516000 -0500
+@@ -55,7 +55,7 @@
+ OpenCLlib = 'OpenCL.dll';
+ {$DEFINE extdecl := stdcall}
+ {$ELSE}
+- {$IFDEF LINUX}
++ {$IF DEFINED(LINUX) OR DEFINED(FREEBSD)}
+ {$DEFINE DYNLINK}
+ const
+ OpenCLlib = 'libOpenCL.so';
diff --git a/lang/fpc-devel/files/patch-packages_libvlc_fpmake.pp b/lang/fpc-devel/files/patch-packages_libvlc_fpmake.pp
new file mode 100644
index 000000000000..0e1cddb83736
--- /dev/null
+++ b/lang/fpc-devel/files/patch-packages_libvlc_fpmake.pp
@@ -0,0 +1,13 @@
+--- packages/libvlc/fpmake.pp 2023-10-28 00:57:22.224953000 -0500
++++ packages/libvlc/fpmake.pp 2023-10-28 00:57:38.346447000 -0500
+@@ -23,8 +23,8 @@
+ P.HomepageURL := 'www.freepascal.org';
+ P.Email := 'michael@freepascal.org';
+ P.Description := 'VLC library (version 2 or higher) interface and component.';
+- T:=P.Targets.AddUnit('src/libvlc.pp',[linux,win32,win64]);
+- T:=P.Targets.AddUnit('src/vlc.pp',[linux,win32,win64]);
++ T:=P.Targets.AddUnit('src/libvlc.pp',[freebsd,linux,win32,win64]);
++ T:=P.Targets.AddUnit('src/vlc.pp',[freebsd,linux,win32,win64]);
+ with T.Dependencies do
+ begin
+ AddUnit('libvlc');
diff --git a/lang/fpc-devel/files/pkg-message.in b/lang/fpc-devel/files/pkg-message.in
new file mode 100644
index 000000000000..e8b3db50a8cd
--- /dev/null
+++ b/lang/fpc-devel/files/pkg-message.in
@@ -0,0 +1,21 @@
+[
+{ type: install
+ message: <<EOM
+1) Add lib paths to %%PREFIX%%/etc/fpc.cfg
+
+ # searchpath for libraries
+ -Fl/usr/local/lib
+
+ This is necessary for correct linking of libraries.
+
+2) This port add support to fp compiler to get value from FPC_LDPATH
+ environment variable. By default fp compiler use %%LOCALBASE%%/bin/ld.bfd for
+ linking binaries. If you want change this, just must be define FPC_LDPATH
+ with path to ld tool that will be used by fp compiler. Take on mind that fpc
+ only works with binutils on this moment but could work with another ld tool
+ later on next versions of freepascal
+
+3) Enjoy it ;)
+EOM
+}
+]
diff --git a/lang/fpc-devel/pkg-descr b/lang/fpc-devel/pkg-descr
new file mode 100644
index 000000000000..819965617bb1
--- /dev/null
+++ b/lang/fpc-devel/pkg-descr
@@ -0,0 +1,12 @@
+Free Pascal is a mature, versatile, open source Pascal compiler. It can target
+many processor architectures: Intel x86 (16 and 32 bit), AMD64/x86-64, PowerPC,
+PowerPC64, SPARC, SPARC64, ARM, AArch64, MIPS, Motorola 68k, AVR, and the JVM.
+
+Supported operating systems include Windows (16/32/64 bit, CE, and native NT),
+Linux, Mac OS X/iOS/iPhoneSimulator/Darwin, FreeBSD and other BSD flavors, DOS
+(16 bit, or 32 bit DPMI), OS/2, AIX, Android, Haiku, Nintendo GBA/DS/Wii,
+AmigaOS, MorphOS, AROS, Atari TOS, and various embedded platforms. Additionally,
+support for RISC-V (32/64), Xtensa, and Z80 architectures, and for the LLVM
+compiler infrastructure is available in the development version. Additionally,
+the Free Pascal team maintains a transpiler for pascal to Javascript called
+pas2js.
diff --git a/lang/fpc-devel/pkg-plist b/lang/fpc-devel/pkg-plist
new file mode 100644
index 000000000000..e4b5faf59aa1
--- /dev/null
+++ b/lang/fpc-devel/pkg-plist
@@ -0,0 +1,3403 @@
+bin/bin2obj
+bin/cldrparser
+bin/compileserver
+bin/cvsco.tdf
+bin/cvsdiff.tdf
+bin/cvsup.tdf
+bin/data2inc
+bin/delp
+bin/dts2pas
+bin/eawparser
+bin/fp
+bin/fp.ans
+bin/fp.rsj
+bin/fpc
+bin/fpcjres
+bin/fpclasschart
+bin/fpclasschart.rsj
+bin/fpcmake
+bin/fpcmkcfg
+bin/fpcmkcfg.rsj
+bin/fpcres
+bin/fpcreslipo
+bin/fpcsubst
+bin/fpcsubst.rsj
+bin/fpdoc
+bin/fppkg
+bin/fprcp
+bin/gbpparser
+bin/gplprog.pt
+bin/gplunit.pt
+bin/grep.tdf
+bin/h2pas
+bin/h2paschk
+bin/h2paspp
+bin/ihxutil
+bin/instantfpc
+bin/json2pas
+bin/makeskel
+bin/makeskel.rsj
+bin/mka64ins
+bin/mkarmins
+bin/mkinsadd
+bin/mkx86inl
+bin/mkx86ins
+bin/mkz80ins
+bin/msg2inc
+bin/pas2fpm
+bin/pas2jni
+bin/pas2js
+bin/pas2ut
+bin/pas2ut.rsj
+bin/plex
+bin/postw32
+%%FPC_I386%%bin/ppc386
+%%FPC_AMD64%%bin/ppcx64
+bin/ppdep
+bin/ppudump
+bin/ppufiles
+bin/ppumove
+bin/program.pt
+bin/ptop
+bin/ptop.rsj
+bin/pyacc
+bin/rmcvsdir
+bin/rstconv
+bin/rstconv.rsj
+bin/tpgrep.tdf
+bin/unihelper
+bin/unit.pt
+bin/unitdiff
+bin/unitdiff.rsj
+bin/wasa
+bin/wasmtool
+bin/webidl2pas
+@sample etc/fpc.cfg.sample
+@sample etc/fppkg.cfg.sample
+etc/fppkg/default
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/a52.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/aspell.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/bfd.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/bzip2.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/cairo.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/chm.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/dblib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/dbus.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/dts.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fastcgi.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-async.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-base.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-css.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-db.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-extra.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-fpcunit.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-hash.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-image.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-js.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-json.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-mustache.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-net.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-passrc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-pdf.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-process.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-registry.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-report.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-res.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-sdo.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-sound.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-stl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-web.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fcl-xml.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fftw.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fpindexer.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fpmkunit.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fppkg.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/fv.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gdbint.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gdbm.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ggi.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gitlab.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gmp.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gnutls.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/googleapi.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/graph.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gst.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/gtk2.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/hash.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/hermes.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/httpd22.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/httpd24.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ibase.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/iconvenc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ide.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/imagemagick.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ldap.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libcups.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libcurl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libenet.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libffi.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libfontconfig.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libgd.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libmagic.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libmicrohttpd.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libnettle.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libpng.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libsee.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libtar.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libvlc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/libxml2.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/lua.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/mad.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/modplug.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/mysql.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ncurses.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/numlib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/odata.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/odbc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/oggvorbis.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/openal.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/opencl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/opengl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/openssl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/oracle.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/pasjpeg.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/pastojs.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/paszlib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/pcap.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/postgres.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/proj4.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/ptc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/pthreads.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/pxlib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/regexpr.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rexx.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rsvg.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rtl-console.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rtl-extra.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rtl-generics.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rtl-objpas.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/rtl-unicode.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/sdl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/sqlite.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/svgalib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/symbolic.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/syslog.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/tcl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/tplylib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/unzip.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/users.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/utils-lexyacc.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/utils-pas2js.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/utmp.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/vcl-compat.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/wasmedge.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/wasmtime.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/webidl.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/x11.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/xforms.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/zlib.fpm
+lib/fpc/%%PORTVERSION%%/fpmkinst/%%BUILDNAME%%/zorba.fpm
+lib/fpc/%%PORTVERSION%%/ide/text/fp.cfg
+lib/fpc/%%PORTVERSION%%/ide/text/fp.ini
+lib/fpc/%%PORTVERSION%%/msg/errorct.msg
+lib/fpc/%%PORTVERSION%%/msg/errord.msg
+lib/fpc/%%PORTVERSION%%/msg/errorda.msg
+lib/fpc/%%PORTVERSION%%/msg/errordu.msg
+lib/fpc/%%PORTVERSION%%/msg/errore.msg
+lib/fpc/%%PORTVERSION%%/msg/errores.msg
+lib/fpc/%%PORTVERSION%%/msg/errorf.msg
+lib/fpc/%%PORTVERSION%%/msg/errorfi.msg
+lib/fpc/%%PORTVERSION%%/msg/errorhe.msg
+lib/fpc/%%PORTVERSION%%/msg/errorheu.msg
+lib/fpc/%%PORTVERSION%%/msg/errorid.msg
+lib/fpc/%%PORTVERSION%%/msg/erroriu.msg
+lib/fpc/%%PORTVERSION%%/msg/errorn.msg
+lib/fpc/%%PORTVERSION%%/msg/errorpl.msg
+lib/fpc/%%PORTVERSION%%/msg/errorpli.msg
+lib/fpc/%%PORTVERSION%%/msg/errorpt.msg
+lib/fpc/%%PORTVERSION%%/msg/errorptu.msg
+lib/fpc/%%PORTVERSION%%/msg/errorr.msg
+lib/fpc/%%PORTVERSION%%/msg/errorru.msg
+lib/fpc/%%PORTVERSION%%/msg/errorues.msg
+%%FPC_I386%%lib/fpc/%%PORTVERSION%%/ppc386
+%%FPC_AMD64%%lib/fpc/%%PORTVERSION%%/ppcx64
+lib/fpc/%%PORTVERSION%%/samplecfg
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/a52/a52.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/a52/a52.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/aspell.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/aspell.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/aspelldyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/aspelldyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/spellcheck.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/aspell/spellcheck.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bfd/bfd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bfd/bfd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2comn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2comn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2stream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2stream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/bzip2/bzip2stream.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairoft.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairoft.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairogobject.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairogobject.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/cairo/cairoxlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmfiftimain.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmfiftimain.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmfilewriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmfilewriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmsitemap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmsitemap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmspecialfiles.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmspecialfiles.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmtypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmtypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/chmwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/fasthtmlparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/fasthtmlparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/htmlindexer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/htmlindexer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/htmlutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/htmlutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itolitlsreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itolitlsreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itolitlstypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itolitlstypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itsftransform.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/itsftransform.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/lzxcompressthread.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/lzxcompressthread.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslznonslide.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslznonslide.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslzx.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslzx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslzxcomp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/chm/paslzxcomp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dblib/dblib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dblib/dblib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dbus/dbus.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dbus/dbus.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dbus/dbuscomp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dbus/dbuscomp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dbus/dbuscomp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dts/dts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/dts/dts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fastcgi/fastcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fastcgi/fastcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-async/fpasync.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-async/fpasync.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-async/libasync.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-async/libasync.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedipc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedipc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedipc.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedsingleinstance.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedsingleinstance.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/advancedsingleinstance.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/ascii85.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/ascii85.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/avl_tree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/avl_tree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/base64.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/base64.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/basenenc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/basenenc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/blowfish2.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/bufstream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/bufstream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/bufstream.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/cachecls.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/cachecls.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/cachecls.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/chainstream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/chainstream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/contnrs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/contnrs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/contnrs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/csvdocument.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/csvdocument.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/csvreadwrite.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/csvreadwrite.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/custapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/custapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/custapp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/eventlog.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/eventlog.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/eventlog.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpexprpars.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpexprpars.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpexprpars.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpobserver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpobserver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpobserver.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fptemplate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fptemplate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fptemplate.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpthreadpool.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpthreadpool.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fpthreadpool.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fptimer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/fptimer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/gettext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/gettext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/idea.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/idea.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inicol.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inicol.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inicol.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inifiles.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inifiles.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/inifiles.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/iostream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/iostream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/lzwstream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/lzwstream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/maskutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/maskutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/maskutils.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/nullstream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/nullstream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/nullstream.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/pascodegen.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/pascodegen.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/pooledmm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/pooledmm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/rtfpars.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/rtfpars.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/rttiutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/rttiutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/singleinstance.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/singleinstance.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamcoll.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamcoll.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamcoll.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamex.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamex.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamex.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamio.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamio.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/streamio.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/syncobjs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/syncobjs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/syncobjs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/uriparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/uriparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/wformat.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/wformat.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/whtml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/whtml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/wtex.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-base/wtex.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssresolver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssresolver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcsstree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcsstree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-css/fpcssutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/bufdataset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/bufdataset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/bufdataset_parser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/bufdataset_parser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/csvdataset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/csvdataset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/customsqliteds.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/customsqliteds.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/db.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/db.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbcoll.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbcoll.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbcoll.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbconst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbconst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbconst.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_collate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_collate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_common.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_common.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_cursor.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_cursor.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_dbffile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_dbffile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_fields.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_fields.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_idxcur.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_idxcur.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_idxfile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_idxfile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_lang.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_lang.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_memo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_memo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_parser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_parser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_pgfile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_pgfile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prscore.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prscore.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prsdef.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prsdef.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prssupp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_prssupp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_str.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_str.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_wtil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbf_wtil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbwhtml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/dbwhtml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/extjsdataset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/extjsdataset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fbadmin.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fbadmin.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fbadmin.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fbeventmonitor.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fbeventmonitor.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fieldmap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fieldmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fieldmap.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgcreatedbf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgcreatedbf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgdbcoll.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgdbcoll.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgfieldmap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgfieldmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgsqlconst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgsqlconst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgsqlconst.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgtiopf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgtiopf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgtypesafedataset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcgtypesafedataset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcsvexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcsvexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpcsvexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdatadict.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdatadict.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdatadict.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbfexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbfexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdbfexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddcodegen.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddcodegen.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddcodegen.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdddbf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdddbf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdddiff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdddiff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpdddiff.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddfb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddfb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmssql.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmssql.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql40.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql40.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql41.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql41.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql50.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql50.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql51.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql51.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql55.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql55.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql56.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql56.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql57.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql57.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql80.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddmysql80.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddodbc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddodbc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddoracle.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddoracle.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddpopcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddpopcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddpopcode.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddpq.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddpq.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddregstd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddregstd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddsqldb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddsqldb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddsqldb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddsqlite3.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpddsqlite3.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpfixedexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpfixedexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpfixedexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpjsondataset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpjsondataset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fprtfexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fprtfexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fprtfexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplejsonexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplejsonexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplejsonexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplexmlexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplexmlexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsimplexmlexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqlscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqltree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpsqltree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpstdexports.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpstdexports.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fptexexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fptexexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fptexexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpxmlxsdexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpxmlxsdexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/fpxmlxsdexport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/ibconnection.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/ibconnection.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/memds.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/memds.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/memds.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mssqlconn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mssqlconn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql40conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql40conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql40conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql41conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql41conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql41conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql50conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql50conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql50conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql51conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql51conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql51conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql55conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql55conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql55conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql56conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql56conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql56conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql57conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql57conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql57conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql80conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql80conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/mysql80conn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/odbcconn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/odbcconn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/oracleconnection.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/oracleconnection.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/oracleconnection.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/paradox.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/paradox.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/paradox.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqconnection.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqconnection.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqconnection.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqeventmonitor.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqeventmonitor.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/pqeventmonitor.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sdfdata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sdfdata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sdfdata.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldbini.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldbini.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldblib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldblib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldblib.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldbpool.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldbpool.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqldbpool.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3backup.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3backup.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3conn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3conn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3ds.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlite3ds.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqliteds.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqliteds.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlscript.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlscript.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqlscript.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqltypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/sqltypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/xmldatapacketreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/xmldatapacketreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-db/xmldatapacketreader.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/daemonapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/daemonapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/daemonapp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/fileinfo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/fileinfo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-extra/fileinfo.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/consoletestrunner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/consoletestrunner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/digesttestreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/digesttestreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/fpcunit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/fpcunit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/fpcunit.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/fpcunitreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/fpcunitreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/junittestreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/junittestreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/latextestreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/latextestreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/plaintestreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/plaintestreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/simpletestrunner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/simpletestrunner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testdecorator.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testdecorator.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testregistry.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testregistry.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/testutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/ubmockobject.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/ubmockobject.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/xmlreporter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/xmlreporter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/xmltestreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-fpcunit/xmltestreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpasn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpasn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpecc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpecc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpecdsa.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpecdsa.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fphashutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fphashutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fppem.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fppem.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fprsa.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fprsa.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpsha256.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpsha256.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpsha512.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fpsha512.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fptlsbigint.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/fptlsbigint.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/onetimepass.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-hash/onetimepass.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/bmpcomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/bmpcomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/clipping.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/clipping.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/ellipses.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/ellipses.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/extinterpolation.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/extinterpolation.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpbarcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpbarcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcanvas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcanvas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcolhash.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcolhash.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcolorspace.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpcolorspace.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpditherer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpditherer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimage.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimage.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgbarcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgbarcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgcanv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgcanv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgcmn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgcmn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimggauss.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimggauss.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgqrcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpimgqrcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fppixlcanv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fppixlcanv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpqrcodegen.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpqrcodegen.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpquantizer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpquantizer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadbmp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadbmp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadgif.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadgif.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadjpeg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadjpeg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpcx.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpcx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpng.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpng.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpnm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpnm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpsd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadpsd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadqoi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadqoi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadtga.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadtga.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadtiff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadtiff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadxpm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadxpm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadxwd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpreadxwd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fptiffcmn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fptiffcmn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritebmp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritebmp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritejpeg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritejpeg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepcx.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepcx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepng.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepng.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepnm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritepnm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwriteqoi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwriteqoi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritetga.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritetga.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritetiff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritetiff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritexpm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/fpwritexpm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetype.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetype.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetype.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetypeh.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetypeh.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetypehdyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetypehdyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/freetypehdyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/ftfont.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/ftfont.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/jpegcomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/jpegcomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pcxcomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pcxcomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pixtools.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pixtools.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pngcomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pngcomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/polygonfilltools.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/polygonfilltools.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pscanvas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pscanvas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/pscanvas.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/psdcomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/psdcomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/qoicomn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/qoicomn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/targacmn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/targacmn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/xwdfile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-image/xwdfile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsminifier.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsminifier.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsminifier.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jsscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jssrcmap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jssrcmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jstoken.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jstoken.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jstree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jstree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jswriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jswriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/jswriter.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/tstopas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/tstopas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-js/tstopas.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjson.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonapply.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonapply.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonapply.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonrtti.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonrtti.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonrtti.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsontopas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsontopas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsontopas.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonvalue.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/fpjsonvalue.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/json2yaml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/json2yaml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonconf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonconf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonconf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonfpcunit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonfpcunit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonfpcunit.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonini.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonini.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonreader.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-json/jsonscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpdbmustache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpdbmustache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpdbmustache.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpexmustache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpexmustache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpexmustache.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpmustache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpmustache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-mustache/fpmustache.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/cnetdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/cnetdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/fpsock.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/fpsock.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/fpsock.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/netdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/netdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/resolve.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/resolve.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/resolve.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/sslbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/sslbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/sslsockets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/sslsockets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/sslsockets.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/ssockets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/ssockets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-net/ssockets.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasresolveeval.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasresolveeval.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasresolveeval.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasresolver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasresolver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/passrcutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/passrcutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastounittest.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastounittest.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastounittest.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pastree.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasuseanalyzer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pasuseanalyzer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/paswrite.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/paswrite.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-passrc/pscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpfonttextmapping.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpfonttextmapping.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpparsettf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpparsettf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpparsettf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfcommands.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfcommands.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfobjects.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfobjects.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfobjects.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfpredict.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfpredict.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfsource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fppdfsource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttfencodings.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttfencodings.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttfsubsetter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttfsubsetter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-pdf/fpttfsubsetter.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugintf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugintf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugintf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugmsg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugmsg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/dbugmsg.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/pipes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/pipes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/pipesipc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/pipesipc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/pipesipc.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/process.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/process.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/process.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/simpleipc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/simpleipc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-process/simpleipc.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-registry/registry.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-registry/registry.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-registry/registry.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-registry/xmlreg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-registry/xmlreg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpextfuncs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpextfuncs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpjsonreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpjsonreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpjsonreport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fplazreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fplazreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fplazreport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreport.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportbarcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportbarcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportcanvashelper.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportcanvashelper.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportcontnr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportcontnr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdata.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatacsv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatacsv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatacsv.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatadbf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatadbf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatadbf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatajson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatajson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatajson.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatasqldb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatasqldb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdatasqldb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportdb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportfpimageexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportfpimageexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreporthtmlutil.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportjson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportjson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportjson.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportpdfexport.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportpdfexport.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportqrcode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportqrcode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportstreamer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportstreamer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-report/fpreportstreamer.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/acceleratorsresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/acceleratorsresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/bitmapresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/bitmapresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/coffconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/coffreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/coffreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/cofftypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/cofftypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/coffwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/coffwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/dfmreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/dfmreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfconsts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elftypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elftypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/elfwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externalreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externalreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externaltypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externaltypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externalwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/externalwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/fpcrestypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/fpcrestypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupcursorresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupcursorresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupiconresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupiconresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/groupresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/icocurtypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/icocurtypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machoconsts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machoconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machoreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machoreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machotypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machotypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machowriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/machowriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/rcparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/rcparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/rcreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/rcreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resdatastream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resdatastream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resfactory.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resfactory.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resfactory.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resmerger.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resmerger.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resource.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resourcetree.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resourcetree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/resreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/reswriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/reswriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/stringtableresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/stringtableresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/stringtableresource.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/strtable.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/strtable.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/tlbreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/tlbreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versionconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versionresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versionresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versiontypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versiontypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/versiontypes.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/winpeimagereader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/winpeimagereader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/xcoffwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-res/xcoffwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/data_acces_intf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/data_acces_intf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/data_acces_intf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/pas_generator.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/pas_generator.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_binary_streamer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_binary_streamer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_changesummary.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_changesummary.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_consts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_consts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_consts.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_cursor_intf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_cursor_intf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das_imp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das_imp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das_imp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das_utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_das_utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_datafactory.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_datafactory.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_dataobject.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_dataobject.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_date_utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_date_utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_date_utils.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_dom_cursors.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_dom_cursors.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_field_imp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_field_imp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_fpc_xml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_fpc_xml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_fpc_xml.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_imp_utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_imp_utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_linked_list.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_linked_list.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_locators.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_locators.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_logger_intf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_logger_intf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_parserutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_parserutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_rtti_filters.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_rtti_filters.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_binary.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_binary.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_xml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_xml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_serialization_xml.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_type.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_type.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_types.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_types.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xpath_helper.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xpath_helper.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsd_helper.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsd_helper.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsdintf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsdintf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsdparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/sdo_xsdparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/xsd_consts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/xsd_consts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/xsd_generator.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sdo/xsd_generator.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavformat.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavformat.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-sound/fpwavwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/garrayutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gdeque.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/ghashmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/ghashset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/glinkedlist.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/glinkedlist.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gpriorityqueue.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gqueue.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gstack.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gtree.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-stl/gvector.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/cgiapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/cgiapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/cgiapp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/cgiprotocol.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/cgiprotocol.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache24.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache24.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custapache24.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custcgi.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custfcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custfcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custfcgi.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custhttpapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custhttpapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custmicrohttpapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custmicrohttpapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custmicrohttpapp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custweb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custweb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/custweb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsjson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsjson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsjson.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsxml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsxml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/extjsxml.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/ezcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/ezcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fcgigate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fcgigate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fcgigate.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpapache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpapache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpapache24.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpapache24.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpcustwsserver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpcustwsserver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdatasetform.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdatasetform.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdebugcapturesvc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdebugcapturesvc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdispextdirect.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpdispextdirect.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpextdirect.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpextdirect.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpextjs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpextjs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpextjs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpfcgi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpfcgi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphtml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphtml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphtml.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclient.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclientasyncpool.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclientasyncpool.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclientpool.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclientpool.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpclientpool.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpserver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpserver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpserver.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpstatus.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpstatus.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpwebclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fphttpwebclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjsonrpc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjsonrpc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwaes256.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwaes256.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwarsa.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwarsa.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha256.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha256.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha384.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha384.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha512.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwasha512.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpjwt.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpmimetypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpmimetypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpoauth2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpoauth2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpoauth2.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpoauth2ini.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpoauth2ini.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpccodegen.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpccodegen.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcrtti.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcrtti.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcstrings.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcstrings.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fprpcstrings.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpweb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpweb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpweb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebdata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebdata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebdata.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebfile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebfile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebfile.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebproxy.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebproxy.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebproxy.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocket.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocket.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocket.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocketclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocketclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocketserver.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/fpwebsocketserver.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpdefs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpdefs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpdefs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpjson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpjson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpjson.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpprotocol.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httpprotocol.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httproute.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httproute.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/httproute.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/iniwebsession.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/iniwebsession.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/iniwebsession.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/microhttpapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/microhttpapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/restbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/restbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/restcodegen.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/restcodegen.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestado.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestado.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestauth.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestauth.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestauthini.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestauthini.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestbridge.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestbridge.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestcds.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestcds.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestconst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestconst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestconst.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestcsv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestcsv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestdata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestdata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestini.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestini.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestio.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestio.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestjson.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestjson.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestmodule.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestmodule.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestschema.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestschema.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestxml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbrestxml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbwebdata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbwebdata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/sqldbwebdata.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/uhpack.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/uhpackimp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/uhpackimp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/uhpacktables.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/uhpacktables.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webjsonrpc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webjsonrpc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webpage.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webpage.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/websession.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/websession.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/webutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/wsupgrader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/wsupgrader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-web/wsupgrader.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dom.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dom.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dom_html.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dom_html.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dtdmodel.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/dtdmodel.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmldefs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmldefs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmlelements.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmlelements.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmlwriter.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmlwriter.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmlwriter.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmwrite.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/htmwrite.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax_html.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax_html.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax_xml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/sax_xml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xhtml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xhtml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlcfg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlcfg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlcfg.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlconf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlconf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlconf.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmliconv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmliconv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlread.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlread.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlstreaming.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlstreaming.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmltextreader.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmltextreader.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlwrite.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xmlwrite.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xpath.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xpath.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fcl-xml/xpath.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fftw/fftw_s.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fftw/fftw_s.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/dbindexer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/dbindexer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fbindexdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fbindexdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fpindexer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fpindexer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fpindexer.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fpmasks.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/fpmasks.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireaderhtml.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireaderhtml.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireaderpas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireaderpas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireadertxt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/ireadertxt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/memindexdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/memindexdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/memindexdb.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/pgindexdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/pgindexdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/sqldbindexdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/sqldbindexdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/sqliteindexdb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpindexer/sqliteindexdb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpmkunit/fpmkunit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpmkunit/fpmkunit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fpmkunit/fpmkunit.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fprepos.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fprepos.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fprepos.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fpxmlrep.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fpxmlrep.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/fpxmlrep.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgcommands.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgcommands.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgdownload.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgdownload.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfphttp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfphttp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfpmake.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfpmake.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfppkg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgfppkg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgglobals.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgglobals.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkghandler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkghandler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgmessages.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgmessages.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgmessages.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgmkconv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgmkconv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgoptions.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgoptions.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgpackagesstructure.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgpackagesstructure.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgrepos.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgrepos.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgrepos.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkguninstalledsrcsrepo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkguninstalledsrcsrepo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgwget.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fppkg/pkgwget.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/app.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/app.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/app.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/asciitab.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/asciitab.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/colortxt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/colortxt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/dialogs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/dialogs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/dialogs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/drivers.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/drivers.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/editors.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/editors.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/editors.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/fvcommon.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/fvcommon.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/fvconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/gadgets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/gadgets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/histlist.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/histlist.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/inplong.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/inplong.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/memory.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/memory.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/menus.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/menus.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/msgbox.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/msgbox.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/msgbox.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/outline.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/outline.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/statuses.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/statuses.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/stddlg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/stddlg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/stddlg.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/sysmsg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/sysmsg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/tabs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/tabs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/time.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/time.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/timeddlg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/timeddlg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uapp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uapp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uapp.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/udialogs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/udialogs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/udialogs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/udrivers.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/udrivers.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/ufvcommon.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/ufvcommon.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uhistlist.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uhistlist.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uinplong.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uinplong.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/umenus.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/umenus.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/umsgbox.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/umsgbox.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/umsgbox.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uoutline.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uoutline.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/utabs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/utabs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/utimeddlg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/utimeddlg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uvalidate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uvalidate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uviews.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/uviews.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/validate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/validate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/views.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/fv/views.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbint/gdbcon.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbint/gdbcon.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbint/gdbint.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbint/gdbint.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbm/gdbm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gdbm/gdbm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/ggi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/ggi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/ggi2d.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/ggi2d.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/gii.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ggi/gii.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gitlab/gitlabclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gitlab/gitlabclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gmp/gmp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gmp/gmp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gmp/libgmp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gmp/libgmp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gnutls/gnutls.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gnutls/gnutls.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gnutls/gnutlssockets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gnutls/gnutlssockets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleacceleratedmobilepageurl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleacceleratedmobilepageurl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangebuyer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangebuyer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangebuyer2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangebuyer2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangeseller.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadexchangeseller.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadmin.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadmin.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadsense.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadsense.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadsensehost.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleadsensehost.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleanalytics.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleanalytics.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleanalyticsreporting.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleanalyticsreporting.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleandroidenterprise.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleandroidenterprise.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleandroidpublisher.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleandroidpublisher.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappengine.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappengine.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappsactivity.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappsactivity.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappstate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleappstate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleaudit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleaudit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleautoscaler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleautoscaler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebigquery.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebigquery.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleblogger.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleblogger.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebooks.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlebooks.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecalendar.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecalendar.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecivicinfo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecivicinfo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclassroom.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclassroom.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclient.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclient.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudbilling.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudbilling.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudbuild.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudbuild.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouddebugger.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouddebugger.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouderrorreporting.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouderrorreporting.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudlatencytest.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudlatencytest.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudmonitoring.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudmonitoring.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudresourcemanager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudresourcemanager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudsearch.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudsearch.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudtrace.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecloudtrace.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouduseraccounts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleclouduseraccounts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecompute.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecompute.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecomputeaccounts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecomputeaccounts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleconsumersurveys.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleconsumersurveys.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecontainer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecontainer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecontent.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecontent.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecoordinate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecoordinate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecustomsearch.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlecustomsearch.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledataflow.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledataflow.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledataproc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledataproc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledatastore.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledatastore.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledeploymentmanager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledeploymentmanager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledfareporting.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledfareporting.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlediscovery.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlediscovery.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledns.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledns.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledoubleclickbidmanager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledoubleclickbidmanager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledoubleclicksearch.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledoubleclicksearch.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledrive.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googledrive.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefirebaserules.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefirebaserules.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefitness.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefitness.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefreebase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefreebase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefusiontables.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlefusiontables.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegames.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegames.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegamesconfiguration.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegamesconfiguration.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegamesmanagement.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegamesmanagement.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegan.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegan.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegenomics.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegenomics.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegmail.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegmail.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegroupsmigration.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegroupsmigration.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegroupssettings.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlegroupssettings.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleiam.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleiam.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleidentitytoolkit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleidentitytoolkit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlekgsearch.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlekgsearch.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlelicensing.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlelicensing.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlelogging.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlelogging.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemanager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemanager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemapsengine.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemapsengine.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemirror.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemirror.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemonitoring.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlemonitoring.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleoauth2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleoauth2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepagespeedonline.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepagespeedonline.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepartners.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepartners.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepeople.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepeople.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplaymoviespartner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplaymoviespartner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplus.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplus.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplusdomains.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleplusdomains.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleprediction.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleprediction.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleproximitybeacon.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleproximitybeacon.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepubsub.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlepubsub.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleqpxexpress.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleqpxexpress.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereplicapool.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereplicapool.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereplicapoolupdater.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereplicapoolupdater.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereseller.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlereseller.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleresourceviews.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleresourceviews.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleruntimeconfig.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleruntimeconfig.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesafebrowsing.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesafebrowsing.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlescript.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlescript.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleservice.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleservice.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleserviceregistry.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleserviceregistry.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesheets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesheets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesiteverification.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesiteverification.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlespectrum.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlespectrum.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesqladmin.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlesqladmin.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlestorage.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlestorage.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlestoragetransfer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlestoragetransfer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletagmanager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletagmanager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletaskqueue.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletaskqueue.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletasks.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletasks.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletoolresults.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletoolresults.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletranslate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googletranslate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleurlshortener.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleurlshortener.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlevision.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlevision.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlewebfonts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlewebfonts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlewebmasters.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googlewebmasters.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutube.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutube.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutubeanalytics.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutubeanalytics.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutubereporting.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/googleapi/googleyoutubereporting.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ggigraph.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ggigraph.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/graph.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/graph.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptccrt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptccrt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptcgraph.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptcgraph.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptcmouse.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/graph/ptcmouse.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gst/gst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gst/gst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/atk.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/atk.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2pixbuf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2pixbuf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2x.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdk2x.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdkglext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gdkglext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/glib2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/glib2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtk2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtk2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtk2ext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtk2ext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtkglext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/gtkglext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/libglade2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/libglade2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/pango.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/pango.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/pangocairo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/gtk2/pangocairo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/crc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/crc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/hmac.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/hmac.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/md5.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/md5.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/ntlm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/ntlm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/sha1.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/sha1.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/uuid.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hash/uuid.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hermes/hermes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/hermes/hermes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/apr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/apr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/apriconv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/apriconv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/aprutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/aprutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/httpd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd22/httpd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd24/apr24.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd24/apr24.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd24/httpd24.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/httpd24/httpd24.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase40.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase40.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase60.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase60.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase60dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase60dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ibase/ibase60dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/iconvenc/iconvenc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/iconvenc/iconvenc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/iconvenc/iconvenc_dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/iconvenc/iconvenc_dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/imagemagick/imagemagick.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/imagemagick/imagemagick.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/imagemagick/magick_wand.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/imagemagick/magick_wand.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ldap/lber.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ldap/lber.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ldap/ldap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ldap/ldap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libcups/cupsdyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libcups/cupsdyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libcurl/libcurl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libcurl/libcurl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libenet/enet.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libenet/enet.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libenet/uenetclass.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libenet/uenetclass.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libffi/ffi.manager.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libffi/ffi.manager.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libffi/ffi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libffi/ffi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libfontconfig/libfontconfig.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libfontconfig/libfontconfig.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libgd/gd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libgd/gd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libmagic/libmagic.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libmagic/libmagic.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libmicrohttpd/libmicrohttpd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libmicrohttpd/libmicrohttpd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libnettle/libnettle.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libnettle/libnettle.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libpng/png.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libpng/png.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libsee/libsee.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libsee/libsee.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libtar/libtar.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libtar/libtar.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libvlc/libvlc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libvlc/libvlc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libvlc/vlc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libvlc/vlc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xml2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xml2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsd.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsdparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsdparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/libxml2/xmlxsdparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lauxlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lauxlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lua.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lua.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lualib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/lua/lualib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mad/mad.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mad/mad.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/modplug/modplug.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/modplug/modplug.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/my4_sys.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/my4_sys.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_com.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_com.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_comdyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_comdyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_version.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3_version.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql3dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql40.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql40.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql40dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql40dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql40dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql41.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql41.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql41dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql41dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql41dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_com.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_com.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_comdyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_comdyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_version.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4_version.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql4dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql50.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql50.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql50dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql50dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql50dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql51.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql51.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql51dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql51dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql51dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql55.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql55.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql55dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql55dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql55dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql56dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql56dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql56dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql57dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql57dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql57dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql80dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql80dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/mysql/mysql80dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/form.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/form.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/menu.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/menu.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ncrt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ncrt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ncurses.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ncurses.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ocrt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/ocrt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/panel.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ncurses/panel.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/det.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/det.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/dsl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/dsl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eig.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eig.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eigh1.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eigh1.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eigh2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/eigh2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/int.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/int.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/inv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/inv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/iom.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/iom.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/ipf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/ipf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/mdt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/mdt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/numlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/numlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/ode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/ode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/omv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/omv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/roo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/roo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/sle.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/sle.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/spe.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/spe.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/spl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/spl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/typ.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/numlib/typ.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/msgraph.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/msgraph.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/odatabase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/odatabase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/odataservice.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/odataservice.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/office365client.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/office365client.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/sharepoint.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odata/sharepoint.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odbc/odbcsql.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odbc/odbcsql.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odbc/odbcsqldyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/odbc/odbcsqldyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oggvorbis/ogg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oggvorbis/ogg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oggvorbis/vorbis.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oggvorbis/vorbis.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openal/openal.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openal/openal.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opencl/cl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opencl/cl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opencl/cl_gl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/freeglut.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/freeglut.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/gl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/gl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glu.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glu.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glut.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glut.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glx.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/opengl/glx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/fpopenssl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/fpopenssl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/fpopenssl.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/openssl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/openssl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/openssl.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/opensslsockets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/opensslsockets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/openssl/opensslsockets.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oci.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oci.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/ocidyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/ocidyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oraoci.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oraoci.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oratypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/oracle/oratypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcapimin.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcapimin.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcapistd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcapistd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jccoefct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jccoefct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jccolor.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jccolor.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcdctmgr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcdctmgr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jchuff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jchuff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcinit.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcinit.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmainct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmainct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmarker.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmarker.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmaster.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcmaster.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcomapi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcomapi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcparam.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcparam.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcphuff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcphuff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcprepct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcprepct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcsample.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jcsample.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jctrans.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jctrans.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdapimin.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdapimin.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdapistd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdapistd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdatadst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdatadst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdatasrc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdatasrc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdcoefct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdcoefct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdcolor.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdcolor.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jddctmgr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jddctmgr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdeferr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdeferr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdhuff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdhuff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdinput.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdinput.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmainct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmainct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmarker.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmarker.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmaster.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmaster.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmerge.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdmerge.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdphuff.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdphuff.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdpostct.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdpostct.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdsample.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jdsample.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jerror.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jerror.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctflt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctflt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctfst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctfst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctint.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jfdctint.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctflt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctflt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctfst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctfst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctint.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctint.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctred.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jidctred.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jinclude.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jinclude.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmemmgr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmemmgr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmemnobs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmemnobs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmorecfg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jmorecfg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jpeglib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jpeglib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jquant1.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jquant1.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jquant2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jquant2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pasjpeg/jutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/fppas2js.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/fppas2js.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/fppas2js.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/fppjssrcmap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/fppjssrcmap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompilercfg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompilercfg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompilerpp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jscompilerpp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfilecache.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfilecache.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfileutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfileutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfscompiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsfscompiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jshtmlresources.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jshtmlresources.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsjsresources.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsjsresources.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jslibcompiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jslibcompiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jslogger.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jslogger.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jspcucompiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jspcucompiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jspparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jspparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsresources.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsresources.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsresstrfile.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsresstrfile.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsresstrfile.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsuseanalyzer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsuseanalyzer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pastojs/pas2jsutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/adler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/adler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/gzio.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/gzio.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infblock.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infblock.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infcodes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infcodes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/inffast.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/inffast.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/inftrees.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/inftrees.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/infutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/paszlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/paszlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/trees.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/trees.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/unzip.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/unzip.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zbase.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zcompres.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zcompres.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zdeflate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zdeflate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zinflate.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zinflate.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zip.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zip.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zipper.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zipper.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zipper.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/ziputils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/ziputils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zstream.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zstream.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zstream.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zuncompr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/paszlib/zuncompr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pcap/pcap.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pcap/pcap.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/dllist.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/dllist.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/dllistdyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/dllistdyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres3.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres3.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres3dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres3dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/postgres/postgres3dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/proj4/proj.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/proj4/proj.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptceventqueue.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptceventqueue.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptcwrapper.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/ptc/ptcwrapper.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pthreads/pthreads.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pthreads/pthreads.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pxlib/pxlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/pxlib/pxlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/oldregexpr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/oldregexpr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/regex.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/regex.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/regex.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/regexpr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/regexpr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/uregexpr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/regexpr/uregexpr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rexx/rexxsaa.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rexx/rexxsaa.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rsvg/rsvg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rsvg/rsvg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/crt.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/crt.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/keyboard.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/keyboard.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/mouse.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/mouse.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/unixkvmbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/unixkvmbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/video.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-console/video.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/clocale.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/clocale.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/ipc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/ipc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/matrix.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/matrix.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/objects.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/objects.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/printer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/printer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/real48utils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/real48utils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sockets.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sockets.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sortalgs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sortalgs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/ucomplex.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/ucomplex.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.collections.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.collections.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.defaults.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.defaults.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.hashes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.hashes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.helpers.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.helpers.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.memoryexpanders.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.memoryexpanders.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.strings.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.strings.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-generics/generics.strings.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/convutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/convutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/dateutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/dateutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/fmtbcd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/fmtbcd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/nullable.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/rtti.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/rtti.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/rtti.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/stdconvs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/stdconvs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/stdconvs.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/strutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/strutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/strutils.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/syshelpers.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/syshelpers.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.actions.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.actions.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.actions.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.math.vectors.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.math.vectors.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.timespan.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.timespan.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.uiconsts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.uiconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.uitypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/system.uitypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/variants.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/variants.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/variants.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/varutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/varutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/widestrutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-objpas/widestrutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_de.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_de.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_es.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_es.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_fr_ca.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_fr_ca.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ja.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ja.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ko.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ko.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ru.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_ru.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_sv.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_sv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_zh.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/collation_zh.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp895.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp895.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp932.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp932.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp936.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp936.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp949.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp949.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp950.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/cp950.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/eastasianwidth.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/eastasianwidth.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/graphemebreakproperty.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/graphemebreakproperty.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/unicodeducet.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-unicode/unicodeducet.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/Package.fpc
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/baseunix.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/baseunix.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/bsd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/bsd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/character.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/character.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/charset.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/charset.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/classes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/classes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cmem.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cmem.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/console.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/console.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1250.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1250.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1251.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1251.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1252.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1252.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1253.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1253.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1254.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1254.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1255.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1255.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1256.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1256.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1257.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1257.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1258.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp1258.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp3021.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp3021.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp437.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp437.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp646.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp646.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp737.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp737.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp775.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp775.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp850.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp850.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp852.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp852.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp855.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp855.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp856.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp856.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp857.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp857.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp860.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp860.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp861.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp861.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp862.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp862.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp863.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp863.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp864.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp864.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp865.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp865.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp866.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp866.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp869.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp869.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp874.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp874.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_1.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_1.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_10.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_10.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_11.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_11.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_13.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_13.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_14.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_14.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_15.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_15.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_16.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_16.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_3.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_3.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_4.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_4.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_5.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_5.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_6.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_6.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_7.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_7.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_8.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_8.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_9.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cp8859_9.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpall.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpkoi8_r.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpkoi8_r.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpkoi8_u.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpkoi8_u.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cprt0.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpu.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cpu.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cthreads.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cthreads.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ctypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ctypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cwstring.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/cwstring.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dllprt0.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dos.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dos.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dynlibs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/dynlibs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/errors.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/errors.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/exeinfo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/exeinfo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/extpas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/extpas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fgl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fgl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fpintres.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fpintres.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fpwidestring.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/fpwidestring.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/freebsd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/freebsd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/getopts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/getopts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/gprt0.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/heaptrc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/heaptrc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/initc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/initc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/iso7185.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/iso7185.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/lineinfo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/lineinfo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/lnfodwrf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/lnfodwrf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/macpas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/macpas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/math.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/math.ppu
+%%FPC_I386%%lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/mmx.o
+%%FPC_I386%%lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/mmx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/objpas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/objpas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ports.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ports.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/prt0.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/rtlconsts.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/rtlconsts.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sfpu128.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sfpu128.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sfpux80.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sfpux80.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/softfpu.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/softfpu.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sortbase.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sortbase.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/strings.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/strings.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/syscall.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysconst.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysconst.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysctl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysctl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/system.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/system.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/sysutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/termio.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/termio.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/types.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/types.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/typinfo.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/typinfo.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ufloat128.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ufloat128.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ufloatx80.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/ufloatx80.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unicodedata.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unicodedata.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unix.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unix.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixcp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixcp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixtype.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixtype.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/unixutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/uuchar.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/uuchar.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/x86.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl/x86.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/logger.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/logger.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_gfx.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_gfx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_image.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_image.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_mixer.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_mixer.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_mixer_nosmpeg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_mixer_nosmpeg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_net.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_net.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_ttf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/sdl_ttf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/smpeg.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sdl/smpeg.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3db.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3db.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3dyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3dyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3dyn.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3ext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlite3ext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlitedb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/sqlite/sqlitedb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/svgalib/svgalib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/svgalib/svgalib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/svgalib/vgamouse.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/svgalib/vgamouse.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/symbolic/symbolic.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/symbolic/symbolic.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/symbolic/symbolic.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/syslog/systemlog.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/syslog/systemlog.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tcl/tcl80.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tcl/tcl80.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tplylib/lexlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tplylib/lexlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tplylib/yacclib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/tplylib/yacclib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/unzip/unzip51g.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/unzip/unzip51g.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/unzip/ziptypes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/unzip/ziptypes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/grp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/grp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/pwd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/pwd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/users.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/users.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/users/users.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utils-pas2js/dirwatch.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utils-pas2js/dirwatch.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utils-pas2js/httpcompiler.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utils-pas2js/httpcompiler.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utmp/utmp.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/utmp/utmp.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.ioutils.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.ioutils.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.ioutils.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.messaging.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.messaging.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.netencoding.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.netencoding.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.netencoding.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.permissions.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/vcl-compat/system.permissions.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/wasmedge/libwasmedge.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/wasmedge/libwasmedge.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/wasmtime/wasmtime.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/wasmtime/wasmtime.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidldefs.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidldefs.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlparser.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlparser.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlparser.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlscanner.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlscanner.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidlscanner.rsj
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltopas.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltopas.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltopas2js.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltopas2js.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltowasmjob.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/webidl/webidltowasmjob.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/cursorfont.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/deckeysym.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/dpms.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/fontconfig.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/fontconfig.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/hpkeysym.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/keysym.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/mitmisc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/mitmisc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/multibuf.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/multibuf.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/security.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/security.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/shape.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/shape.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/sunkeysym.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/sync.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/sync.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/x.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/x.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xag.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xag.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xatom.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xcms.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xcms.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xcup.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xdbe.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xdbe.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xevi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xevi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xext.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xext.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xf86dga.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xf86dga.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xf86keysym.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xf86vmode.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xf86vmode.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xfixes.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xfixes.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xft.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xft.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xge.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xge.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xi.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xi.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xi2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xi2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinerama.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinerama.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinput.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinput.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinput2.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xinput2.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xkb.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xkb.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xkblib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xkblib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xlbx.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xmd.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xmd.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xrandr.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xrandr.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xrender.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xrender.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xresource.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xresource.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xshm.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xshm.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xtestext1.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xtestext1.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xutil.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xutil.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xv.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xvlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/x11/xvlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/xforms/xforms.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/xforms/xforms.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zlib/zlib.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zlib/zlib.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/xqc.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/xqc.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/zorba.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/zorba.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/zorbadyn.o
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/zorbadyn.ppu
+lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/zorba/zorbadyn.rsj
+lib/fpc/lexyacc/yylex.cod
+lib/fpc/lexyacc/yyparse.cod
+lib/libpas2jslib.so
+man/man1/bin2obj.1.gz
+man/man1/chmcmd.1.gz
+man/man1/chmls.1.gz
+man/man1/data2inc.1.gz
+man/man1/delp.1.gz
+man/man1/fd2pascal.1.gz
+man/man1/fp.1.gz
+man/man1/fpc.1.gz
+man/man1/fpcjres.1.gz
+man/man1/fpclasschart.1.gz
+man/man1/fpcmake.1.gz
+man/man1/fpcmkcfg.1.gz
+man/man1/fpcres.1.gz
+man/man1/fpcsubst.1.gz
+man/man1/fpdoc.1.gz
+man/man1/fppkg.1.gz
+man/man1/fprcp.1.gz
+man/man1/grab_vcsa.1.gz
+man/man1/h2pas.1.gz
+man/man1/h2paspp.1.gz
+man/man1/makeskel.1.gz
+man/man1/pas2fpm.1.gz
+man/man1/pas2jni.1.gz
+man/man1/pas2ut.1.gz
+man/man1/plex.1.gz
+man/man1/postw32.1.gz
+man/man1/ppc386.1.gz
+man/man1/ppcarm.1.gz
+man/man1/ppcppc.1.gz
+man/man1/ppcsparc.1.gz
+man/man1/ppcx64.1.gz
+man/man1/ppdep.1.gz
+man/man1/ppudump.1.gz
+man/man1/ppufiles.1.gz
+man/man1/ppumove.1.gz
+man/man1/ptop.1.gz
+man/man1/pyacc.1.gz
+man/man1/rmcvsdir.1.gz
+man/man1/rstconv.1.gz
+man/man1/unitdiff.1.gz
+man/man5/fpc.cfg.5.gz
+man/man5/fpcmake.5.gz
+man/man5/ptop.cfg.5.gz
+%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/ide/readme.ide
+%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/symbolic/optimization.txt
+%%PORTDOCS%%%%DOCSDIR%%-%%PORTVERSION%%/symbolic/symbolic.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/aspell/examples/example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/bzip2/examples/pasbzip.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/dbus/examples/busexample.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/asiotest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/b64.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/b64dec.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/b64enc.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/b64test.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/b64test2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/base64decodingtestcase.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/cachetest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/cfgtest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/debugtest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/doecho.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/dparser.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/dsockcli.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/dsocksvr.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/fpdoc.dtd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/fstream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/htdump.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/isockcli.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/isocksvr.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/istream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/list.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/mstream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/poolmm1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/poolmm2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/restest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/sockcli.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/socksvr.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/sstream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/stringl.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/tarmakercons.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/tarmakerconsgzip.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testapp.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testbf.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testbs.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testcgi.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testcont.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testez.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testhres.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testnres.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testol.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testproc.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testreg.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testrhre.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testrnre.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testrsre.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testrtf.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testser.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testsres.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testthreadpool.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testtimer.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testunzip.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testur.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testweb.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testz.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testz2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/testzip.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/threads.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/tidea.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/tstelcmd.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/tstelgtk.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/txmlreg.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-base/examples/xmldump.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-css/examples/cssmin.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-css/examples/extractcssclasses.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/dbftoolsunit.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/dbtestframework.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/memdstoolsunit.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/sdfdstoolsunit.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/sqldbtoolsunit.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testbasics.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testdatasources.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testdbbasics.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testdddiff.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testfieldtypes.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/testsqlscript.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-db/examples/toolsunit.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-extra/examples/showver.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-hash/examples/demosha256.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-image/examples/createbarcode.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-image/examples/drawing.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-image/examples/imgconv.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-image/examples/wrpngf.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-image/examples/wrqoif.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-json/examples/confdemo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-json/examples/ini2json.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-json/examples/j2y.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-json/examples/parsedemo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-json/examples/simpledemo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/ip6test.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/svrclass.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testdns.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testhosts.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testhst.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testnet.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testproto.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testsvc.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-net/examples/testuri.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-process/examples/dbugsrv.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-process/examples/ipcclient.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-process/examples/ipcserver.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-registry/examples/tregtestframework.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-xml/examples/domunit.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-xml/examples/testgen.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fcl-xml/examples/xmlts.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fftw/examples/example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fv/examples/platform.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/fv/examples/testapp.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gdbint/examples/mingw.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gdbint/examples/symify.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gdbint/examples/testgdb.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gdbm/examples/testgdbm.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gdbm/examples/testgdbm2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ggi/examples/ggi1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/gmp_accept_test.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/gmp_test_impl.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/gmp_test_intf.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/gmp_testcase.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/pidigits_example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/pidigits_example2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/printf_example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/printf_example2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/scanf_example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gmp/examples/scanf_example2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gnutls/examples/privkey.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gnutls/examples/srvcacert.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gnutls/examples/testgnutls.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/filechooser/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/filechooser/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/filechooser/beipiel.glade
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/filechooser/glade.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/filechooser/simple.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gettingstarted/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gettingstarted/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gettingstarted/gettingstarted.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/appwindow.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/button_box.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/colorsel.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/dialog.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/drawingarea.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/editable_cells.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/gtk_demo.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/images.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/init.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/item_factory.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/list_store.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/menus.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/panes.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/pixbufs.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/sizegroup.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/stock_browser.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/textview.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtk_demo/tree_store.inc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtkglext/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtkglext/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/gtkglext/gears.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld/helloworld.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld2/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld2/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/helloworld2/helloworld2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/plugins/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/plugins/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/plugins/main.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/plugins/plugin.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/scribble_simple/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/scribble_simple/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/gtk2/examples/scribble_simple/scribble_simple.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/hash/examples/hmd5.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/hash/examples/hsha1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/hash/examples/md5performancetest.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/hash/examples/mdtest.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/hash/examples/sha1performancetest.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd22/examples/minimain.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd22/examples/mod_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd22/examples/mod_hello.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd22/examples/mod_spelling.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd22/examples/testmodule.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/httpd24/examples/mod_hello.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ibase/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ibase/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ibase/examples/testib40.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ibase/examples/testib60.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/iconvenc/examples/iconvtest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/imagemagick/examples/screenshot.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/imagemagick/examples/wanddemo.dpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/imagemagick/examples/wanddemo.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libcurl/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libcurl/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libcurl/examples/testcurl.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libcurl/examples/teststream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libenet/examples/clientapp.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libenet/examples/serverapp.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libffi/examples/simple.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libfontconfig/examples/testfc.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libgd/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libgd/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libgd/examples/gdtest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libgd/examples/gdtestcgi.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmagic/examples/basic.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/basicauthentication.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/benchmark.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/benchmark_https.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/chunked_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/demo_https.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/digest_auth_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/dual_stack_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/fileserver_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/fileserver_example_dirs.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/fileserver_example_external_select.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/hellobrowser.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/https_fileserver_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/largepost.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/logging.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/minimal_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/minimal_example_comet.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/post_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/querystring_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/refuse_post_example.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/responseheaders.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/sessions.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/simplepost.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libmicrohttpd/examples/tlsauthentication.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libsee/examples/mod_stream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libsee/examples/teststream.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libsee/examples/testwrite.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libsee/examples/tlibsee.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/exutils.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/io1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/io2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/reader1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/reader2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/test1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/test2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/tree1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/libxml2/examples/tree2.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/mysql/examples/mysqls.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/mysql/examples/testdb3.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/mysql/examples/testdb4.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/db_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/edit_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/firework.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/menu_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/ocrt_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/screen_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t1form.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t1menu.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t1panel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t2form.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t2menu.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t2panel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/t3form.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tbackground.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tclock.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tevent.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tmouse.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tnlshello.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/tpad.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ncurses/examples/twindow.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/detgpbte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/detgpdte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/detgsyte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/detgtrte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigbs1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigbs2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigbs3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigbs4te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigge1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigge3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggg1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggg2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggg3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggg4te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggs1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggs2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggs3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eiggs4te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigsv1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigsv3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigts1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigts2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigts3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/eigts4te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/intge1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/intge2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/intge3te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgenex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgente.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgpdex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgpdte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgsyex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/invgsyte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomremex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomrevex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomrewrsex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomwrmex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomwrmte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/iomwrvex.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/odeiv1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/odeiv2te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/roof1rte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/roofnrt1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/roofnrte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/roopolte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/sledtrte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegbalt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegbate.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegenlt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegente.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/sleglslt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/sleglste.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegpblt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegpbte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegpdlt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegpdte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegsylt.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegsyte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/slegtrte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/speentte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/spege1te.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/spemaxte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/spepolte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/spepowte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/spesgnte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/test.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/timer.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/numlib/examples/turte.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/odbc/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/odbc/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/odbc/examples/testodbc.mdb
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/odbc/examples/testodbc.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/openal/examples/madopenal.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/opengl/examples/bounce.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/opengl/examples/glutdemo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/opengl/examples/glxtest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/opengl/examples/morph3d.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/opengl/examples/radblur.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/openssl/examples/test1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/oracle/examples/oraclew.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/oracle/examples/test01.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/cderror.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/cdjpeg.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/cjpeg.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/demo.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/djpeg.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/fcache.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/jpegtran.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdbmp.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdcolmap.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdjpgcom.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdppm.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdswitch.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/rdtarga.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/test.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/test1.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/testproj.dpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/transupp.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/wrbmp.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/wrjpgcom.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/wrppm.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pasjpeg/examples/wrtarga.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/paszlib/examples/example.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/paszlib/examples/minigzip.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/paszlib/examples/miniunz.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/paszlib/examples/minizip.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/postgres/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/postgres/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/postgres/examples/testpg1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/postgres/examples/testpg2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/area.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/buffer.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/clear.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/clip.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/con_info.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/console.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/fire.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/flower.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/hicolor.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/image.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/image.tga
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/keyboard.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/keyboard2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/keyboard3.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/land.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/lights.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/modes.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/mojo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/mojo.raw
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/mouse.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/palette.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/pixel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/ptcgl.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/ptcgl2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/random.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/save.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/stretch.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/stretch.tga
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/texwarp.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/timer.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/tunnel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/tunnel3d.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/ptc/examples/tunnel3d.raw
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/pxlib/examples/ppxview.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/demowd.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/splitwords.lpi
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/splitwords.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/testreg1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/regexpr/examples/testure.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rexx/examples/callrexx.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tarrayprojectdouble.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tarrayprojectsingle.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tcomparerproject.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/thashmapcaseinsensitive.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/thashmapextendedequalitycomparer.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/thashmapproject.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tobjectlistproject.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tqueueproject.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/rtl-generics/examples/tstackproject.lpr
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/sqlite/examples/test.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/sqlite/examples/testapiv3x.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/svgalib/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/svgalib/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/svgalib/examples/testvga.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/svgalib/examples/vgatest.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/symbolic/examples/easyevalexample.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/symbolic/examples/evaltest.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/symbolic/examples/rpnthing.pas
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/syslog/examples/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/syslog/examples/Makefile.fpc
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/syslog/examples/testlog.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/tcl/examples/tcl_demo.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/users/examples/testpass.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/users/examples/testpass2.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/users/examples/testuser.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/utmp/examples/testutmp.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/wasmtime/examples/gcd.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/wasmtime/examples/helloworld.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/wasmtime/examples/memory.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/wasmtime/examples/wasi.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/arrowbutton.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/borderwidth.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/boxtype.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/browserall.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/browserop.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/buttonall.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/butttypes.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/canvas.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/chartall.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/chartstrip.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/choice.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/colbrowser.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/colsel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/colsel1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/counter.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/cursor.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/fbrowse.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/fbrowse1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/fdial.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/flclock.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/fonts.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/free1.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/goodies.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/group.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/iconify.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/inputall.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/invslider.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/lalign.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/ldial.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/ll.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/longlabel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/menu.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/minput.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/multilabel.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/ndial.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/newbutton.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/objinactive.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/objpos.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/objreturn.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/positioner.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/pup.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/pushbutton.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/pushme.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/secretinput.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/sliderall.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/touchbutton.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/xyplotover.pp
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%-%%PORTVERSION%%/xforms/examples/yesno.pp
+@dir etc/fppkg/conf.d