Warning: there may be occasional oddness due to css and blog edits. **KNOWN ISSUE: possible hidden text**

Thursday, April 30, 2026

Flameshot qt6 update success

Commits on Nov 20, 2025

    Save my place,
    
Commits on Nov 18, 2025

    Update to May 17th upstream commit.
    Update to May 14th upstream commit.
    Update to May 12th upstream commit.
    Update to May 11th upstream commit.
    Update to May 10th upstream commit.
    Update to May 2nd upstream commit.
    Update to May 1st upstream commit.
    Update to April 28th upstream commit.
    Update to April 27th upstream commit.
    Update to April 7th upstream commit.
    Update to March 17th upstream commit.
    Update to March 7th upstream commit.
    Update to March 4th upstream commit.
    Update to Feb 26th upstream commit.

I once wrote in a blog post:


The error told us that it couldn't find the directory for the includes, so perhaps we need to be more explicit or modify the src/CMakeLists.txt file in work/flameshot.  After no progress with plenty of effort, I decided to patch a file and this got the build process going a bit farther forward but still quit with errors.

root@ichigo:/home/tigersharke/flameshot-dev # cat files/patch-src_CMakeLists.txt 
--- src/CMakeLists.txt.orig     2025-11-21 21:00:13 UTC
+++ src/CMakeLists.txt
@@ -226,7 +226,7 @@ target_link_libraries(
         Qt${QT_VERSION_MAJOR}::Svg
         Qt${QT_VERSION_MAJOR}::Network
         Qt${QT_VERSION_MAJOR}::Widgets
-        QtColorWidgets
+        /usr/local/include/QtColorWidgets
 )
 if (UNIX)
 target_link_libraries(

I succeeded to get cmake to finally find the QtColorWidgets but now it seems like it still isn't what is expected because some things are different or missing.

slations/Internationalization_zh_HK.qm && cd /home/tigersharke/flameshot-dev/work/.build/src && /usr/local/bin/cmake -E copy /home/tigersharke/flameshot-dev/work/.build/src/Internationalization_zh_TW.qm /home/tigersharke/flameshot-dev/work/.build/src/translations/Internationalization_zh_TW.qm
ld: error: undefined symbol: color_widgets::ColorWheel::ColorWheel(QWidget*)
>>> referenced by colorpickereditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/colorpickereditor.cpp.o:(ColorPickerEditor::ColorPickerEditor(QWidget*))
>>> referenced by sidepanelwidget.cpp
>>>               src/CMakeFiles/flameshot.dir/widgets/panel/sidepanelwidget.cpp.o:(SidePanelWidget::SidePanelWidget(QPixmap*, QWidget*))
>>> referenced by uicoloreditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/uicoloreditor.cpp.o:(UIcolorEditor::initColorWheel())

ld: error: undefined symbol: color_widgets::ColorWheel::setColor(QColor)
>>> referenced by colorpickereditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/colorpickereditor.cpp.o:(ColorPickerEditor::ColorPickerEditor(QWidget*))
>>> referenced by sidepanelwidget.cpp
>>>               src/CMakeFiles/flameshot.dir/widgets/panel/sidepanelwidget.cpp.o:(SidePanelWidget::SidePanelWidget(QPixmap*, QWidget*))
>>> referenced by sidepanelwidget.cpp
>>>               src/CMakeFiles/flameshot.dir/widgets/panel/sidepanelwidget.cpp.o:(SidePanelWidget::onColorChanged(QColor const&))
>>> referenced 4 more times

ld: error: undefined symbol: color_widgets::ColorWheel::colorSelected(QColor)
>>> referenced by colorpickereditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/colorpickereditor.cpp.o:(ColorPickerEditor::ColorPickerEditor(QWidget*))
>>> referenced by sidepanelwidget.cpp
>>>               src/CMakeFiles/flameshot.dir/widgets/panel/sidepanelwidget.cpp.o:(SidePanelWidget::SidePanelWidget(QPixmap*, QWidget*))
>>> referenced by uicoloreditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/uicoloreditor.cpp.o:(UIcolorEditor::initColorWheel())

ld: error: undefined symbol: color_widgets::ColorWheel::staticMetaObject
>>> referenced by colorpickereditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/colorpickereditor.cpp.o:(ColorPickerEditor::ColorPickerEditor(QWidget*))
>>> referenced by sidepanelwidget.cpp
>>>               src/CMakeFiles/flameshot.dir/widgets/panel/sidepanelwidget.cpp.o:(SidePanelWidget::SidePanelWidget(QPixmap*, QWidget*))
>>> referenced by uicoloreditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/uicoloreditor.cpp.o:(UIcolorEditor::initColorWheel())

ld: error: undefined symbol: color_widgets::ColorWheel::colorChanged(QColor)
>>> referenced by uicoloreditor.cpp
>>>               src/CMakeFiles/flameshot.dir/config/uicoloreditor.cpp.o:(UIcolorEditor::initColorWheel())
c++: error: linker command failed with exit code 1 (use -v to see invocation)
ninja: build stopped: subcommand failed.
===> Compilation failed unexpectedly.
Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
the maintainer.
*** Error code 1

Stop.
make: stopped making "install" in /home/tigersharke/flameshot-dev

I should not have needed to patch the file to convince cmake to find QtColorWidgets but even this was not entirely successful.  Something seems strange with this project.  Does it use Qt5 or Qt6 and does a mish mosh of the two affect how everything fits together?  How do I manipulate all of this to make a nice smooth build?  Since I am making only limited progress and possibly making a few missteps that may be temporary improvements, I'll try another method.

...


Now to the present, quite a while later, though not like I didn't frequently look at the git repos since then somewhat longingly for closure.

This whole process was set aside, put on hold.  I couldn't at the time figure it out.  I am not sure if something in the /usr/ports/Mk files changed, updated, improved in the time between November 2025 and now but surely something did.  I finally succeeded and also realized some new methods to find information.

The error output above was due to my patch file that added an include directory instead of a library, but now it is corrected.

root@ichigo:/home/tigersharke/GitRepos/flameshot-dev # cat files/patch-src_CMakeLists.txt 
--- src/CMakeLists.txt.orig     2025-11-21 21:00:13 UTC
+++ src/CMakeLists.txt
@@ -226,7 +226,7 @@ target_link_libraries(
         Qt${QT_VERSION_MAJOR}::Svg
         Qt${QT_VERSION_MAJOR}::Network
         Qt${QT_VERSION_MAJOR}::Widgets
-        QtColorWidgets
+        /usr/local/lib/libQtColorWidgets-Qt52.so
 )
 if (UNIX)
 target_link_libraries(

When I am searching for dependencies, I can go to /usr/ports and search grep -R QtColorWidgets * to find any file in all of those directories that has that mentioned.  I can look in /usr/ports/devel to see if I can find other dependencies and install them, then use pkg info x11-toolkits/color-widgets-qt5 to see what it installs, and choose the shared library line.

root@ichigo:/home/tigersharke/GitRepos/flameshot-dev # pkg info x11-toolkits/color-widgets-qt5
color-widgets-qt5-2.2.0
Name           : color-widgets-qt5
Version        : 2.2.0
Installed on   : Sun Apr 12 20:03:27 2026 CDT
Origin         : x11-toolkits/color-widgets-qt5
Architecture   : FreeBSD:15:amd64
Prefix         : /usr/local
Categories     : x11-toolkits
Licenses       : LGPL3
Maintainer     : yuri@FreeBSD.org
WWW            : https://gitlab.com/mattia.basaglia/Qt-Color-Widgets
Comment        : Qt (C++) widgets to manage color inputs
Shared Libs required:
        libQt5Core.so.5
        libQt5Gui.so.5
        libQt5Widgets.so.5
        libc++.so.1
        libc.so.7
        libcxxrt.so.1
        libgcc_s.so.1
        libm.so.5
Shared Libs provided:
        libQtColorWidgets-Qt52.so.2
Annotations    :
        FreeBSD_version: 1500507
Flat size      : 585KiB
Description    :
Qt-Color-Widgets is a color dialog that is more user-friendly than the default
QColorDialog and several other color-related widgets.

The provided widgets are:
* ColorWheel, An analog widget used to select a color
* ColorPreview, A simple widget that displays a color
* GradientSlider, A slider that has a gradient background
* HueSlider, A variant of GradientSlider that has a rainbow background
* ColorSelector, A ColorPreview that shows a ColorDialog when clicked
* ColorDialog, A dialog that uses the above widgets to provide a better user
  experience than QColorDialog
* ColorListWidget, A widget to edit a list of colors
* Swatch, A widget to display a color palette
* ColorPaletteWidget, A widget to use and manage a list of palettes
* Color2DSlider, An analog widget used to select 2 color components
* ColorLineEdit, A widget to manipulate a string representing a color
* HarmonyColorWheel, A ColorWheel which allows defining multiple colors,
  separated by hue
* GradientListModel, A QAbstractListModel used to list gradients (useful for
  comboboxes, list views and the like)

Things for qt are somewhat of a mixed bag, some libraries go to expected directories or those that are more obvious, others not so much.

/usr/local/lib/qt5/libQt5Gui.so 
/usr/local/lib/qt6/libQt6DesignerComponents.so 
/usr/local/lib/libkdsingleapplication-qt6.so

If I look in each of those library directories I can find whether there is any other library for libQtColorWidgets.

root@ichigo:/home/tigersharke/GitRepos/flameshot-dev # ls /usr/local/lib/libQtColorWidgets-Qt52.so.2
libQtColorWidgets-Qt52.so.2.2.0* libQtColorWidgets-Qt52.so.2@

What baffled me for a long time after everything sucessfully built, was that I couldn't do make makeplist > pkg-plist to make the pkg-plist file.  I figured it out though and it probably is not very obvious.  I had I had a mistake in my USES line due to my previous repeated iterations to get the change for qt6 from the upstream update to work, build.

USES=	cmake qmake qt:5 qt:6 desktop-file-utils gl

When I removed qmake from that line, the pkg-plist was generated as expected.  I updated my repo for this to keep my successful build but now that I cured the pkg-plist issue, I can make another update for the Makefile and add the pkg-plist file it needs as well.  Definitely this whole belated success and that last nit finally cured are reasons to celebrate

If you're updating an official port or one mainly for yourself that you provide to the public also, or creating a new port based on something in an upstream git repo, it may take time to figure it out.  Maybe you need a break when frustration gets to an unbearable level, but be sure to return sometime later and see if you can see what was wrong that was clouded by emotion.  Maybe upstream will have changed its code enough that now those same problems no longer apply, or perhaps mechanisms for porting in FreeBSD may have been improved.

There are plenty of sources for information, and ways to find it.  grep -R keyword * can help dig through things in /usr/ports/Mk to find the option or a clue how to succeed.  Do the search in /usr/ports to find how someone else may have tackled the same issue, similar ports.  Search within a patch file by using that as the key word, like grep -R patch- * because any patch in a port's leaf directory will be in its files subdirectory given a "patch-" prefix in its name.  And remember, FreeBSD Porter's Handbook and FreeBSD Discord are options for help among many.


UPDATE:
I have discovered that although it built perfectly and created all the files, something is wrong because taking a screenshot fails to save a png that is a real png.  I am looking into things, expecting that somewhere a dependency may be wrong or some other odd issue related to how I convinced flameshot to build.

Tuesday, April 28, 2026

Shell config overhaul

I ran into a problem that gui elements including fonts were once more extra small and unusable.  I knew that I had some environment variables set in my ~/.fvwm/config file and some in my ~/.cshrc file.  What I discovered were some mistakes and a pile of junk in various files that was no longer needed or were duplications.  I decided it was time for a shell config overhaul.

The various environment variables which are meant to modify how QT or QT-based applications render were set in multiple places, multiple files.  In order to be certain that everything works correctly and as intended, I need to have one place for these adjustments and others when needed.  Then I won't be wondering why later after an edit to one location fails to have the effect because its still different in another place that might be loaded later or conditionally somehow.

The .cshrc files can be chained or live-appended with one line, to source it which essentially means to read it into memory.  If you modify your .cshrc file and are already logged-in or have a terminal already opened, you can cause your changes to be applied by source .cshrc, and such a line can be placed in a file as well.

FVWM has its own configuration file, but if I separate useful portions of the .cshrc file into its own file, I can both chain load it with source from one .cshrc file to another, as well as append it with a particular line in my ~/.fvwm/config file.  This will mean that all those things will be used in multiple places or for more than one purpose, but only one copy to edit.  The only difference is that an xterm opened via FVWM might need FVWM itself to be refreshed (reloaded) for its config file to adopt the changes affecting an xterm or shell aliases or more.

Taking my own advice from a previous post, sample configs can change so I sought out the appropriate file, /usr/share/skel/dot.cshrc which turns out to be rather small but this is the one that is automatically copied for any new user with csh or tcsh shells.  I looked at other sample files, one which is very interesting /usr/share/examples/csh/dot.cshrc because it is not precisely ready-to-use but filled with ideas that one could include in their ~/.cshrc file.  The actual official /etc/csh.cshrc has only one line, a comment.

I am going to copy the /usr/share/skel/dot.cshrc as my ~/.cshrc file, then take the useful parts of .cshrc-local and .cshrc-personal files for a fresh .cshrc-local, and all the piles of notes into a new file maybe named .shell-notes or .cshrc-notes or something.  This has me thinking that maybe it would make sense to force myself into individual single-purpose files.  Each file could become large but would also make it simple to find what has been done, or potential for re-use in even more things.  I was not initially planning to modify the default .cshrc file I copied, but I think it would be best if I do instead of duplicating for overrides.  It is a small file, I'll just comment out or add a revised line as needed.

Three of the four files, starting with ~/.cshrc taken from /usr/share/skel/dot.cshrc with modifications.

#
# .cshrc - csh resource script, read at beginning of execution by each shell
#
# see also csh(1), environ(7).
# more examples available at /usr/share/examples/csh/
#

#alias h		history 25
#alias j		jobs -l
#alias la	ls -aF
#alias lf	ls -FA
#alias ll	ls -lAF

# These are normally set through /etc/login.conf.   You may override them here
# if wanted.
set path = (/sbin /bin /usr/sbin /usr/bin /usr/local/sbin /usr/local/bin /usr/local/libexec/ccache $HOME/bin $HOME/scripts)
# A righteous umask
umask 22

setenv	EDITOR	vi
setenv	PAGER	less

if ($?prompt) then
	# An interactive shell -- set some stuff up
	set prompt = "%{\033[31m%}${USER}%{\033[0m%}@%{\033[32m%}%m%{\033[0m%} %{\033[35m%}[%~]%{\033[0m%} %# "
	#set prompt = "%N@%m:%~ %# "
	set promptchars = "%#"

	set filec
	set history = 1000
	set savehist = (1000 merge)
	set autolist = ambiguous
	# Use history to aid expansion
	set autoexpand
	set autorehash
	set mail = (/var/mail/$USER)
	if ( $?tcsh ) then
		bindkey "^W" backward-delete-word
		bindkey -k up history-search-backward
		bindkey -k down history-search-forward
	endif

endif

source /home/tigersharke/.cshrc-env
source /home/tigersharke/.cshrc-alias

The new .cshrc-envfile filled with setenv statements, now alphabetized for future convenience.

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# set assignments go in .cshrc
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
setenv AUTOLOGOUT 30
setenv BLOCKSIZE K
setenv CCACHE_DIR /var/cache/ccache
setenv CCACHE_PATH /usr/bin:/usr/local/bin
setenv CCACHE_LOGFILE /var/log/ccache.log
setenv CLICOLOR true
setenv CRYPTOGRAPHY_OPENSSL_NO_LEGACY true
setenv EDITOR vi
setenv IRCNICK Tigersharke
setenv IRCNAME thatoneguy
setenv IRCSERVER irc.libera.chat
setenv LANG en_US.UTF-8
setenv LANGUAGE en_US.UTF-8
setenv LC_ALL en_US.UTF-8
setenv LC_CTYPE POSIX
setenv LSCOLORS Exfxcxdxbxegedabagacad
setenv PAGER more
setenv QT_AUTO_SCREEN_SCALE_FACTOR 1
setenv QT_ENABLE_HIGHDPI_SCALING 1
setenv QT_QPA_PLATFORM xcb
setenv QT_QPA_PLATFORMTHEME qt6ct

#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# pkg install misc/qt5ct or misc/qt6ct:
#  QT_QPA_PLATFORMTHEME qt6ct
# Boolean 0/1:
#  QT_AUTO_SCREEN_SCALE_FACTOR 1
#  QT_ENABLE_HIGHDPI_SCALING 1
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# QT_SCREEN_SCALE_FACTORS
# Sets a list of screen scale factors.  The list can be in one of two formats;
# either a semicolon-separated list of screen scale factors ("1;1.5;2"), or
# a semicolon-separated list of screen=factor entries ("screenA=1;screenB=1.5;
# screenC=2").  Setting this environment variable is not recommended since it
# prevents Qt from using system DPI values.
#
#When stuck with vesa:
#setenv QT_SCALE_FACTOR .25
#setenv QT_SCREEN_SCALE_FACTORS .25
#
#When stuck with scfb:
#setenv QT_SCALE_FACTOR .35
#setenv QT_SCREEN_SCALE_FACTORS .35
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

These are the aliases that remain, in its own .cshrc-alias file. Some aliases are necessary for camelcase or executable name mystery and others are for convenience.  Mostly organized alphabetical by alias name which is how alias would list them, but with a few reminders at the bottom I don't remember for porting things.  I can use tabs to space things for easier readability in vi but not from the alias output.

alias 2gs			mame apple2gs -sl7 "cffa2" -hard1 "software/my_appleIIgs-hdd.chd" -hard2 "software/my_IIgs-hdd-120mb.chd"
alias fixnet 			/etc/rc.d/netif restart ign0
alias fixtime 			ntpdate -b 0.freebsd.pool.ntp.org
alias freedroidrpg 		freedroidRPG
alias less			less --mouse
alias today			date "+%m/%d/%Y"
alias neovim			nvim
alias neovim-qt 		nvim-qt
alias notepadnext 		NotepadNext
alias veloren 			veloren-voxygen
alias ircii 			irc
alias ircII 			irc
alias myworldip 		lynx -dump checkip.dyndns.org
alias nice  			/usr/bin/nice
alias pkeg-distclean		'poudriere distclean -a'
alias portlint  		'echo;echo;\portlint'
alias quitx 			'killall -HUP Xorg'
alias recert			make -C  /usr/ports/security/ca_root_nss reinstall clean
alias rekernconf  		'ln -s /root/kernconf/ICHIGO /usr/src/sys/amd64/conf/ICHIGO ; ln -s /root/kernconf/RACK /usr/src/sys/amd64/conf/RACK'
alias sorta 			sort -d -u
alias tnt			'poudriere jail -u -v stable/15 -a amd64 -j 15amd64 -b -m src=/usr/src'
alias virtoss 			'virtual_oss -Q 0 -C 2 -c 2 -r 48000 -b 16 -s 1024 -P /dev/dsp6 -R /dev/null -w vdsp.wav -l dsp'
alias zfs-df 			'zfs list -o space'

unalias h
unalias j
unalias la
unalias lf
unalias ll

alias cmake-opts  		"cmake -L | awk '{if(f)print} /-- Cache values/{f=1}'"
alias autotools-opts  	'./autogen.sh && ./configure --help=recursive'
alias autotools-too 	'autoreconf && ./configure --help=recursive'

The idea that I could insert the .cshrc-env file into my fvwm3 config worked except that I had a few little mistakes in the file.  I believe that because FVWM is kind of in its own shell when started, it doesn't know $PATH set in the .cshrc file, so revising this in the .cshrc-env file may cause xterms to break.  Another mistake I made was how I fixed the first error by adding it to the .cshrc file.  Either my syntax was wrong or I cannot revise the path variable on a line later in the file, whatever the reason, I just revised the set path variable line to add more to it.  I did make a syntax error with doing this also, and eventually cured everything so that all things worked without errors or error messages.  I knew for certain that I had an error when my background image wasn't loading and things in the fvwm buttons were absent.  Another day I might spend looking through the cool things I could add from the /usr/share/examples/csh/dot.cshrc file but I'm not going to rush that so I can put it in this blog post.

If I hadn't explored the sample files for .cshrc then I would never have discovered a compilation of cool stuff is already on my system to peruse.  Defaults may be nice, they're functional, but there are plenty of ways to change things on your system to make it fit your needs better.  You may not even believe there is any need to do so right now, but explore and find out for yourself.  It may be that some of the shell tricks mentioned in this Larvitz blog post are in that file.  Many things in Linux are adjusted by environment variables and since the majority of what we may use on FreeBSD is from Linux development, we should familiarize ourselves with what can be done.  I still have plenty to organize on my system but now my .cshrc file (files actually) are easier to maintain and considerably cleaner.

Temporary boot and graphics difficulties

Playing with bios settings mostly related to my graphics for the thrill of it, and to see if any changes would be noticable.  Everything seemed fine, I rebuilt kernel and world, and then a reboot seemed to cause a panic.  Even though I am sure that nothing changed in my mildly customized kernel configuration, something seemed to be different because choosing the prior kernel from the menu booted to the login prompt just fine.

I looked around a bit more.  Not long ago I had a conflict with vmm and virtualbox denying me access.  It was the most peculiar problem that I couldn't solve by using a usb boot media device.  The /boot and /etc directories were missing.  My solution to booting was to disable the virtualization extension in bios, and then I could comment out the vmm and virtualbox lines in /etc/rc.conf and /boot/loader.conf which solved the problem.

The problem with booting now I believe I have solved with updating the amdgpu driver and drm-kmod.  I had updated xlibre not many days prior so I left that alone.  When I worked to update drm-kmod, I noticed that there exists graphics/drm-kmod-latest.  I removed drm-kmod which is now about a year old which is a bit of a surprise.  I decided to try graphics/drm-kmod-latest to see if this would work for me.  After amdgpu driver and drm-kmod-latest were both installed, I had only to reboot to discover if what seemed to be a kernel issue would be cured.

I rebooted, chose the newer kernel that I had just updated, and nearly held my breath.  The graphics transitions and console fonts display were different and I was able to reach the login prompt.  Glorious success.  A nice win after having no success with trying to use bhyve with either Windows 7 or Windows 11 installed from an iso for either.  I expected Windows 11 would work better.  A configuration for Windows 7 that let me see the installer boot screen and first menus didn't even let me see the Windows 11 boot screen.

I had spent a bunch of time trying to get the bios configured back to what it may have been when things worked decently.  Now that everything is working I am not sure it had too much to do with it, but I might have brought everything back without being certain.  I think I will still try tweaking some settings again, I am curious what 'drm psp' was about.

Output of dmesg shows me that there was some issues with graphics drivers, but these are the last two boots, one prior to my reinstalls and one after.  There were other odd messages during boot while I was struggling that I do not see here.  Once more I should have saved the dmesg output before doing anything to fix everything.  It is easy to put the focus on getting everything working properly instead of documenting, I'm not sure I can react differently.

---<>---
Copyright (c) 1992-2025 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 15.0-STABLE stable/15-f6f5d927bf75 ICHIGO amd64
FreeBSD clang version 19.1.7 (https://github.com/llvm/llvm-project.git llvmorg-19.1.7-0-gcd708029e0b2)
VT(efifb): resolution 2560x1440
module_register: cannot register mmc/mmcsd from kernel; already loaded from mmcsd.ko
Module mmc/mmcsd failed to register: 17
CPU: AMD Ryzen 3 3200G with Radeon Vega Graphics     (3593.46-MHz K8-class CPU)
  Origin="AuthenticAMD"  Id=0x810f81  Family=0x17  Model=0x18  Stepping=1
  Features=0x178bfbff
  Features2=0x7ed8320b
  AMD Features=0x2e500800
  AMD Features2=0x35c233ff
  Structured Extended Features=0x209c01a9
  XSAVE Features=0xf
  AMD Extended Feature Extensions ID EBX=0x1007
  SVM: NP,NRIP,VClean,AFlush,DAssist,NAsids=32768
  TSC: P-state invariant, performance statistics
real memory  = 137434759168 (131068 MB)
avail memory = 117435949056 (111995 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: 
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s)
random: registering fast source Intel Secure Key Seed
random: fast provider: "Intel Secure Key Seed"
random: unblocking device.
ioapic0  irqs 0-23
ioapic1  irqs 24-55
Launching APs: 2 3 1
random: entropy device external interface
kbd1 at kbdmux0
efirtc0: 
efirtc0: registered as a time-of-day clock, resolution 1.000000s
smbios0:  at iomem 0xcb9f3000-0xcb9f3017
smbios0: Entry point: v3 (64-bit), Version: 3.3
aesni0: 
acpi0: 
acpi0: Power Button (fixed)
attimer0:  port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
atrtc0:  port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
hpet0:  iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 450
Event timer "HPET1" frequency 14318180 Hz quality 450
Event timer "HPET2" frequency 14318180 Hz quality 450
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <32-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pci0:  at device 0.2 (no driver attached)
pcib1:  at device 1.2 on pci0
pci1:  on pcib1
xhci0:  mem 0xfcba0000-0xfcba7fff at device 0.0 on pci1
xhci0: 32 bytes context size, 64-bit DMA
xhci0: xECP capabilities 
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0:  mem 0xfcb80000-0xfcb9ffff at device 0.1 on pci1
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahcich0:  at channel 0 on ahci0
ahcich1:  at channel 1 on ahci0
ahcich2:  at channel 2 on ahci0
ahcich3:  at channel 3 on ahci0
ahcich4:  at channel 4 on ahci0
ahcich5:  at channel 5 on ahci0
pcib2:  at device 0.2 on pci1
pci2:  on pcib2
pcib3:  at device 0.0 on pci2
pci3:  on pcib3
pcib4:  at device 1.0 on pci2
pci4:  on pcib4
igb0:  port 0xe020-0xe03f mem 0xfc820000-0xfc83ffff,0xfc400000-0xfc7fffff,0xfc844000-0xfc847fff at device 0.0 on pci4
igb0: EEPROM V1.2-1
igb0: Using 1024 TX descriptors and 1024 RX descriptors
igb0: Using 4 RX queues 4 TX queues
igb0: Using MSI-X interrupts with 5 vectors
igb0: Ethernet address: 98:b7:85:1f:b4:ea
igb0: netmap queues/slots: TX 4/1024, RX 4/1024
igb1:  port 0xe000-0xe01f mem 0xfc800000-0xfc81ffff,0xfbc00000-0xfbffffff,0xfc840000-0xfc843fff at device 0.1 on pci4
igb1: EEPROM V1.2-1
igb1: Using 1024 TX descriptors and 1024 RX descriptors
igb1: Using 4 RX queues 4 TX queues
igb1: Using MSI-X interrupts with 5 vectors
igb1: Ethernet address: 98:b7:85:1f:b4:eb
igb1: netmap queues/slots: TX 4/1024, RX 4/1024
pcib5:  at device 2.0 on pci2
pci5:  on pcib5
pcib6:  at device 3.0 on pci2
pci6:  on pcib6
pcib7:  at device 9.0 on pci2
pci7:  on pcib7
pci7:  at device 0.0 (no driver attached)
pcib8:  at device 8.1 on pci0
pci8:  on pcib8
vgapci0:  port 0xf000-0xf0ff mem 0x7f80000000-0x7fbfffffff,0x7fc0000000-0x7fcfffffff,0xfcf00000-0xfcf7ffff at device 0.0 on pci8
hdac0:  mem 0xfcf88000-0xfcf8bfff at device 0.1 on pci8
pci8:  at device 0.2 (no driver attached)
xhci1:  mem 0xfcd00000-0xfcdfffff at device 0.3 on pci8
xhci1: 64 bytes context size, 64-bit DMA
xhci1: xECP capabilities 
usbus1 on xhci1
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2:  mem 0xfcc00000-0xfccfffff at device 0.4 on pci8
xhci2: 64 bytes context size, 64-bit DMA
xhci2: xECP capabilities 
usbus2 on xhci2
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1:  mem 0xfcf80000-0xfcf87fff at device 0.6 on pci8
isab0:  at device 20.3 on pci0
isa0:  on isab0
acpi_button0:  on acpi0
acpi_syscontainer0:  on acpi0
cpu0:  on acpi0
uart: ns8250: UART FCR is broken (0x1)
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
atkbdc0:  at port 0x60,0x64 on isa0
atkbd0:  irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
hwpstate0:  on cpu0
cpufreq0:  on cpu0
Timecounter "TSC-low" frequency 1796702244 Hz quality 1000
Timecounters tick every 1.000 msec
ugen2.1:  at usbus2
ugen1.1:  at usbus1
ugen0.1:  at usbus0
uhub0 on usbus2
uhub1 on usbus1
uhub1:  on usbus1
uhub0:  on usbus2
uhub2 on usbus0
uhub2:  on usbus0
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
hdacc0:  at cad 0 on hdac0
hdaa0:  at nid 1 on hdacc0
pcm0:  at nid 3 on hdaa0
pcm1:  at nid 5 on hdaa0
hdacc1:  at cad 0 on hdac1
hdaa1:  at nid 1 on hdacc1
pcm2:  at nid 20,22,21 and 24,26 on hdaa1
pcm3:  at nid 27 and 25 on hdaa1
pcm4:  at nid 30 on hdaa1
Trying to mount root from zfs:zroot/ROOT/default []...
ada0 at ahcich3 bus 0 scbus3 target 0 lun 0
ada0:  ACS-3 ATA SATA 3.x device
ada0: Serial Number WD-WCC6Y1RHTPZ6
ada0: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 953869MB (1953525168 512 byte sectors)
ada1 at ahcich4 bus 0 scbus4 target 0 lun 0
ada1:  ACS-3 ATA SATA 3.x device
ada1: Serial Number WD-WCC6Y5JNVCXY
ada1: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 953869MB (1953525168 512 byte sectors)
ada2 at ahcich5 bus 0 scbus5 target 0 lun 0
ada2:  ACS-3 ATA SATA 3.x device
ada2: Serial Number WD-WCC6Y0AX25U9
ada2: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada2: Command Queueing enabled
ada2: 953869MB (1953525168 512 byte sectors)
uhub0: 2 ports with 2 removable, self powered
uhub1: 8 ports with 8 removable, self powered
uhub2: 14 ports with 14 removable, self powered
ugen1.2:  at usbus1
usbhid0 on uhub1
usbhid0:  on usbus1
hidbus0:  on usbhid0
ugen1.3:  at usbus1
usbhid1 on uhub1
usbhid1:  on usbus1
hidbus1:  on usbhid1
hkbd0:  on hidbus1
kbd2 at hkbd0
ugen0.2:  at usbus0
ugen1.4:  at usbus1
Root mount waiting for: usbus0
ugen0.3:  at usbus0
usbhid2 on uhub2
usbhid2:  on usbus0
hidbus2:  on usbhid2
ugen0.4:  at usbus0
uhub3 on uhub2
uhub3:  on usbus0
Root mount waiting for: usbus0
uhub3: 4 ports with 4 removable, self powered
TCP Hpts created 4 swi interrupt threads and bound 0 to cpus
Attempting to load tcp_bbr
tcp_bbr is now available
[drm] amdgpu kernel modesetting enabled.
drmn0:  on vgapci0
vgapci0: child drmn0 requested pci_enable_io
vgapci0: child drmn0 requested pci_enable_io
[drm] initializing kernel modesetting (RAVEN 0x1002:0x15D8 0x1043:0x876B 0xC9).
[drm] register mmio base: 0xFCF00000
[drm] register mmio size: 524288
[drm] add ip block number 0 
[drm] add ip block number 1 
[drm] add ip block number 2 
[drm] add ip block number 3 
[drm] add ip block number 4 
[drm] add ip block number 5 
[drm] add ip block number 6 
[drm] add ip block number 7 
[drm] add ip block number 8 
amdgpu/picasso_gpu_info.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_gpu_info.bin either
picasso_gpu_info.bin: could not load binary firmware /boot/firmware/picasso_gpu_info.bin either
amdgpu_picasso_gpu_info.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_gpu_info.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_gpu_info.bin'
drmn0: Fetched VBIOS from VFCT
amdgpu: ATOM BIOS: 113-PICASSO-118
amdgpu/picasso_asd.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_asd.bin either
picasso_asd.bin: could not load binary firmware /boot/firmware/picasso_asd.bin either
amdgpu_picasso_asd.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_asd.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_asd.bin'
amdgpu/picasso_ta.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_ta.bin either
picasso_ta.bin: could not load binary firmware /boot/firmware/picasso_ta.bin either
amdgpu_picasso_ta.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_ta.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_ta.bin'
amdgpu/picasso_pfp.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_pfp.bin either
picasso_pfp.bin: could not load binary firmware /boot/firmware/picasso_pfp.bin either
amdgpu_picasso_pfp.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_pfp.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_pfp.bin'
amdgpu/picasso_me.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_me.bin either
picasso_me.bin: could not load binary firmware /boot/firmware/picasso_me.bin either
amdgpu_picasso_me.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_me.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_me.bin'
amdgpu/picasso_ce.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_ce.bin either
picasso_ce.bin: could not load binary firmware /boot/firmware/picasso_ce.bin either
amdgpu_picasso_ce.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_ce.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_ce.bin'
amdgpu/picasso_rlc_am4.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_rlc_am4.bin either
picasso_rlc_am4.bin: could not load binary firmware /boot/firmware/picasso_rlc_am4.bin either
amdgpu_picasso_rlc_am4.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_rlc_am4.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_rlc_am4.bin'
amdgpu/picasso_mec.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_mec.bin either
picasso_mec.bin: could not load binary firmware /boot/firmware/picasso_mec.bin either
amdgpu_picasso_mec.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_mec.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_mec.bin'
amdgpu/picasso_mec2.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_mec2.bin either
picasso_mec2.bin: could not load binary firmware /boot/firmware/picasso_mec2.bin either
amdgpu_picasso_mec2.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_mec2.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_mec2.bin'
amdgpu/picasso_sdma.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_sdma.bin either
picasso_sdma.bin: could not load binary firmware /boot/firmware/picasso_sdma.bin either
amdgpu_picasso_sdma.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_sdma.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_sdma.bin'
[drm] VCN decode is enabled in VM mode
[drm] VCN encode is enabled in VM mode
[drm] JPEG decode is enabled in VM mode
amdgpu/picasso_vcn.bin: could not load binary firmware /boot/firmware/amdgpu/picasso_vcn.bin either
picasso_vcn.bin: could not load binary firmware /boot/firmware/picasso_vcn.bin either
amdgpu_picasso_vcn.bin: could not load binary firmware /boot/firmware/amdgpu_picasso_vcn.bin either
drmn0: successfully loaded firmware image 'amdgpu/picasso_vcn.bin'
drmn0: Trusted Memory Zone (TMZ) feature enabled
drmn0: PCIE atomic ops is not supported
[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
drmn0: VRAM: 16384M 0x000000F400000000 - 0x000000F7FFFFFFFF (16384M used)
drmn0: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
drmn0: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[drm ERROR :amdgpu_bo_init] Unable to set WC memtype for the aperture base
[drm] Detected VRAM RAM=16384M, BAR=16384M
[drm] RAM width 128bits DDR4
[drm] amdgpu: 16384M of VRAM memory ready
[drm] amdgpu: 57276M of GTT memory ready.
[drm] GART: num cpu pages 262144, num gpu pages 262144
[drm] PCIE GART of 1024M enabled.
[drm] PTB located at 0x000000F401E00000
amdgpu: hwmgr_sw_init smu backed is smu10_smu
amdgpu/raven_dmcu.bin: could not load binary firmware /boot/firmware/amdgpu/raven_dmcu.bin either
raven_dmcu.bin: could not load binary firmware /boot/firmware/raven_dmcu.bin either
amdgpu_raven_dmcu.bin: could not load binary firmware /boot/firmware/amdgpu_raven_dmcu.bin either
drmn0: successfully loaded firmware image 'amdgpu/raven_dmcu.bin'
[drm] Found VCN firmware Version ENC: 1.15 DEC: 3 VEP: 0 Revision: 0
drmn0: Will use PSP to load VCN firmware
[drm] reserve 0x400000 from 0xf7ffc00000 for PSP TMR
drmn0: RAS: optional ras ta ucode is not available
drmn0: RAP: optional rap ta ucode is not available
[drm] psp gfx command LOAD_TA(0x1) failed and response status is (0x7)
[drm] psp gfx command INVOKE_CMD(0x3) failed and response status is (0x4)
drmn0: Secure display: Generic Failure.drmn0: SECUREDISPLAY: query securedisplay TA failed. ret 0x0
[drm] DM_PPLIB: values for F clock
[drm] DM_PPLIB:	 1200000 in kHz, 4399 in mV
[drm] DM_PPLIB: values for DCF clock
[drm] DM_PPLIB:	 300000 in kHz, 3099 in mV
[drm] DM_PPLIB:	 600000 in kHz, 3574 in mV
[drm] DM_PPLIB:	 626000 in kHz, 4250 in mV
[drm] DM_PPLIB:	 654000 in kHz, 4399 in mV
[drm] Display Core v3.2.247 initialized on DCN 1.0
lkpi_iic0:  on drmn0
iicbus0:  on lkpi_iic0
iic0:  on iicbus0
lkpi_iic1:  on drmn0
iicbus1:  on lkpi_iic1
iic1:  on iicbus1
[drm] kiq ring mec 2 pipe 1 q 0
[drm] VCN decode and encode initialized successfully(under SPG Mode).
drmn0: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
drmn0: ring gfx uses VM inv eng 0 on hub 0
drmn0: ring gfx_low uses VM inv eng 1 on hub 0
drmn0: ring gfx_high uses VM inv eng 4 on hub 0
drmn0: ring comp_1.0.0 uses VM inv eng 5 on hub 0
drmn0: ring comp_1.1.0 uses VM inv eng 6 on hub 0
drmn0: ring comp_1.2.0 uses VM inv eng 7 on hub 0
drmn0: ring comp_1.3.0 uses VM inv eng 8 on hub 0
drmn0: ring comp_1.0.1 uses VM inv eng 9 on hub 0
drmn0: ring comp_1.1.1 uses VM inv eng 10 on hub 0
drmn0: ring comp_1.2.1 uses VM inv eng 11 on hub 0
drmn0: ring comp_1.3.1 uses VM inv eng 12 on hub 0
drmn0: ring kiq_0.2.1.0 uses VM inv eng 13 on hub 0
drmn0: ring sdma0 uses VM inv eng 0 on hub 8
drmn0: ring vcn_dec uses VM inv eng 1 on hub 8
drmn0: ring vcn_enc0 uses VM inv eng 4 on hub 8
drmn0: ring vcn_enc1 uses VM inv eng 5 on hub 8
drmn0: ring jpeg_dec uses VM inv eng 6 on hub 8
vgapci0: child drmn0 requested pci_get_powerstate
sysctl_add_oid: can't re-use a leaf (hw.dri.debug)!
lkpi_iic2:  on drm1
iicbus2:  on lkpi_iic2
iic2:  on iicbus2
[drm] Initialized amdgpu 3.54.0 20150101 for drmn0 on minor 0
VT: Replacing driver "efifb" with new "drmfb".
start FB_INFO:
height=2160 width=3840 depth=32
pbase=0x17d228000 vbase=0xfffffe05fec28000
name=drmn0 id=amdgpudrmfb flags=0x0 stride=15360
end FB_INFO
acpi_wmi0:  on acpi0
acpi_wmi0: cannot find EC device
acpi_wmi0: Embedded MOF found
acpi_wmi1:  on acpi0
acpi_wmi1: cannot find EC device
acpi_wmi1: Embedded MOF found
acpi_wmi2:  on acpi0
acpi_wmi2: cannot find EC device
acpi_wmi2: Embedded MOF found
acpi_wmi3:  on acpi0
acpi_wmi3: cannot find EC device
acpi_wmi3: Embedded MOF found
ig4iic0:  iomem 0xfedc5000-0xfedc5fff irq 6 on acpi0
iicbus3:  on ig4iic0
iic3:  on iicbus3
acpi_wmi4:  on acpi0
acpi_wmi4: cannot find EC device
acpi_wmi4: Embedded MOF found
intsmb0:  at device 20.0 on pci0
smbus0:  on intsmb0
hms0:  on hidbus0
hms0: 5 buttons and [XYW] coordinates ID=0
igb0: link state changed to UP
lo0: link state changed to UP
igb0: link state changed to DOWN
igb0: link state changed to UP
Security policy loaded: MAC/ntpd (mac_ntpd)
pid 97686 (endless-sky), jid 0, uid 1001: exited on signal 6 (core dumped)
Waiting (max 60 seconds) for system process `vnlru' to stop... done

Waiting (max 60 seconds) for system process `syncer' to stop... Syncing disks, vnodes remaining... 0 0 done
All buffers synced.
Uptime: 15m5s
uhub0: detached
hms0: detached
hidbus0: detached
usbhid0: detached
hkbd0: detached
hidbus1: detached
usbhid1: detached
uhub1: detached
[drm] psp gfx command UNLOAD_TA(0x2) failed and response status is (0x117)
igb0: link state changed to DOWN
hidbus2: detached
usbhid2: detached
uhub3: detached
uhub2: detached
---<>---
Copyright (c) 1992-2025 The FreeBSD Project.
Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994
	The Regents of the University of California. All rights reserved.
FreeBSD is a registered trademark of The FreeBSD Foundation.
FreeBSD 15.1-PRERELEASE stable/15-7dcfbf4a8bf3 ICHIGO amd64
FreeBSD clang version 19.1.7 (https://github.com/llvm/llvm-project.git llvmorg-19.1.7-0-gcd708029e0b2)
VT(efifb): resolution 2560x1440
module_register: cannot register mmc/mmcsd from kernel; already loaded from mmcsd.ko
Module mmc/mmcsd failed to register: 17
CPU: AMD Ryzen 3 3200G with Radeon Vega Graphics     (3593.37-MHz K8-class CPU)
  Origin="AuthenticAMD"  Id=0x810f81  Family=0x17  Model=0x18  Stepping=1
  Features=0x178bfbff
  Features2=0x7ed8320b
  AMD Features=0x2e500800
  AMD Features2=0x35c233ff
  Structured Extended Features=0x209c01a9
  XSAVE Features=0xf
  AMD Extended Feature Extensions ID EBX=0x1007
  SVM: NP,NRIP,VClean,AFlush,DAssist,NAsids=32768
  TSC: P-state invariant, performance statistics
real memory  = 137434759168 (131068 MB)
avail memory = 117435944960 (111995 MB)
Event timer "LAPIC" quality 600
ACPI APIC Table: 
FreeBSD/SMP: Multiprocessor System Detected: 4 CPUs
FreeBSD/SMP: 1 package(s) x 4 core(s)
random: registering fast source Intel Secure Key Seed
random: fast provider: "Intel Secure Key Seed"
random: unblocking device.
ioapic0  irqs 0-23
ioapic1  irqs 24-55
Launching APs: 3 2 1
random: entropy device external interface
kbd1 at kbdmux0
efirtc0: 
efirtc0: registered as a time-of-day clock, resolution 1.000000s
smbios0:  at iomem 0xcb9f3000-0xcb9f3017
smbios0: Entry point: v3 (64-bit), Version: 3.3
aesni0: 
acpi0: 
acpi0: Power Button (fixed)
attimer0:  port 0x40-0x43 irq 0 on acpi0
Timecounter "i8254" frequency 1193182 Hz quality 0
Event timer "i8254" frequency 1193182 Hz quality 100
atrtc0:  port 0x70-0x71 on acpi0
atrtc0: registered as a time-of-day clock, resolution 1.000000s
Event timer "RTC" frequency 32768 Hz quality 0
hpet0:  iomem 0xfed00000-0xfed003ff irq 0,8 on acpi0
Timecounter "HPET" frequency 14318180 Hz quality 950
Event timer "HPET" frequency 14318180 Hz quality 450
Event timer "HPET1" frequency 14318180 Hz quality 450
Event timer "HPET2" frequency 14318180 Hz quality 450
Timecounter "ACPI-fast" frequency 3579545 Hz quality 900
acpi_timer0: <32-bit timer at 3.579545MHz> port 0x808-0x80b on acpi0
pcib0:  port 0xcf8-0xcff on acpi0
pci0:  on pcib0
pci0:  at device 0.2 (no driver attached)
pcib1:  at device 1.2 on pci0
pci1:  on pcib1
xhci0:  mem 0xfcba0000-0xfcba7fff at device 0.0 on pci1
xhci0: 32 bytes context size, 64-bit DMA
xhci0: xECP capabilities 
usbus0 on xhci0
usbus0: 5.0Gbps Super Speed USB v3.0
ahci0:  mem 0xfcb80000-0xfcb9ffff at device 0.1 on pci1
ahci0: AHCI v1.31 with 6 6Gbps ports, Port Multiplier supported
ahcich0:  at channel 0 on ahci0
ahcich1:  at channel 1 on ahci0
ahcich2:  at channel 2 on ahci0
ahcich3:  at channel 3 on ahci0
ahcich4:  at channel 4 on ahci0
ahcich5:  at channel 5 on ahci0
pcib2:  at device 0.2 on pci1
pci2:  on pcib2
pcib3:  at device 0.0 on pci2
pci3:  on pcib3
pcib4:  at device 1.0 on pci2
pci4:  on pcib4
igb0:  port 0xe020-0xe03f mem 0xfc820000-0xfc83ffff,0xfc400000-0xfc7fffff,0xfc844000-0xfc847fff at device 0.0 on pci4
igb0: EEPROM V1.2-1
igb0: Using 1024 TX descriptors and 1024 RX descriptors
igb0: Using 4 RX queues 4 TX queues
igb0: Using MSI-X interrupts with 5 vectors
igb0: Ethernet address: 98:b7:85:1f:b4:ea
igb0: netmap queues/slots: TX 4/1024, RX 4/1024
igb1:  port 0xe000-0xe01f mem 0xfc800000-0xfc81ffff,0xfbc00000-0xfbffffff,0xfc840000-0xfc843fff at device 0.1 on pci4
igb1: EEPROM V1.2-1
igb1: Using 1024 TX descriptors and 1024 RX descriptors
igb1: Using 4 RX queues 4 TX queues
igb1: Using MSI-X interrupts with 5 vectors
igb1: Ethernet address: 98:b7:85:1f:b4:eb
igb1: netmap queues/slots: TX 4/1024, RX 4/1024
pcib5:  at device 2.0 on pci2
pci5:  on pcib5
pcib6:  at device 3.0 on pci2
pci6:  on pcib6
pcib7:  at device 9.0 on pci2
pci7:  on pcib7
pci7:  at device 0.0 (no driver attached)
pcib8:  at device 8.1 on pci0
pci8:  on pcib8
vgapci0:  port 0xf000-0xf0ff mem 0x7f80000000-0x7fbfffffff,0x7fc0000000-0x7fcfffffff,0xfcf00000-0xfcf7ffff at device 0.0 on pci8
hdac0:  mem 0xfcf88000-0xfcf8bfff at device 0.1 on pci8
pci8:  at device 0.2 (no driver attached)
xhci1:  mem 0xfcd00000-0xfcdfffff at device 0.3 on pci8
xhci1: 64 bytes context size, 64-bit DMA
xhci1: xECP capabilities 
usbus1 on xhci1
usbus1: 5.0Gbps Super Speed USB v3.0
xhci2:  mem 0xfcc00000-0xfccfffff at device 0.4 on pci8
xhci2: 64 bytes context size, 64-bit DMA
xhci2: xECP capabilities 
usbus2 on xhci2
usbus2: 5.0Gbps Super Speed USB v3.0
hdac1:  mem 0xfcf80000-0xfcf87fff at device 0.6 on pci8
isab0:  at device 20.3 on pci0
isa0:  on isab0
acpi_button0:  on acpi0
acpi_syscontainer0:  on acpi0
cpu0:  on acpi0
uart: ns8250: UART FCR is broken (0x1)
uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0
atkbdc0:  at port 0x60,0x64 on isa0
atkbd0:  irq 1 on atkbdc0
kbd0 at atkbd0
atkbd0: [GIANT-LOCKED]
hwpstate0:  on cpu0
cpufreq0:  on cpu0
Timecounter "TSC-low" frequency 1796706483 Hz quality 1000
Timecounters tick every 1.000 msec
ugen2.1:  at usbus2
ugen0.1:  at usbus0
ugen1.1:  at usbus1
uhub0 on usbus2
uhub1 on usbus0
uhub1:  on usbus0
uhub2 on usbus1
uhub0:  on usbus2
uhub2:  on usbus1
ZFS filesystem version: 5
ZFS storage pool version: features support (5000)
hdacc0:  at cad 0 on hdac0
hdaa0:  at nid 1 on hdacc0
pcm0:  at nid 3 on hdaa0
pcm1:  at nid 5 on hdaa0
hdacc1:  at cad 0 on hdac1
hdaa1:  at nid 1 on hdacc1
pcm2:  at nid 20,22,21 and 24,26 on hdaa1
pcm3:  at nid 27 and 25 on hdaa1
pcm4:  at nid 30 on hdaa1
Trying to mount root from zfs:zroot/ROOT/default []...
ada0 at ahcich3 bus 0 scbus3 target 0 lun 0
ada0:  ACS-3 ATA SATA 3.x device
ada0: Serial Number WD-WCC6Y1RHTPZ6
ada0: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada0: Command Queueing enabled
ada0: 953869MB (1953525168 512 byte sectors)
ada1 at ahcich4 bus 0 scbus4 target 0 lun 0
ada1:  ACS-3 ATA SATA 3.x device
ada1: Serial Number WD-WCC6Y5JNVCXY
ada1: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada1: Command Queueing enabled
ada1: 953869MB (1953525168 512 byte sectors)
ada2 at ahcich5 bus 0 scbus5 target 0 lun 0
ada2:  ACS-3 ATA SATA 3.x device
ada2: Serial Number WD-WCC6Y0AX25U9
ada2: 600.000MB/s transfers (SATA 3.x, UDMA5, PIO 8192bytes)
ada2: Command Queueing enabled
ada2: 953869MB (1953525168 512 byte sectors)
uhub0: 2 ports with 2 removable, self powered
uhub2: 8 ports with 8 removable, self powered
uhub1: 14 ports with 14 removable, self powered
ugen1.2:  at usbus1
usbhid0 on uhub2
usbhid0:  on usbus1
hidbus0:  on usbhid0
ugen1.3:  at usbus1
usbhid1 on uhub2
usbhid1:  on usbus1
hidbus1:  on usbhid1
ugen0.2:  at usbus0
hkbd0:  on hidbus1
kbd2 at hkbd0
ugen1.4:  at usbus1
Root mount waiting for: usbus0
ugen0.3:  at usbus0
usbhid2 on uhub1
usbhid2:  on usbus0
hidbus2:  on usbhid2
ugen0.4:  at usbus0
uhub3 on uhub1
uhub3:  on usbus0
Root mount waiting for: usbus0
uhub3: 4 ports with 4 removable, self powered
TCP Hpts created 4 swi interrupt threads and bound 0 to cpus
Attempting to load tcp_bbr
tcp_bbr is now available
[drm] amdgpu kernel modesetting enabled.
drmn0:  on vgapci0
vgapci0: child drmn0 requested pci_enable_io
vgapci0: child drmn0 requested pci_enable_io
[drm] initializing kernel modesetting (RAVEN 0x1002:0x15D8 0x1043:0x876B 0xC9).
[drm] register mmio base: 0xFCF00000
[drm] register mmio size: 524288
[drm] add ip block number 0 
[drm] add ip block number 1 
[drm] add ip block number 2 
[drm] add ip block number 3 
[drm] add ip block number 4 
[drm] add ip block number 5 
[drm] add ip block number 6 
[drm] add ip block number 7 
[drm] add ip block number 8 
drmn0: successfully loaded firmware image 'amdgpu/picasso_gpu_info.bin'
drmn0: Fetched VBIOS from VFCT
amdgpu: ATOM BIOS: 113-PICASSO-118
drmn0: successfully loaded firmware image 'amdgpu/picasso_asd.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_ta.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_pfp.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_me.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_ce.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_rlc_am4.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_mec.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_mec2.bin'
drmn0: successfully loaded firmware image 'amdgpu/picasso_sdma.bin'
[drm] VCN decode is enabled in VM mode
[drm] VCN encode is enabled in VM mode
[drm] JPEG decode is enabled in VM mode
drmn0: successfully loaded firmware image 'amdgpu/picasso_vcn.bin'
drmn0: Trusted Memory Zone (TMZ) feature enabled
drmn0: PCIE atomic ops is not supported
[drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
drmn0: VRAM: 16384M 0x000000F400000000 - 0x000000F7FFFFFFFF (16384M used)
drmn0: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[drm ERROR :amdgpu_bo_init] Unable to set WC memtype for the aperture base
[drm] Detected VRAM RAM=16384M, BAR=16384M
[drm] RAM width 128bits DDR4
[drm] amdgpu: 16384M of VRAM memory ready
[drm] amdgpu: 57276M of GTT memory ready.
[drm] GART: num cpu pages 262144, num gpu pages 262144
[drm] PCIE GART of 1024M enabled.
[drm] PTB located at 0x000000F401E00000
amdgpu: hwmgr_sw_init smu backed is smu10_smu
drmn0: successfully loaded firmware image 'amdgpu/raven_dmcu.bin'
[drm] Found VCN firmware Version ENC: 1.15 DEC: 3 VEP: 0 Revision: 0
drmn0: Will use PSP to load VCN firmware
drmn0: reserve 0x400000 from 0xf7ffc00000 for PSP TMR
drmn0: RAS: optional ras ta ucode is not available
drmn0: RAP: optional rap ta ucode is not available
drmn0: psp gfx command LOAD_TA(0x1) failed and response status is (0x7)
drmn0: psp gfx command INVOKE_CMD(0x3) failed and response status is (0x4)
drmn0: Secure display: Generic Failure.drmn0: SECUREDISPLAY: query securedisplay TA failed. ret 0x0
[drm] DM_PPLIB: values for F clock
[drm] DM_PPLIB:	 1200000 in kHz, 4399 in mV
[drm] DM_PPLIB: values for DCF clock
[drm] DM_PPLIB:	 300000 in kHz, 3099 in mV
[drm] DM_PPLIB:	 600000 in kHz, 3574 in mV
[drm] DM_PPLIB:	 626000 in kHz, 4250 in mV
[drm] DM_PPLIB:	 654000 in kHz, 4399 in mV
[drm] Display Core v3.2.273 initialized on DCN 1.0
lkpi_iic0:  on drmn0
iicbus0:  on lkpi_iic0
iic0:  on iicbus0
lkpi_iic1:  on drmn0
iicbus1:  on lkpi_iic1
iic1:  on iicbus1
[drm] kiq ring mec 2 pipe 1 q 0
[drm] VCN decode and encode initialized successfully(under SPG Mode).
drmn0: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
drmn0: ring gfx uses VM inv eng 0 on hub 0
drmn0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
drmn0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
drmn0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
drmn0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
drmn0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
drmn0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
drmn0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
drmn0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
drmn0: ring kiq_0.2.1.0 uses VM inv eng 11 on hub 0
drmn0: ring sdma0 uses VM inv eng 0 on hub 8
drmn0: ring vcn_dec uses VM inv eng 1 on hub 8
drmn0: ring vcn_enc0 uses VM inv eng 4 on hub 8
drmn0: ring vcn_enc1 uses VM inv eng 5 on hub 8
drmn0: ring jpeg_dec uses VM inv eng 6 on hub 8
amdgpu: pp_dpm_get_sclk_od was not implemented.
amdgpu: pp_dpm_get_mclk_od was not implemented.
vgapci0: child drmn0 requested pci_get_powerstate
sysctl_add_oid: can't re-use a leaf (hw.dri.debug)!
lkpi_iic2:  on drm1
iicbus2:  on lkpi_iic2
iic2:  on iicbus2
[drm] Initialized amdgpu 3.57.0 20150101 for drmn0 on minor 0
VT: Replacing driver "efifb" with new "drmfb".
start FB_INFO:
height=2160 width=3840 depth=32
pbase=0x171191000 vbase=0xfffffe05ff391000
name=drmn0 id=amdgpudrmfb flags=0x0 stride=15360
end FB_INFO
acpi_wmi0:  on acpi0
acpi_wmi0: cannot find EC device
acpi_wmi0: Embedded MOF found
acpi_wmi1:  on acpi0
acpi_wmi1: cannot find EC device
acpi_wmi1: Embedded MOF found
acpi_wmi2:  on acpi0
acpi_wmi2: cannot find EC device
acpi_wmi2: Embedded MOF found
acpi_wmi3:  on acpi0
acpi_wmi3: cannot find EC device
acpi_wmi3: Embedded MOF found
ig4iic0:  iomem 0xfedc5000-0xfedc5fff irq 6 on acpi0
iicbus3:  on ig4iic0
iic3:  on iicbus3
acpi_wmi4:  on acpi0
acpi_wmi4: cannot find EC device
acpi_wmi4: Embedded MOF found
intsmb0:  at device 20.0 on pci0
smbus0:  on intsmb0
hms0:  on hidbus0
hms0: 5 buttons and [XYW] coordinates ID=0
igb0: link state changed to UP
lo0: link state changed to UP
igb0: link state changed to DOWN
igb0: link state changed to UP
Security policy loaded: MAC/ntpd (mac_ntpd)

Monday, April 20, 2026

plist-fix pkg-plist adjuster

The automatic pkg-plist generation result often needs some adjustment.  After a number of times making the same edits for one of my unofficial ports, I realized I could automate my edits a bit with a script.  Some parts of the plistfix script are identical for every port I work on and some are similar to most of my unofficial ports.  Its sometimes a struggle to figure out how to handle necessary adjustments but eventually I succeed.  The script makes following the most recent commit much easier and saves a bit of time.

Since as yet I have not added a new unofficial port to my collection I won't also need to revise a plistfix script for it.  What I will show you is the script for two of my unofficial ports along with a diff of the generated versus adjusted pkg-plist files after each script.  I keep the plist fix script for each unofficial port in the files directory and track it in the git repo for the port leaf contents.

This is the plist-fix script for luanti-dev, the first one I made to ease the efforts to make the pkg-plist correct.  The script is used from within the files directory of its unofficial port.

#!/bin/sh
rm /var/tmp/minetest-dev_pkg-plist 2>/dev/null
rm /var/tmp/minetest-dev_pkg-plist-fixed 2>/dev/null
cp ../pkg-plist /var/tmp/minetest-dev_pkg-plist

echo "adding conditional list tags"

cat /var/tmp/minetest-dev_pkg-plist | \
sed '/^\/you/d' | \
sed \
-e '/^$/d' \
-e 's#^share\/locale#\%\%CLIENT\%\%\%\%NLS\%\%share\/locale#g' \
-e 's#^\%\%PORT#\%\%#g' \
-e 's#^bin/luantiserver#\%\%SERVER\%\%bin/luantiserver#1' \
-e 's#^bin/luanti#\%\%CLIENT\%\%bin/luanti#1' \
-e 's#^\%\%ETCDIR\%\%.conf.example#@sample\ etc/minetest.conf.example\ etc/minetest.conf#' \
-e 's#^\%\%ETCDIR\%\%.conf.example#@sample\ etc/luanti.conf.example\ etc/luanti.conf#' \
-e 's#^etc/rc.d/minetest#\%\%SERVER\%\%etc/rc.d/minetest#1' \
-e 's#^share/man/man6/luanti.6.gz#\%\%CLIENT\%\%share/man/man6/luanti.6.gz#1' \
-e 's#^share/man/man6/luantiserver.6.gz#\%\%SERVER\%\%share/man/man6/luantiserver.6.gz#1' \
-e 's#^\%\%DATADIR\%\%/client#\%\%CLIENT\%\%\%\%DATADIR\%\%/client#g' \
-e 's#^\%\%DATADIR\%\%/fonts#\%\%CLIENT\%\%\%\%DATADIR\%\%/fonts#g' \
-e 's#^\%\%DATADIR\%\%/textures#\%\%CLIENT\%\%\%\%DATADIR\%\%/textures#g' \
-e 's#^\%\%DATADIR\%\%/games/devtest#\%\%DEVTEST\%\%\%\%DATADIR\%\%/games/devtest#g' \
-e 's#^etc/rc.d/luanti#\%\%SERVER\%\%etc/rc.d/luanti#1' \
> /var/tmp/minetest-dev_pkg-plist-fixed
cp /var/tmp/minetest-dev_pkg-plist-fixed ../pkg-plist

This is a comparison between the output of make makeplist > pkg-plist and how it was changed using the script.

/you/have/to/check/what/makeplist/gives/you					    |	%%CLIENT%%bin/luanti
bin/luanti									    |	%%SERVER%%bin/luantiserver
bin/luantiserver								    <	
etc/minetest.conf.example								etc/minetest.conf.example
etc/rc.d/luanti									    |	%%SERVER%%etc/rc.d/luanti
share/applications/org.luanti.luanti.desktop						share/applications/org.luanti.luanti.desktop
%%PORTDOCS%%%%DOCSDIR%%/README.md						    |	%%DOCS%%%%DOCSDIR%%/README.md
%%PORTDOCS%%%%DOCSDIR%%/client_lua_api.md					    |	%%DOCS%%%%DOCSDIR%%/client_lua_api.md
%%PORTDOCS%%%%DOCSDIR%%/lua_api.md						    |	%%DOCS%%%%DOCSDIR%%/lua_api.md
%%PORTDOCS%%%%DOCSDIR%%/menu_lua_api.md						    |	%%DOCS%%%%DOCSDIR%%/menu_lua_api.md
%%PORTDOCS%%%%DOCSDIR%%/texture_packs.md					    |	%%DOCS%%%%DOCSDIR%%/texture_packs.md
%%PORTDOCS%%%%DOCSDIR%%/world_format.md						    |	%%DOCS%%%%DOCSDIR%%/world_format.md
share/icons/hicolor/128x128/apps/luanti.png						share/icons/hicolor/128x128/apps/luanti.png
share/icons/hicolor/scalable/apps/luanti.svg						share/icons/hicolor/scalable/apps/luanti.svg
share/locale/az/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/az/LC_MESSAGES/luanti.mo
share/locale/bar/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/bar/LC_MESSAGES/luanti.mo
share/locale/be/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/be/LC_MESSAGES/luanti.mo
share/locale/bg/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/bg/LC_MESSAGES/luanti.mo
share/locale/br/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/br/LC_MESSAGES/luanti.mo
share/locale/ca/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ca/LC_MESSAGES/luanti.mo
share/locale/cs/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/cs/LC_MESSAGES/luanti.mo
share/locale/cy/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/cy/LC_MESSAGES/luanti.mo
share/locale/da/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/da/LC_MESSAGES/luanti.mo
share/locale/de/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/de/LC_MESSAGES/luanti.mo
share/locale/el/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/el/LC_MESSAGES/luanti.mo
share/locale/eo/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/eo/LC_MESSAGES/luanti.mo
share/locale/es/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/es/LC_MESSAGES/luanti.mo
share/locale/es_US/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/es_US/LC_MESSAGES/luanti.mo
share/locale/et/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/et/LC_MESSAGES/luanti.mo
share/locale/eu/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/eu/LC_MESSAGES/luanti.mo
share/locale/fa/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/fa/LC_MESSAGES/luanti.mo
share/locale/fi/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/fi/LC_MESSAGES/luanti.mo
share/locale/fil/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/fil/LC_MESSAGES/luanti.mo
share/locale/fr/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/fr/LC_MESSAGES/luanti.mo
share/locale/ga/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ga/LC_MESSAGES/luanti.mo
share/locale/gd/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/gd/LC_MESSAGES/luanti.mo
share/locale/gl/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/gl/LC_MESSAGES/luanti.mo
share/locale/hu/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/hu/LC_MESSAGES/luanti.mo
share/locale/hy/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/hy/LC_MESSAGES/luanti.mo
share/locale/id/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/id/LC_MESSAGES/luanti.mo
share/locale/io/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/io/LC_MESSAGES/luanti.mo
share/locale/isv/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/isv/LC_MESSAGES/luanti.mo
share/locale/it/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/it/LC_MESSAGES/luanti.mo
share/locale/ja/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ja/LC_MESSAGES/luanti.mo
share/locale/jbo/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/jbo/LC_MESSAGES/luanti.mo
share/locale/jv/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/jv/LC_MESSAGES/luanti.mo
share/locale/kab/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/kab/LC_MESSAGES/luanti.mo
share/locale/kk/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/kk/LC_MESSAGES/luanti.mo
share/locale/kmr/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/kmr/LC_MESSAGES/luanti.mo
share/locale/ko/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ko/LC_MESSAGES/luanti.mo
share/locale/kv/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/kv/LC_MESSAGES/luanti.mo
share/locale/ky/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ky/LC_MESSAGES/luanti.mo
share/locale/lt/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/lt/LC_MESSAGES/luanti.mo
share/locale/lv/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/lv/LC_MESSAGES/luanti.mo
share/locale/lzh/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/lzh/LC_MESSAGES/luanti.mo
share/locale/mi/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/mi/LC_MESSAGES/luanti.mo
share/locale/mn/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/mn/LC_MESSAGES/luanti.mo
share/locale/mr/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/mr/LC_MESSAGES/luanti.mo
share/locale/ms/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ms/LC_MESSAGES/luanti.mo
share/locale/nb/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/nb/LC_MESSAGES/luanti.mo
share/locale/nl/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/nl/LC_MESSAGES/luanti.mo
share/locale/nn/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/nn/LC_MESSAGES/luanti.mo
share/locale/oc/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/oc/LC_MESSAGES/luanti.mo
share/locale/pl/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/pl/LC_MESSAGES/luanti.mo
share/locale/pt/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/pt/LC_MESSAGES/luanti.mo
share/locale/pt_BR/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/pt_BR/LC_MESSAGES/luanti.mo
share/locale/ro/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ro/LC_MESSAGES/luanti.mo
share/locale/ru/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ru/LC_MESSAGES/luanti.mo
share/locale/sk/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/sk/LC_MESSAGES/luanti.mo
share/locale/sl/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/sl/LC_MESSAGES/luanti.mo
share/locale/sr/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/sr/LC_MESSAGES/luanti.mo
share/locale/sr_Cyrl/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/sr_Cyrl/LC_MESSAGES/luanti.mo
share/locale/sr_Latn/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/sr_Latn/LC_MESSAGES/luanti.mo
share/locale/sv/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/sv/LC_MESSAGES/luanti.mo
share/locale/sw/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/sw/LC_MESSAGES/luanti.mo
share/locale/ta/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/ta/LC_MESSAGES/luanti.mo
share/locale/tl/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/tl/LC_MESSAGES/luanti.mo
share/locale/tok/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/tok/LC_MESSAGES/luanti.mo
share/locale/tr/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/tr/LC_MESSAGES/luanti.mo
share/locale/tt/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/tt/LC_MESSAGES/luanti.mo
share/locale/uk/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/uk/LC_MESSAGES/luanti.mo
share/locale/vi/LC_MESSAGES/luanti.mo						    |	%%CLIENT%%%%NLS%%share/locale/vi/LC_MESSAGES/luanti.mo
share/locale/zh_CN/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/zh_CN/LC_MESSAGES/luanti.mo
share/locale/zh_TW/LC_MESSAGES/luanti.mo					    |	%%CLIENT%%%%NLS%%share/locale/zh_TW/LC_MESSAGES/luanti.mo
%%DATADIR%%/builtin/async/game.lua							%%DATADIR%%/builtin/async/game.lua
%%DATADIR%%/builtin/async/mainmenu.lua							%%DATADIR%%/builtin/async/mainmenu.lua
%%DATADIR%%/builtin/client/chatcommands.lua						%%DATADIR%%/builtin/client/chatcommands.lua
%%DATADIR%%/builtin/client/init.lua							%%DATADIR%%/builtin/client/init.lua
%%DATADIR%%/builtin/client/misc.lua							%%DATADIR%%/builtin/client/misc.lua
%%DATADIR%%/builtin/client/register.lua							%%DATADIR%%/builtin/client/register.lua
%%DATADIR%%/builtin/common/after.lua							%%DATADIR%%/builtin/common/after.lua
%%DATADIR%%/builtin/common/chatcommands.lua						%%DATADIR%%/builtin/common/chatcommands.lua
%%DATADIR%%/builtin/common/filterlist.lua						%%DATADIR%%/builtin/common/filterlist.lua
%%DATADIR%%/builtin/common/information_formspecs.lua					%%DATADIR%%/builtin/common/information_formspecs.lua
%%DATADIR%%/builtin/common/item_s.lua							%%DATADIR%%/builtin/common/item_s.lua
%%DATADIR%%/builtin/common/math.lua							%%DATADIR%%/builtin/common/math.lua
%%DATADIR%%/builtin/common/menu.lua							%%DATADIR%%/builtin/common/menu.lua
%%DATADIR%%/builtin/common/metatable.lua						%%DATADIR%%/builtin/common/metatable.lua
%%DATADIR%%/builtin/common/misc_helpers.lua						%%DATADIR%%/builtin/common/misc_helpers.lua
%%DATADIR%%/builtin/common/mod_storage.lua						%%DATADIR%%/builtin/common/mod_storage.lua
%%DATADIR%%/builtin/common/register.lua							%%DATADIR%%/builtin/common/register.lua
%%DATADIR%%/builtin/common/serialize.lua						%%DATADIR%%/builtin/common/serialize.lua
%%DATADIR%%/builtin/common/settings/components.lua					%%DATADIR%%/builtin/common/settings/components.lua
%%DATADIR%%/builtin/common/settings/dlg_change_mapgen_flags.lua				%%DATADIR%%/builtin/common/settings/dlg_change_mapgen_flags.lua
%%DATADIR%%/builtin/common/settings/dlg_settings.lua					%%DATADIR%%/builtin/common/settings/dlg_settings.lua
%%DATADIR%%/builtin/common/settings/generate_from_settingtypes.lua			%%DATADIR%%/builtin/common/settings/generate_from_settingtypes.lua
%%DATADIR%%/builtin/common/settings/init.lua						%%DATADIR%%/builtin/common/settings/init.lua
%%DATADIR%%/builtin/common/settings/settingtypes.lua					%%DATADIR%%/builtin/common/settings/settingtypes.lua
%%DATADIR%%/builtin/common/settings/shadows_component.lua				%%DATADIR%%/builtin/common/settings/shadows_component.lua
%%DATADIR%%/builtin/common/strict.lua							%%DATADIR%%/builtin/common/strict.lua
%%DATADIR%%/builtin/common/tests/after_spec.lua						%%DATADIR%%/builtin/common/tests/after_spec.lua
%%DATADIR%%/builtin/common/tests/math_spec.lua						%%DATADIR%%/builtin/common/tests/math_spec.lua
%%DATADIR%%/builtin/common/tests/misc_helpers_spec.lua					%%DATADIR%%/builtin/common/tests/misc_helpers_spec.lua
%%DATADIR%%/builtin/common/tests/serialize_spec.lua					%%DATADIR%%/builtin/common/tests/serialize_spec.lua
%%DATADIR%%/builtin/common/tests/vector2_spec.lua					%%DATADIR%%/builtin/common/tests/vector2_spec.lua
%%DATADIR%%/builtin/common/tests/vector_spec.lua					%%DATADIR%%/builtin/common/tests/vector_spec.lua
%%DATADIR%%/builtin/common/vector.lua							%%DATADIR%%/builtin/common/vector.lua
%%DATADIR%%/builtin/common/vector2.lua							%%DATADIR%%/builtin/common/vector2.lua
%%DATADIR%%/builtin/emerge/env.lua							%%DATADIR%%/builtin/emerge/env.lua
%%DATADIR%%/builtin/emerge/init.lua							%%DATADIR%%/builtin/emerge/init.lua
%%DATADIR%%/builtin/emerge/register.lua							%%DATADIR%%/builtin/emerge/register.lua
%%DATADIR%%/builtin/fstk/buttonbar.lua							%%DATADIR%%/builtin/fstk/buttonbar.lua
%%DATADIR%%/builtin/fstk/dialog.lua							%%DATADIR%%/builtin/fstk/dialog.lua
%%DATADIR%%/builtin/fstk/tabview.lua							%%DATADIR%%/builtin/fstk/tabview.lua
%%DATADIR%%/builtin/fstk/ui.lua								%%DATADIR%%/builtin/fstk/ui.lua
%%DATADIR%%/builtin/game/async.lua							%%DATADIR%%/builtin/game/async.lua
%%DATADIR%%/builtin/game/auth.lua							%%DATADIR%%/builtin/game/auth.lua
%%DATADIR%%/builtin/game/chat.lua							%%DATADIR%%/builtin/game/chat.lua
%%DATADIR%%/builtin/game/constants.lua							%%DATADIR%%/builtin/game/constants.lua
%%DATADIR%%/builtin/game/death_screen.lua						%%DATADIR%%/builtin/game/death_screen.lua
%%DATADIR%%/builtin/game/deprecated.lua							%%DATADIR%%/builtin/game/deprecated.lua
%%DATADIR%%/builtin/game/detached_inventory.lua						%%DATADIR%%/builtin/game/detached_inventory.lua
%%DATADIR%%/builtin/game/falling.lua							%%DATADIR%%/builtin/game/falling.lua
%%DATADIR%%/builtin/game/features.lua							%%DATADIR%%/builtin/game/features.lua
%%DATADIR%%/builtin/game/forceloading.lua						%%DATADIR%%/builtin/game/forceloading.lua
%%DATADIR%%/builtin/game/hud.lua							%%DATADIR%%/builtin/game/hud.lua
%%DATADIR%%/builtin/game/init.lua							%%DATADIR%%/builtin/game/init.lua
%%DATADIR%%/builtin/game/item.lua							%%DATADIR%%/builtin/game/item.lua
%%DATADIR%%/builtin/game/item_entity.lua						%%DATADIR%%/builtin/game/item_entity.lua
%%DATADIR%%/builtin/game/knockback.lua							%%DATADIR%%/builtin/game/knockback.lua
%%DATADIR%%/builtin/game/misc.lua							%%DATADIR%%/builtin/game/misc.lua
%%DATADIR%%/builtin/game/misc_s.lua							%%DATADIR%%/builtin/game/misc_s.lua
%%DATADIR%%/builtin/game/privileges.lua							%%DATADIR%%/builtin/game/privileges.lua
%%DATADIR%%/builtin/game/register.lua							%%DATADIR%%/builtin/game/register.lua
%%DATADIR%%/builtin/game/static_spawn.lua						%%DATADIR%%/builtin/game/static_spawn.lua
%%DATADIR%%/builtin/game/tests/test_moveaction.lua					%%DATADIR%%/builtin/game/tests/test_moveaction.lua
%%DATADIR%%/builtin/game/voxelarea.lua							%%DATADIR%%/builtin/game/voxelarea.lua
%%DATADIR%%/builtin/init.lua								%%DATADIR%%/builtin/init.lua
%%DATADIR%%/builtin/locale/__builtin.be.tr						%%DATADIR%%/builtin/locale/__builtin.be.tr
%%DATADIR%%/builtin/locale/__builtin.bg.tr						%%DATADIR%%/builtin/locale/__builtin.bg.tr
%%DATADIR%%/builtin/locale/__builtin.ca.tr						%%DATADIR%%/builtin/locale/__builtin.ca.tr
%%DATADIR%%/builtin/locale/__builtin.cs.tr						%%DATADIR%%/builtin/locale/__builtin.cs.tr
%%DATADIR%%/builtin/locale/__builtin.cy.tr						%%DATADIR%%/builtin/locale/__builtin.cy.tr
%%DATADIR%%/builtin/locale/__builtin.da.tr						%%DATADIR%%/builtin/locale/__builtin.da.tr
%%DATADIR%%/builtin/locale/__builtin.de.tr						%%DATADIR%%/builtin/locale/__builtin.de.tr
%%DATADIR%%/builtin/locale/__builtin.el.tr						%%DATADIR%%/builtin/locale/__builtin.el.tr
%%DATADIR%%/builtin/locale/__builtin.eo.tr						%%DATADIR%%/builtin/locale/__builtin.eo.tr
%%DATADIR%%/builtin/locale/__builtin.es.tr						%%DATADIR%%/builtin/locale/__builtin.es.tr
%%DATADIR%%/builtin/locale/__builtin.et.tr						%%DATADIR%%/builtin/locale/__builtin.et.tr
%%DATADIR%%/builtin/locale/__builtin.eu.tr						%%DATADIR%%/builtin/locale/__builtin.eu.tr
%%DATADIR%%/builtin/locale/__builtin.fi.tr						%%DATADIR%%/builtin/locale/__builtin.fi.tr
%%DATADIR%%/builtin/locale/__builtin.fil.tr						%%DATADIR%%/builtin/locale/__builtin.fil.tr
%%DATADIR%%/builtin/locale/__builtin.fr.tr						%%DATADIR%%/builtin/locale/__builtin.fr.tr
%%DATADIR%%/builtin/locale/__builtin.ga.tr						%%DATADIR%%/builtin/locale/__builtin.ga.tr
%%DATADIR%%/builtin/locale/__builtin.gl.tr						%%DATADIR%%/builtin/locale/__builtin.gl.tr
%%DATADIR%%/builtin/locale/__builtin.hu.tr						%%DATADIR%%/builtin/locale/__builtin.hu.tr
%%DATADIR%%/builtin/locale/__builtin.id.tr						%%DATADIR%%/builtin/locale/__builtin.id.tr
%%DATADIR%%/builtin/locale/__builtin.it.tr						%%DATADIR%%/builtin/locale/__builtin.it.tr
%%DATADIR%%/builtin/locale/__builtin.ja.tr						%%DATADIR%%/builtin/locale/__builtin.ja.tr
%%DATADIR%%/builtin/locale/__builtin.jbo.tr						%%DATADIR%%/builtin/locale/__builtin.jbo.tr
%%DATADIR%%/builtin/locale/__builtin.jv.tr						%%DATADIR%%/builtin/locale/__builtin.jv.tr
%%DATADIR%%/builtin/locale/__builtin.ko.tr						%%DATADIR%%/builtin/locale/__builtin.ko.tr
%%DATADIR%%/builtin/locale/__builtin.kv.tr						%%DATADIR%%/builtin/locale/__builtin.kv.tr
%%DATADIR%%/builtin/locale/__builtin.ky.tr						%%DATADIR%%/builtin/locale/__builtin.ky.tr
%%DATADIR%%/builtin/locale/__builtin.lt.tr						%%DATADIR%%/builtin/locale/__builtin.lt.tr
%%DATADIR%%/builtin/locale/__builtin.lv.tr						%%DATADIR%%/builtin/locale/__builtin.lv.tr
%%DATADIR%%/builtin/locale/__builtin.lzh.tr						%%DATADIR%%/builtin/locale/__builtin.lzh.tr
%%DATADIR%%/builtin/locale/__builtin.mn.tr						%%DATADIR%%/builtin/locale/__builtin.mn.tr
%%DATADIR%%/builtin/locale/__builtin.mr.tr						%%DATADIR%%/builtin/locale/__builtin.mr.tr
%%DATADIR%%/builtin/locale/__builtin.ms.tr						%%DATADIR%%/builtin/locale/__builtin.ms.tr
%%DATADIR%%/builtin/locale/__builtin.nb.tr						%%DATADIR%%/builtin/locale/__builtin.nb.tr
%%DATADIR%%/builtin/locale/__builtin.nl.tr						%%DATADIR%%/builtin/locale/__builtin.nl.tr
%%DATADIR%%/builtin/locale/__builtin.nn.tr						%%DATADIR%%/builtin/locale/__builtin.nn.tr
%%DATADIR%%/builtin/locale/__builtin.oc.tr						%%DATADIR%%/builtin/locale/__builtin.oc.tr
%%DATADIR%%/builtin/locale/__builtin.pl.tr						%%DATADIR%%/builtin/locale/__builtin.pl.tr
%%DATADIR%%/builtin/locale/__builtin.pt.tr						%%DATADIR%%/builtin/locale/__builtin.pt.tr
%%DATADIR%%/builtin/locale/__builtin.pt_BR.tr						%%DATADIR%%/builtin/locale/__builtin.pt_BR.tr
%%DATADIR%%/builtin/locale/__builtin.ro.tr						%%DATADIR%%/builtin/locale/__builtin.ro.tr
%%DATADIR%%/builtin/locale/__builtin.ru.tr						%%DATADIR%%/builtin/locale/__builtin.ru.tr
%%DATADIR%%/builtin/locale/__builtin.sk.tr						%%DATADIR%%/builtin/locale/__builtin.sk.tr
%%DATADIR%%/builtin/locale/__builtin.sl.tr						%%DATADIR%%/builtin/locale/__builtin.sl.tr
%%DATADIR%%/builtin/locale/__builtin.sr_Cyrl.tr						%%DATADIR%%/builtin/locale/__builtin.sr_Cyrl.tr
%%DATADIR%%/builtin/locale/__builtin.sr_Latn.tr						%%DATADIR%%/builtin/locale/__builtin.sr_Latn.tr
%%DATADIR%%/builtin/locale/__builtin.sv.tr						%%DATADIR%%/builtin/locale/__builtin.sv.tr
%%DATADIR%%/builtin/locale/__builtin.sw.tr						%%DATADIR%%/builtin/locale/__builtin.sw.tr
%%DATADIR%%/builtin/locale/__builtin.tok.tr						%%DATADIR%%/builtin/locale/__builtin.tok.tr
%%DATADIR%%/builtin/locale/__builtin.tr.tr						%%DATADIR%%/builtin/locale/__builtin.tr.tr
%%DATADIR%%/builtin/locale/__builtin.tt.tr						%%DATADIR%%/builtin/locale/__builtin.tt.tr
%%DATADIR%%/builtin/locale/__builtin.uk.tr						%%DATADIR%%/builtin/locale/__builtin.uk.tr
%%DATADIR%%/builtin/locale/__builtin.vi.tr						%%DATADIR%%/builtin/locale/__builtin.vi.tr
%%DATADIR%%/builtin/locale/__builtin.zh_CN.tr						%%DATADIR%%/builtin/locale/__builtin.zh_CN.tr
%%DATADIR%%/builtin/locale/__builtin.zh_TW.tr						%%DATADIR%%/builtin/locale/__builtin.zh_TW.tr
%%DATADIR%%/builtin/locale/template.txt							%%DATADIR%%/builtin/locale/template.txt
%%DATADIR%%/builtin/mainmenu/async_event.lua						%%DATADIR%%/builtin/mainmenu/async_event.lua
%%DATADIR%%/builtin/mainmenu/common.lua							%%DATADIR%%/builtin/mainmenu/common.lua
%%DATADIR%%/builtin/mainmenu/content/contentdb.lua					%%DATADIR%%/builtin/mainmenu/content/contentdb.lua
%%DATADIR%%/builtin/mainmenu/content/dlg_contentdb.lua					%%DATADIR%%/builtin/mainmenu/content/dlg_contentdb.lua
%%DATADIR%%/builtin/mainmenu/content/dlg_install.lua					%%DATADIR%%/builtin/mainmenu/content/dlg_install.lua
%%DATADIR%%/builtin/mainmenu/content/dlg_overwrite.lua					%%DATADIR%%/builtin/mainmenu/content/dlg_overwrite.lua
%%DATADIR%%/builtin/mainmenu/content/dlg_package.lua					%%DATADIR%%/builtin/mainmenu/content/dlg_package.lua
%%DATADIR%%/builtin/mainmenu/content/init.lua						%%DATADIR%%/builtin/mainmenu/content/init.lua
%%DATADIR%%/builtin/mainmenu/content/pkgmgr.lua						%%DATADIR%%/builtin/mainmenu/content/pkgmgr.lua
%%DATADIR%%/builtin/mainmenu/content/screenshots.lua					%%DATADIR%%/builtin/mainmenu/content/screenshots.lua
%%DATADIR%%/builtin/mainmenu/content/tests/pkgmgr_spec.lua				%%DATADIR%%/builtin/mainmenu/content/tests/pkgmgr_spec.lua
%%DATADIR%%/builtin/mainmenu/content/update_detector.lua				%%DATADIR%%/builtin/mainmenu/content/update_detector.lua
%%DATADIR%%/builtin/mainmenu/credits.json						%%DATADIR%%/builtin/mainmenu/credits.json
%%DATADIR%%/builtin/mainmenu/dlg_clients_list.lua					%%DATADIR%%/builtin/mainmenu/dlg_clients_list.lua
%%DATADIR%%/builtin/mainmenu/dlg_config_world.lua					%%DATADIR%%/builtin/mainmenu/dlg_config_world.lua
%%DATADIR%%/builtin/mainmenu/dlg_confirm_exit.lua					%%DATADIR%%/builtin/mainmenu/dlg_confirm_exit.lua
%%DATADIR%%/builtin/mainmenu/dlg_create_world.lua					%%DATADIR%%/builtin/mainmenu/dlg_create_world.lua
%%DATADIR%%/builtin/mainmenu/dlg_delete_content.lua					%%DATADIR%%/builtin/mainmenu/dlg_delete_content.lua
%%DATADIR%%/builtin/mainmenu/dlg_delete_world.lua					%%DATADIR%%/builtin/mainmenu/dlg_delete_world.lua
%%DATADIR%%/builtin/mainmenu/dlg_rebind_keys.lua					%%DATADIR%%/builtin/mainmenu/dlg_rebind_keys.lua
%%DATADIR%%/builtin/mainmenu/dlg_register.lua						%%DATADIR%%/builtin/mainmenu/dlg_register.lua
%%DATADIR%%/builtin/mainmenu/dlg_reinstall_mtg.lua					%%DATADIR%%/builtin/mainmenu/dlg_reinstall_mtg.lua
%%DATADIR%%/builtin/mainmenu/dlg_rename_modpack.lua					%%DATADIR%%/builtin/mainmenu/dlg_rename_modpack.lua
%%DATADIR%%/builtin/mainmenu/dlg_server_list_mods.lua					%%DATADIR%%/builtin/mainmenu/dlg_server_list_mods.lua
%%DATADIR%%/builtin/mainmenu/dlg_version_info.lua					%%DATADIR%%/builtin/mainmenu/dlg_version_info.lua
%%DATADIR%%/builtin/mainmenu/game_theme.lua						%%DATADIR%%/builtin/mainmenu/game_theme.lua
%%DATADIR%%/builtin/mainmenu/init.lua							%%DATADIR%%/builtin/mainmenu/init.lua
%%DATADIR%%/builtin/mainmenu/serverlistmgr.lua						%%DATADIR%%/builtin/mainmenu/serverlistmgr.lua
%%DATADIR%%/builtin/mainmenu/tab_about.lua						%%DATADIR%%/builtin/mainmenu/tab_about.lua
%%DATADIR%%/builtin/mainmenu/tab_content.lua						%%DATADIR%%/builtin/mainmenu/tab_content.lua
%%DATADIR%%/builtin/mainmenu/tab_local.lua						%%DATADIR%%/builtin/mainmenu/tab_local.lua
%%DATADIR%%/builtin/mainmenu/tab_online.lua						%%DATADIR%%/builtin/mainmenu/tab_online.lua
%%DATADIR%%/builtin/mainmenu/tests/favorites_wellformed.txt				%%DATADIR%%/builtin/mainmenu/tests/favorites_wellformed.txt
%%DATADIR%%/builtin/mainmenu/tests/serverlistmgr_spec.lua				%%DATADIR%%/builtin/mainmenu/tests/serverlistmgr_spec.lua
%%DATADIR%%/builtin/pause_menu/init.lua							%%DATADIR%%/builtin/pause_menu/init.lua
%%DATADIR%%/builtin/pause_menu/register.lua						%%DATADIR%%/builtin/pause_menu/register.lua
%%DATADIR%%/builtin/profiler/init.lua							%%DATADIR%%/builtin/profiler/init.lua
%%DATADIR%%/builtin/profiler/instrumentation.lua					%%DATADIR%%/builtin/profiler/instrumentation.lua
%%DATADIR%%/builtin/profiler/reporter.lua						%%DATADIR%%/builtin/profiler/reporter.lua
%%DATADIR%%/builtin/profiler/sampling.lua						%%DATADIR%%/builtin/profiler/sampling.lua
%%DATADIR%%/builtin/settingtypes.txt							%%DATADIR%%/builtin/settingtypes.txt
%%DATADIR%%/builtin/sscsm_client/init.lua						%%DATADIR%%/builtin/sscsm_client/init.lua
%%DATADIR%%/builtin/sscsm_client/register.lua						%%DATADIR%%/builtin/sscsm_client/register.lua
%%DATADIR%%/builtin/sscsm_server/init.lua						%%DATADIR%%/builtin/sscsm_server/init.lua
%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_fragment.glsl
%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_vertex.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_vertex.glsl
%%DATADIR%%/client/shaders/Irrlicht/OneTextureBlend.fsh				    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/OneTextureBlend.fsh
%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.fsh				    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.fsh
%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.vsh				    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.vsh
%%DATADIR%%/client/shaders/Irrlicht/Renderer2D_noTex.fsh			    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D_noTex.fsh
%%DATADIR%%/client/shaders/Irrlicht/Solid.fsh					    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Solid.fsh
%%DATADIR%%/client/shaders/Irrlicht/Solid.vsh					    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Solid.vsh
%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannel.fsh			    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannel.fsh
%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannelRef.fsh		    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannelRef.fsh
%%DATADIR%%/client/shaders/Irrlicht/TransparentVertexAlpha.fsh			    |	%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentVertexAlpha.fsh
%%DATADIR%%/client/shaders/bloom_downsample/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/bloom_downsample/opengl_fragment.glsl
%%DATADIR%%/client/shaders/bloom_downsample/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/bloom_downsample/opengl_vertex.glsl
%%DATADIR%%/client/shaders/bloom_upsample/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/bloom_upsample/opengl_fragment.glsl
%%DATADIR%%/client/shaders/bloom_upsample/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/bloom_upsample/opengl_vertex.glsl
%%DATADIR%%/client/shaders/blur_h/opengl_fragment.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/blur_h/opengl_fragment.glsl
%%DATADIR%%/client/shaders/blur_h/opengl_vertex.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/blur_h/opengl_vertex.glsl
%%DATADIR%%/client/shaders/blur_v/opengl_fragment.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/blur_v/opengl_fragment.glsl
%%DATADIR%%/client/shaders/blur_v/opengl_vertex.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/blur_v/opengl_vertex.glsl
%%DATADIR%%/client/shaders/cloud_shader/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/cloud_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/cloud_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/cloud_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/extract_bloom/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/extract_bloom/opengl_fragment.glsl
%%DATADIR%%/client/shaders/extract_bloom/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/extract_bloom/opengl_vertex.glsl
%%DATADIR%%/client/shaders/fxaa/opengl_fragment.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/fxaa/opengl_fragment.glsl
%%DATADIR%%/client/shaders/fxaa/opengl_vertex.glsl				    |	%%CLIENT%%%%DATADIR%%/client/shaders/fxaa/opengl_vertex.glsl
%%DATADIR%%/client/shaders/inventory_shader/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/inventory_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/inventory_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/inventory_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/minimap_shader/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/minimap_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/minimap_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/minimap_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/nodes_shader/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/nodes_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/nodes_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/nodes_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/object_shader/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/object_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/object_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/object_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/second_stage/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/second_stage/opengl_fragment.glsl
%%DATADIR%%/client/shaders/second_stage/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/second_stage/opengl_vertex.glsl
%%DATADIR%%/client/shaders/selection_shader/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/selection_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/selection_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/selection_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/shadow/pass1/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1/opengl_fragment.glsl
%%DATADIR%%/client/shaders/shadow/pass1/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1/opengl_vertex.glsl
%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_fragment.glsl
%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_vertex.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_vertex.glsl
%%DATADIR%%/client/shaders/shadow/pass2/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass2/opengl_fragment.glsl
%%DATADIR%%/client/shaders/shadow/pass2/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass2/opengl_vertex.glsl
%%DATADIR%%/client/shaders/stars_shader/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/stars_shader/opengl_fragment.glsl
%%DATADIR%%/client/shaders/stars_shader/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/stars_shader/opengl_vertex.glsl
%%DATADIR%%/client/shaders/update_exposure/opengl_fragment.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/update_exposure/opengl_fragment.glsl
%%DATADIR%%/client/shaders/update_exposure/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/update_exposure/opengl_vertex.glsl
%%DATADIR%%/client/shaders/volumetric_light/opengl_fragment.glsl		    |	%%CLIENT%%%%DATADIR%%/client/shaders/volumetric_light/opengl_fragment.glsl
%%DATADIR%%/client/shaders/volumetric_light/opengl_vertex.glsl			    |	%%CLIENT%%%%DATADIR%%/client/shaders/volumetric_light/opengl_vertex.glsl
%%DATADIR%%/fonts/Arimo-Bold.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Arimo-Bold.ttf
%%DATADIR%%/fonts/Arimo-BoldItalic.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Arimo-BoldItalic.ttf
%%DATADIR%%/fonts/Arimo-Italic.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Arimo-Italic.ttf
%%DATADIR%%/fonts/Arimo-LICENSE.txt						    |	%%CLIENT%%%%DATADIR%%/fonts/Arimo-LICENSE.txt
%%DATADIR%%/fonts/Arimo-Regular.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Arimo-Regular.ttf
%%DATADIR%%/fonts/Cousine-Bold.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Cousine-Bold.ttf
%%DATADIR%%/fonts/Cousine-BoldItalic.ttf					    |	%%CLIENT%%%%DATADIR%%/fonts/Cousine-BoldItalic.ttf
%%DATADIR%%/fonts/Cousine-Italic.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Cousine-Italic.ttf
%%DATADIR%%/fonts/Cousine-LICENSE.txt						    |	%%CLIENT%%%%DATADIR%%/fonts/Cousine-LICENSE.txt
%%DATADIR%%/fonts/Cousine-Regular.ttf						    |	%%CLIENT%%%%DATADIR%%/fonts/Cousine-Regular.ttf
%%DATADIR%%/fonts/DroidSansFallbackFull-LICENSE.txt				    |	%%CLIENT%%%%DATADIR%%/fonts/DroidSansFallbackFull-LICENSE.txt
%%DATADIR%%/fonts/DroidSansFallbackFull.ttf					    |	%%CLIENT%%%%DATADIR%%/fonts/DroidSansFallbackFull.ttf
%%DATADIR%%/games/devtest/.luacheckrc						    |	%%DEVTEST%%%%DATADIR%%/games/devtest/.luacheckrc
%%DATADIR%%/games/devtest/LICENSE.txt						    |	%%DEVTEST%%%%DATADIR%%/games/devtest/LICENSE.txt
%%DATADIR%%/games/devtest/README.md						    |	%%DEVTEST%%%%DATADIR%%/games/devtest/README.md
%%DATADIR%%/games/devtest/game.conf						    |	%%DEVTEST%%%%DATADIR%%/games/devtest/game.conf
%%DATADIR%%/games/devtest/menu/background.png					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/menu/background.png
%%DATADIR%%/games/devtest/menu/header.png					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/menu/header.png
%%DATADIR%%/games/devtest/menu/icon.png						    |	%%DEVTEST%%%%DATADIR%%/games/devtest/menu/icon.png
%%DATADIR%%/games/devtest/mods/basenodes/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/init.lua
%%DATADIR%%/games/devtest/mods/basenodes/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/mod.conf
%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_grass_bottom  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_g
%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_snow.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_s
%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_snow_bottom.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_s
%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_snow_sheet.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_snow_sheet.
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_apple.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_apple.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_cobble.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_cobble.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_sand.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_sand.p
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_stone.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_stone.
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_dirt.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_dirt.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_grass.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_grass.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_gravel.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_gravel.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_ice.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_ice.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_junglegrass.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_junglegrass.p
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungleleaves.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungleleaves.
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree.pn
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree_to
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava_flowing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava_flowing.
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_leaves.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_leaves.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_mossycobble.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_mossycobble.p
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_needles.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_needles.
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree_top
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water.p
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water_flowing.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water_f
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_sand.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_sand.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow_side.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow_side.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_stone.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_stone.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree_top.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree_top.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water.png
%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water_flowing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water_flowing
%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/default_grass.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/defau
%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/default_grass_si  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/defau
%%DATADIR%%/games/devtest/mods/basenodes/textures/info.txt			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/info.txt
%%DATADIR%%/games/devtest/mods/basetools/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/init.lua
%%DATADIR%%/games/devtest/mods/basetools/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/mod.conf
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_bloodsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_bloodsword.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_elementalsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_elementalsw
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_firesword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_firesword.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healdagger.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healdagger.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healsword.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_icesword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_icesword.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick_no_delay.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick_no
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesesword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesesword.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelaxe.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelaxe.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steeldagger.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steeldagger
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l1.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshears.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshears
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshovel.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshovel
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelsword.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneaxe.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneaxe.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonepick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonepick.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshears.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshears
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshovel.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshovel
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonesword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonesword.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_superhealsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_superhealsw
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_titaniumsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_titaniumswo
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usespick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usespick.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usessword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usessword.p
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodaxe.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodaxe.png
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_wooddagger.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_wooddagger.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodpick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodpick.pn
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshears.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshears.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshovel.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshovel.
%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodsword.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodsword.p
%%DATADIR%%/games/devtest/mods/benchmarks/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/benchmarks/init.lua
%%DATADIR%%/games/devtest/mods/benchmarks/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/benchmarks/mod.conf
%%DATADIR%%/games/devtest/mods/broken/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/broken/init.lua
%%DATADIR%%/games/devtest/mods/broken/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/broken/mod.conf
%%DATADIR%%/games/devtest/mods/bucket/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/init.lua
%%DATADIR%%/games/devtest/mods/bucket/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/mod.conf
%%DATADIR%%/games/devtest/mods/bucket/textures/bucket.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket.png
%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_lava.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_lava.png
%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_water.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_water.png
%%DATADIR%%/games/devtest/mods/callbacks/entities.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/entities.lua
%%DATADIR%%/games/devtest/mods/callbacks/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/init.lua
%%DATADIR%%/games/devtest/mods/callbacks/items.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/items.lua
%%DATADIR%%/games/devtest/mods/callbacks/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/mod.conf
%%DATADIR%%/games/devtest/mods/callbacks/nodes.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/nodes.lua
%%DATADIR%%/games/devtest/mods/callbacks/players.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/players.lua
%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_entity.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_en
%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_entity_step.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_en
%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_item_1.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_it
%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_item_2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_it
%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_node.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_no
%%DATADIR%%/games/devtest/mods/chest/chest.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/chest.lua
%%DATADIR%%/games/devtest/mods/chest/detached.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/detached.lua
%%DATADIR%%/games/devtest/mods/chest/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/init.lua
%%DATADIR%%/games/devtest/mods/chest/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/mod.conf
%%DATADIR%%/games/devtest/mods/chest/textures/chest_chest.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/textures/chest_chest.png
%%DATADIR%%/games/devtest/mods/chest/textures/chest_detached_chest.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/textures/chest_detached_chest.png
%%DATADIR%%/games/devtest/mods/chest_of_everything/init.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/init.lua
%%DATADIR%%/games/devtest/mods/chest_of_everything/mod.conf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/mod.conf
%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_everything_ba  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_ev
%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_everything_ch  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_ev
%%DATADIR%%/games/devtest/mods/dignodes/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/init.lua
%%DATADIR%%/games/devtest/mods/dignodes/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/mod.conf
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_choppy.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_choppy.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_cracky.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_cracky.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_crumbly.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_crumbly.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_dig_immediate.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_dig_immediate
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_none.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_none.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating1.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating1.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating2.png
%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating3.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating3.png
%%DATADIR%%/games/devtest/mods/first_mod/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/first_mod/init.lua
%%DATADIR%%/games/devtest/mods/first_mod/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/first_mod/mod.conf
%%DATADIR%%/games/devtest/mods/give_initial_stuff/init.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/give_initial_stuff/init.lua
%%DATADIR%%/games/devtest/mods/give_initial_stuff/mod.conf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/give_initial_stuff/mod.conf
%%DATADIR%%/games/devtest/mods/gltf/LICENSE.md					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/LICENSE.md
%%DATADIR%%/games/devtest/mods/gltf/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/init.lua
%%DATADIR%%/games/devtest/mods/gltf/invalid/empty.gltf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/empty.gltf
%%DATADIR%%/games/devtest/mods/gltf/invalid/invalid_bufferview_bounds.gltf	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/invalid_bufferview_bounds.g
%%DATADIR%%/games/devtest/mods/gltf/invalid/json_missing_brace.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/json_missing_brace.gltf
%%DATADIR%%/games/devtest/mods/gltf/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/mod.conf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.glb		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.glb
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_matrix_transform.gltf  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_matrix_tra
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_scaled.gltf	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_scaled.glt
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_frog.gltf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_frog.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_minimal_triangle.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_minimal_triangle.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin_step.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin_step.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_sparse_accessor.gltf	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_sparse_accessor.
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_snow_man.gltf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_snow_man.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider.gltf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider_animated.gltf		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider_animated.gltf
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_with_vertex_stride.gltf    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_with_vertex_st
%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_without_indices.gltf	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_without_indice
%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_cube.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_cube.png
%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_frog.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_frog.png
%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_snow_man.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_snow_man.png
%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_spider.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_spider.png
%%DATADIR%%/games/devtest/mods/initial_message/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/initial_message/init.lua
%%DATADIR%%/games/devtest/mods/initial_message/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/initial_message/mod.conf
%%DATADIR%%/games/devtest/mods/last_mod/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/last_mod/init.lua
%%DATADIR%%/games/devtest/mods/last_mod/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/last_mod/mod.conf
%%DATADIR%%/games/devtest/mods/lighting/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/lighting/init.lua
%%DATADIR%%/games/devtest/mods/lighting/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/lighting/mod.conf
%%DATADIR%%/games/devtest/mods/log/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/log/init.lua
%%DATADIR%%/games/devtest/mods/log/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/log/mod.conf
%%DATADIR%%/games/devtest/mods/mapgen/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/mapgen/init.lua
%%DATADIR%%/games/devtest/mods/mapgen/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/mapgen/mod.conf
%%DATADIR%%/games/devtest/mods/modchannels/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/modchannels/init.lua
%%DATADIR%%/games/devtest/mods/modchannels/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/modchannels/mod.conf
%%DATADIR%%/games/devtest/mods/soundstuff/bigfoot.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/bigfoot.lua
%%DATADIR%%/games/devtest/mods/soundstuff/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/init.lua
%%DATADIR%%/games/devtest/mods/soundstuff/jukebox.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/jukebox.lua
%%DATADIR%%/games/devtest/mods/soundstuff/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/mod.conf
%%DATADIR%%/games/devtest/mods/soundstuff/racecar.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/racecar.lua
%%DATADIR%%/games/devtest/mods/soundstuff/sound_event_items.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sound_event_items.lua
%%DATADIR%%/games/devtest/mods/soundstuff/sounds/gitignored_sounds/custom_sounds_h  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/gitignored_sounds/cust
%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_mono.ogg		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_mono.ogg
%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_sinus.ogg		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_sinus.ogg
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_bigfoot.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_bigfoot.p
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_eat.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_eat.png
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_jukebox.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_jukebox.p
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_blank.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_blan
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_climbable.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_clim
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dig.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dig.
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dug.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dug.
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_fall.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_fall
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_footstep.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_foot
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_place.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_plac
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_place_failed.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_plac
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_sound.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_soun
%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_racecar.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_racecar.p
%%DATADIR%%/games/devtest/mods/stairs/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/stairs/init.lua
%%DATADIR%%/games/devtest/mods/stairs/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/stairs/mod.conf
%%DATADIR%%/games/devtest/mods/testabms/README.md				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/README.md
%%DATADIR%%/games/devtest/mods/testabms/after_node.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/after_node.lua
%%DATADIR%%/games/devtest/mods/testabms/chances.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/chances.lua
%%DATADIR%%/games/devtest/mods/testabms/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/init.lua
%%DATADIR%%/games/devtest/mods/testabms/intervals.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/intervals.lua
%%DATADIR%%/games/devtest/mods/testabms/min_max.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/min_max.lua
%%DATADIR%%/games/devtest/mods/testabms/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/mod.conf
%%DATADIR%%/games/devtest/mods/testabms/neighbors.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/neighbors.lua
%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_after_node.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_after_node.pn
%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_wait_node.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_wait_node.png
%%DATADIR%%/games/devtest/mods/testeditor/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testeditor/init.lua
%%DATADIR%%/games/devtest/mods/testeditor/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testeditor/mod.conf
%%DATADIR%%/games/devtest/mods/testentities/armor.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/armor.lua
%%DATADIR%%/games/devtest/mods/testentities/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/init.lua
%%DATADIR%%/games/devtest/mods/testentities/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/mod.conf
%%DATADIR%%/games/devtest/mods/testentities/models/LICENSE.txt			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/LICENSE.txt
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_guy.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_gu
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_guy.x	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_gu
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_flan.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_fl
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_flan.x	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_fl
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.b3d		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.b3d
%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.png
%%DATADIR%%/games/devtest/mods/testentities/observers.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/observers.lua
%%DATADIR%%/games/devtest/mods/testentities/pointable.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/pointable.lua
%%DATADIR%%/games/devtest/mods/testentities/selectionbox.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/selectionbox.lua
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_armorball.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_armor
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube1.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube1
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube2
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube3.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube3
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube4.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube4
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube5.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube5
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube6.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube6
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_dungeon_master.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_dunge
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_sprite.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_sprit
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_upright_sprite1.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_uprig
%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_upright_sprite2.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_uprig
%%DATADIR%%/games/devtest/mods/testentities/visuals.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/visuals.lua
%%DATADIR%%/games/devtest/mods/testfood/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/init.lua
%%DATADIR%%/games/devtest/mods/testfood/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/mod.conf
%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad.png
%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad2.png
%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good.png
%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good2.png
%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_replace.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_replace.png
%%DATADIR%%/games/devtest/mods/testformspec/LICENSE.txt				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/LICENSE.txt
%%DATADIR%%/games/devtest/mods/testformspec/callbacks.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/callbacks.lua
%%DATADIR%%/games/devtest/mods/testformspec/dummy_items.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/dummy_items.lua
%%DATADIR%%/games/devtest/mods/testformspec/formspec.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/formspec.lua
%%DATADIR%%/games/devtest/mods/testformspec/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/init.lua
%%DATADIR%%/games/devtest/mods/testformspec/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/mod.conf
%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_character.b3d	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_charact
%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_chest.obj	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_chest.o
%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_front.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_fron
%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_inside.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_insi
%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_side
%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_top.
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_9slice.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_9slic
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_animation.jpg	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_anima
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_animation.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_anima
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg.pn
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9slice.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9slice_focuse  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9slice_hovere  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9slice_presse  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_focused.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_fo
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_hovered.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_ho
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_pressed.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_pr
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_button_image.png  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_butto
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_character.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_chara
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_hovered.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_hover
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_item.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_item.
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_node.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_node.
%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_pressed.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_press
%%DATADIR%%/games/devtest/mods/testfullscreenfs/init.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfullscreenfs/init.lua
%%DATADIR%%/games/devtest/mods/testfullscreenfs/mod.conf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfullscreenfs/mod.conf
%%DATADIR%%/games/devtest/mods/testhud/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/init.lua
%%DATADIR%%/games/devtest/mods/testhud/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/mod.conf
%%DATADIR%%/games/devtest/mods/testhud/textures/testhud_waypoint.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/textures/testhud_waypoint.png
%%DATADIR%%/games/devtest/mods/testitems/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/init.lua
%%DATADIR%%/games/devtest/mods/testitems/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/mod.conf
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_animation_overlay.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_animation_o
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_base.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_bas
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_overlay.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_ove
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overridden.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overridden.
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_telescope_stick.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_telescope_s
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawner.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawne
%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawner_vmanip.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawne
%%DATADIR%%/games/devtest/mods/testnodes/README.md				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/README.md
%%DATADIR%%/games/devtest/mods/testnodes/commands.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/commands.lua
%%DATADIR%%/games/devtest/mods/testnodes/drawtypes.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/drawtypes.lua
%%DATADIR%%/games/devtest/mods/testnodes/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/init.lua
%%DATADIR%%/games/devtest/mods/testnodes/light.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/light.lua
%%DATADIR%%/games/devtest/mods/testnodes/liquids.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/liquids.lua
%%DATADIR%%/games/devtest/mods/testnodes/meshes.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/meshes.lua
%%DATADIR%%/games/devtest/mods/testnodes/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/mod.conf
%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_glass.obj	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_glass.
%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_metal.obj	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_metal.
%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_ocorner.obj		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_ocorner.obj
%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_pyramid.obj		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_pyramid.obj
%%DATADIR%%/games/devtest/mods/testnodes/nodeboxes.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/nodeboxes.lua
%%DATADIR%%/games/devtest/mods/testnodes/overlays.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/overlays.lua
%%DATADIR%%/games/devtest/mods/testnodes/param2.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/param2.lua
%%DATADIR%%/games/devtest/mods/testnodes/performance_test_nodes.lua		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/performance_test_nodes.lua
%%DATADIR%%/games/devtest/mods/testnodes/properties.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/properties.lua
%%DATADIR%%/games/devtest/mods/testnodes/textures.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures.lua
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_128x128_rgb.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_128x128_rgb
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6f.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6f.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6fg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6fg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6g.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6g.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6w.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6w.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6wg.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6wg.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_airlike.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_airlike.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces_optional.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces_op
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha128.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha128.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha191.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha191.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha64.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha64.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compositing_bott  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compo
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compositing_top.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compo
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_anim.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_anim.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_bottom.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_b
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_s
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_t
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_bottom.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_bo
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_si
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_to
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_bottom.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_b
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_s
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_t
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_bottom.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_bottom.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_b
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_s
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_t
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_bottom.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_blocking_pointable.png  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_blocking_po
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_bouncy.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_bouncy.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_buildable_to.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_buildable_t
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_noclimb_side  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_noclimb_top.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_nodescend_si  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_nodescend_to  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_nojump_side.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_nojump_top.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_resistance_s  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_s
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_t
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage_neg.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage_neg.
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_drowning.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_drowning.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage_minus.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage_plus.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fencelike.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fencelike.p
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fill_positioning_refer  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fill_positi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_firelike.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_firelike.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike.p
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_detail.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_d
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_framed.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_framed2.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_framed_optio  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslikeliquid.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslikeli
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_1.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_1.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_10.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_10.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_11.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_11.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_12.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_12.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_13.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_13.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_14.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_14.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_2.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_3.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_3.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_4.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_4.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_5.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_5.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_6.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_6.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_7.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_7.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_8.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_8.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_9.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_9.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_crossing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_crossi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_curved.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_curved
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_straight.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_straig
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_t_junction.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_t_junc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquid.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquid.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r0.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r1.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r2.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r3.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r4.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r5.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r6.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r7.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowing_r8.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r0.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r1.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r3.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r4.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r5.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r6.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r7.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsource_r8.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_glass.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_glas
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_metal.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_meta
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_metal_overlay.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_meta
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mask_WRGBKW.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mask_WRGBKW
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes10.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes3.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes4.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes5.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes6.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes7.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes8.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripes9.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_move_resistance.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_move_resist
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_1.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_2.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_3.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_4.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_5.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_falling_6.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nodebox.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nodebox.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_side.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_side
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_top.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_top.
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal1.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal1.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal2.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal2.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal3.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal3.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal4.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal4.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal5.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal5.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal6.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal6.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_not_pointable.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_not_pointab
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlay.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlay.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlayable.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlayable
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_4dir.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_4di
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_facedir.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_fac
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_full.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_ful
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_metal.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_met
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_wallmounted.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_wal
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike.p
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_degrotate.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_d
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_leveled.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_l
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_meshoptions.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_m
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base_  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base_  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base_  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base_  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_base_  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_degro  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_level  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_mesho  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_wallm  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_rooted_wavin  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_wallmounted.   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_w
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_waving.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_w
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_pointable.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_pointable.p
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect_color_shad  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect_color_shad  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_crossing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_cross
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_curved.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_curve
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_straight.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_strai
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_t_junction.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_t_jun
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_crossing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_crossi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_curved.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_curved
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_straight.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_straig
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_t_junction.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_t_junc
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sign3d.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sign3d.png
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_signlike.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_signlike.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_slippery.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_slippery.pn
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_crossing.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_cros
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_curved.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_curv
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_straight.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_stra
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_t_junction.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_t_ju
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sunlight_filter.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sunlight_fi
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_32bpp_bt.tg  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_32bpp_tb.tg  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_24bpp_bt.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_2
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_24bpp_tb.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_2
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_16bpp_bt.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_1
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_16bpp_tb.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_1
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_32bpp_bt.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_3
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_32bpp_tb.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_3
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_16bpp_bt.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_1
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_16bpp_tb.tga  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_1
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_ceiling.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_c
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_floor.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_f
%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_wall.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_w
%%DATADIR%%/games/devtest/mods/testpathfinder/README.md				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/README.md
%%DATADIR%%/games/devtest/mods/testpathfinder/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/init.lua
%%DATADIR%%/games/devtest/mods/testpathfinder/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/mod.conf
%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_testpathfind  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_t
%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_waypoint.png  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w
%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_waypoint_end  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w
%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_waypoint_sta  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w
%%DATADIR%%/games/devtest/mods/testtools/README.md				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/README.md
%%DATADIR%%/games/devtest/mods/testtools/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/init.lua
%%DATADIR%%/games/devtest/mods/testtools/light.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/light.lua
%%DATADIR%%/games/devtest/mods/testtools/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/mod.conf
%%DATADIR%%/games/devtest/mods/testtools/node_box_visualizer.lua		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/node_box_visualizer.lua
%%DATADIR%%/games/devtest/mods/testtools/particles.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/particles.lua
%%DATADIR%%/games/devtest/mods/testtools/privatizer.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/privatizer.lua
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_blocked_pointing_staff  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_blocked_poi
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_branding_iron.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_branding_ir
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_children_getter.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_children_ge
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_rotator.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_rota
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_scaler.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_scal
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_spawner.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_spaw
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_falling_node_tool.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_falling_nod
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_item_meta_editor.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_item_meta_e
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_lighttool.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_lighttool.p
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_box_visualizer.pn  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_box_vi
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_meta_editor.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_meta_e
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_setter.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_setter
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_attacher.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_atta
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_editor.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_edit
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_mover.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_move
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_param2tool.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_param2tool.
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_clip.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_cl
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_sheet.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_sh
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_spawner.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_sp
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_vertical.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_ve
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_privatizer.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_privatizer.
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_remover.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_remover.png
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_ultimate_pointing_staf  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_ultimate_po
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_collision_box.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_coll
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_node_box.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_node
%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_selection_box.p  |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_sele
%%DATADIR%%/games/devtest/mods/testtranslations/init.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/init.lua
%%DATADIR%%/games/devtest/mods/testtranslations/locale/testtranslations.fr.po	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/testtranslations
%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_mo.fr.mo	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_mo.f
%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_po.fr.po	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_po.f
%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_tr.fr.tr	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_tr.f
%%DATADIR%%/games/devtest/mods/testtranslations/mod.conf			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/mod.conf
%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/readme.txt		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/readme.txt
%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation_mo.de.mo    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation
%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation_po.de.po    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation
%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.de.po		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.de.po
%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.fr.po		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.fr.po
%%DATADIR%%/games/devtest/mods/tiled/init.lua					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/init.lua
%%DATADIR%%/games/devtest/mods/tiled/mod.conf					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/mod.conf
%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled.png			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled.png
%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled_node.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled_node.png
%%DATADIR%%/games/devtest/mods/unittests/async_env.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/async_env.lua
%%DATADIR%%/games/devtest/mods/unittests/color.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/color.lua
%%DATADIR%%/games/devtest/mods/unittests/content_ids.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/content_ids.lua
%%DATADIR%%/games/devtest/mods/unittests/crafting.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/crafting.lua
%%DATADIR%%/games/devtest/mods/unittests/crafting_prepare.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/crafting_prepare.lua
%%DATADIR%%/games/devtest/mods/unittests/entity.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/entity.lua
%%DATADIR%%/games/devtest/mods/unittests/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/init.lua
%%DATADIR%%/games/devtest/mods/unittests/inside_async_env.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inside_async_env.lua
%%DATADIR%%/games/devtest/mods/unittests/inside_mapgen_env.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inside_mapgen_env.lua
%%DATADIR%%/games/devtest/mods/unittests/inventory.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inventory.lua
%%DATADIR%%/games/devtest/mods/unittests/itemdescription.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/itemdescription.lua
%%DATADIR%%/games/devtest/mods/unittests/itemstack_equals.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/itemstack_equals.lua
%%DATADIR%%/games/devtest/mods/unittests/load_time.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/load_time.lua
%%DATADIR%%/games/devtest/mods/unittests/metadata.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/metadata.lua
%%DATADIR%%/games/devtest/mods/unittests/misc.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/misc.lua
%%DATADIR%%/games/devtest/mods/unittests/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/mod.conf
%%DATADIR%%/games/devtest/mods/unittests/on_shutdown.lua			    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/on_shutdown.lua
%%DATADIR%%/games/devtest/mods/unittests/player.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/player.lua
%%DATADIR%%/games/devtest/mods/unittests/raycast.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/raycast.lua
%%DATADIR%%/games/devtest/mods/unittests/textures/default_dirt.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/default_dirt.png
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_callback.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_callback.pn
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_coal_lump.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_coal_lump.p
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_description_test.png    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_description
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_iron_lump.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_iron_lump.p
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_repairable_tool.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_repairable_
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_steel_ingot.png	    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_steel_ingot
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_stick.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_stick.png
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_torch.png		    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_torch.png
%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_unrepairable_tool.png   |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_unrepairabl
%%DATADIR%%/games/devtest/mods/unittests/vector2.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/vector2.lua
%%DATADIR%%/games/devtest/mods/unittests/version.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/version.lua
%%DATADIR%%/games/devtest/mods/util_commands/init.lua				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/util_commands/init.lua
%%DATADIR%%/games/devtest/mods/util_commands/mod.conf				    |	%%DEVTEST%%%%DATADIR%%/games/devtest/mods/util_commands/mod.conf
%%DATADIR%%/games/devtest/screenshot.png					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/screenshot.png
%%DATADIR%%/games/devtest/settingtypes.txt					    |	%%DEVTEST%%%%DATADIR%%/games/devtest/settingtypes.txt
%%DATADIR%%/textures/base/pack/air.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/air.png
%%DATADIR%%/textures/base/pack/aux1_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/aux1_btn.png
%%DATADIR%%/textures/base/pack/blank.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/blank.png
%%DATADIR%%/textures/base/pack/bubble.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/bubble.png
%%DATADIR%%/textures/base/pack/bubble_gone.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/bubble_gone.png
%%DATADIR%%/textures/base/pack/button_hover_semitrans.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/button_hover_semitrans.png
%%DATADIR%%/textures/base/pack/button_press_semitrans.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/button_press_semitrans.png
%%DATADIR%%/textures/base/pack/camera_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/camera_btn.png
%%DATADIR%%/textures/base/pack/cdb_downloading.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_downloading.png
%%DATADIR%%/textures/base/pack/cdb_queued.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_queued.png
%%DATADIR%%/textures/base/pack/cdb_update.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_update.png
%%DATADIR%%/textures/base/pack/cdb_update_cropped.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_update_cropped.png
%%DATADIR%%/textures/base/pack/chat_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_btn.png
%%DATADIR%%/textures/base/pack/chat_hide_btn.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_hide_btn.png
%%DATADIR%%/textures/base/pack/chat_show_btn.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_show_btn.png
%%DATADIR%%/textures/base/pack/checkbox_16.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_16.png
%%DATADIR%%/textures/base/pack/checkbox_32.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_32.png
%%DATADIR%%/textures/base/pack/checkbox_64.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_64.png
%%DATADIR%%/textures/base/pack/clear.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/clear.png
%%DATADIR%%/textures/base/pack/contentdb_neutral.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_neutral.png
%%DATADIR%%/textures/base/pack/contentdb_thumb_down.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_thumb_down.png
%%DATADIR%%/textures/base/pack/contentdb_thumb_up.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_thumb_up.png
%%DATADIR%%/textures/base/pack/crack_anylength.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/crack_anylength.png
%%DATADIR%%/textures/base/pack/debug_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/debug_btn.png
%%DATADIR%%/textures/base/pack/dig_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/dig_btn.png
%%DATADIR%%/textures/base/pack/down.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/down.png
%%DATADIR%%/textures/base/pack/drop_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/drop_btn.png
%%DATADIR%%/textures/base/pack/end_icon.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/end_icon.png
%%DATADIR%%/textures/base/pack/error_icon_orange.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/error_icon_orange.png
%%DATADIR%%/textures/base/pack/error_icon_red.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/error_icon_red.png
%%DATADIR%%/textures/base/pack/error_screenshot.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/error_screenshot.png
%%DATADIR%%/textures/base/pack/exit_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/exit_btn.png
%%DATADIR%%/textures/base/pack/fast_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/fast_btn.png
%%DATADIR%%/textures/base/pack/fly_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/fly_btn.png
%%DATADIR%%/textures/base/pack/halo.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/halo.png
%%DATADIR%%/textures/base/pack/heart.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/heart.png
%%DATADIR%%/textures/base/pack/heart_gone.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/heart_gone.png
%%DATADIR%%/textures/base/pack/ignore.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/ignore.png
%%DATADIR%%/textures/base/pack/inventory_btn.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/inventory_btn.png
%%DATADIR%%/textures/base/pack/joystick_bg.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_bg.png
%%DATADIR%%/textures/base/pack/joystick_center.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_center.png
%%DATADIR%%/textures/base/pack/joystick_off.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_off.png
%%DATADIR%%/textures/base/pack/jump_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/jump_btn.png
%%DATADIR%%/textures/base/pack/loading_screenshot.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/loading_screenshot.png
%%DATADIR%%/textures/base/pack/logo.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/logo.png
%%DATADIR%%/textures/base/pack/menu_header.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/menu_header.png
%%DATADIR%%/textures/base/pack/minimap_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_btn.png
%%DATADIR%%/textures/base/pack/minimap_mask_round.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_mask_round.png
%%DATADIR%%/textures/base/pack/minimap_mask_square.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_mask_square.png
%%DATADIR%%/textures/base/pack/minimap_overlay_round.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_overlay_round.png
%%DATADIR%%/textures/base/pack/minimap_overlay_square.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_overlay_square.png
%%DATADIR%%/textures/base/pack/next_icon.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/next_icon.png
%%DATADIR%%/textures/base/pack/no_screenshot.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/no_screenshot.png
%%DATADIR%%/textures/base/pack/no_texture.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/no_texture.png
%%DATADIR%%/textures/base/pack/no_texture_airlike.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/no_texture_airlike.png
%%DATADIR%%/textures/base/pack/noclip_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/noclip_btn.png
%%DATADIR%%/textures/base/pack/object_marker_red.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/object_marker_red.png
%%DATADIR%%/textures/base/pack/overflow_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/overflow_btn.png
%%DATADIR%%/textures/base/pack/place_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/place_btn.png
%%DATADIR%%/textures/base/pack/player.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/player.png
%%DATADIR%%/textures/base/pack/player_back.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/player_back.png
%%DATADIR%%/textures/base/pack/player_marker.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/player_marker.png
%%DATADIR%%/textures/base/pack/plus.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/plus.png
%%DATADIR%%/textures/base/pack/prev_icon.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/prev_icon.png
%%DATADIR%%/textures/base/pack/progress_bar.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/progress_bar.png
%%DATADIR%%/textures/base/pack/progress_bar_bg.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/progress_bar_bg.png
%%DATADIR%%/textures/base/pack/rangeview_btn.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/rangeview_btn.png
%%DATADIR%%/textures/base/pack/refresh.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/refresh.png
%%DATADIR%%/textures/base/pack/search.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/search.png
%%DATADIR%%/textures/base/pack/server_favorite.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_favorite.png
%%DATADIR%%/textures/base/pack/server_favorite_delete.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_favorite_delete.png
%%DATADIR%%/textures/base/pack/server_flags_creative.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_creative.png
%%DATADIR%%/textures/base/pack/server_flags_damage.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_damage.png
%%DATADIR%%/textures/base/pack/server_flags_pvp.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_pvp.png
%%DATADIR%%/textures/base/pack/server_incompatible.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_incompatible.png
%%DATADIR%%/textures/base/pack/server_ping_1.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_1.png
%%DATADIR%%/textures/base/pack/server_ping_2.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_2.png
%%DATADIR%%/textures/base/pack/server_ping_3.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_3.png
%%DATADIR%%/textures/base/pack/server_ping_4.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_4.png
%%DATADIR%%/textures/base/pack/server_public.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_public.png
%%DATADIR%%/textures/base/pack/server_url.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_url.png
%%DATADIR%%/textures/base/pack/server_url_unavailable.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_url_unavailable.png
%%DATADIR%%/textures/base/pack/server_view_clients.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_clients.png
%%DATADIR%%/textures/base/pack/server_view_clients_unavailable.png		    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_clients_unavailable.png
%%DATADIR%%/textures/base/pack/server_view_mods.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_mods.png
%%DATADIR%%/textures/base/pack/server_view_mods_unavailable.png			    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_mods_unavailable.png
%%DATADIR%%/textures/base/pack/settings_btn.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_btn.png
%%DATADIR%%/textures/base/pack/settings_info.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_info.png
%%DATADIR%%/textures/base/pack/settings_reset.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_reset.png
%%DATADIR%%/textures/base/pack/smoke_puff.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/smoke_puff.png
%%DATADIR%%/textures/base/pack/start_icon.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/start_icon.png
%%DATADIR%%/textures/base/pack/sunrisebg.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/sunrisebg.png
%%DATADIR%%/textures/base/pack/unknown_item.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_item.png
%%DATADIR%%/textures/base/pack/unknown_node.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_node.png
%%DATADIR%%/textures/base/pack/unknown_object.png				    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_object.png
%%DATADIR%%/textures/base/pack/wieldhand.png					    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/wieldhand.png
%%DATADIR%%/textures/base/pack/zoom.png						    |	%%CLIENT%%%%DATADIR%%/textures/base/pack/zoom.png
share/man/man6/luanti.6.gz							    |	%%CLIENT%%share/man/man6/luanti.6.gz
share/man/man6/luantiserver.6.gz						    |	%%SERVER%%share/man/man6/luantiserver.6.gz
share/metainfo/org.luanti.luanti.metainfo.xml						share/metainfo/org.luanti.luanti.metainfo.xml

I have decided to add a further comparison between the pkg-plist from my unofficial port and what the official luanti port has (right side) since there may be areas where they diverge and mine is necessarily more bleeding edge because I update per commit.  I chose a different option name for one option and might have more options than the official port since I wish to expose as many as are useful.  It may seem like the order of the lines are different but I take what the generated pkg-plist provides and the script adjusts each line as necessary.

%%CLIENT%%bin/luanti									%%CLIENT%%bin/luanti
										    >	%%CLIENT%%bin/minetest
%%SERVER%%bin/luantiserver								%%SERVER%%bin/luantiserver
etc/minetest.conf.example							    |	%%SERVER%%bin/minetestserver
%%SERVER%%etc/rc.d/luanti							    |	@sample etc/minetest.conf.example etc/minetest.conf
share/applications/org.luanti.luanti.desktop						share/applications/org.luanti.luanti.desktop
%%DOCS%%%%DOCSDIR%%/README.md							    <	
%%DOCS%%%%DOCSDIR%%/client_lua_api.md						    <	
%%DOCS%%%%DOCSDIR%%/lua_api.md							    <	
%%DOCS%%%%DOCSDIR%%/menu_lua_api.md						    <	
%%DOCS%%%%DOCSDIR%%/texture_packs.md						    <	
%%DOCS%%%%DOCSDIR%%/world_format.md						    <	
share/icons/hicolor/128x128/apps/luanti.png						share/icons/hicolor/128x128/apps/luanti.png
share/icons/hicolor/scalable/apps/luanti.svg						share/icons/hicolor/scalable/apps/luanti.svg
%%CLIENT%%%%NLS%%share/locale/az/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/az/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/bar/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/bar/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/be/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/be/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/bg/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/bg/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/br/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/br/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ca/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ca/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/cs/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/cs/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/cy/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/cy/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/da/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/da/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/de/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/de/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/el/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/el/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/eo/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/eo/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/es/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/es/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/es_US/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/es_US/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/et/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/et/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/eu/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/eu/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/fa/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/fa/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/fi/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/fi/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/fil/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/fil/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/fr/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/fr/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ga/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ga/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/gd/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/gd/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/gl/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/gl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/hu/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/hu/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/hy/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/hy/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/id/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/id/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/io/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/io/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/isv/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/isv/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/it/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/it/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ja/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ja/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/jbo/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/jbo/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/jv/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/jv/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/kab/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/kab/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/kk/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/kk/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/kmr/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/kmr/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ko/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ko/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/kv/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/kv/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ky/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ky/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/lt/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/lt/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/lv/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/lv/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/lzh/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/lzh/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/mi/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/mi/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/mn/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/mn/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/mr/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/mr/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ms/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ms/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/nb/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/nb/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/nl/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/nl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/nn/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/nn/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/oc/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/oc/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/pl/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/pl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/pt/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/pt/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/pt_BR/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/pt_BR/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ro/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ro/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ru/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ru/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sk/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/sk/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sl/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/sl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sr/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/sr/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sr_Cyrl/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/sr_Cyrl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sr_Latn/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/sr_Latn/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sv/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/sv/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/sw/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/sw/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/ta/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/ta/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/tl/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/tl/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/tok/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/tok/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/tr/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/tr/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/tt/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/tt/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/uk/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/uk/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/vi/LC_MESSAGES/luanti.mo					%%CLIENT%%%%NLS%%share/locale/vi/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/zh_CN/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/zh_CN/LC_MESSAGES/luanti.mo
%%CLIENT%%%%NLS%%share/locale/zh_TW/LC_MESSAGES/luanti.mo				%%CLIENT%%%%NLS%%share/locale/zh_TW/LC_MESSAGES/luanti.mo
%%DATADIR%%/builtin/async/game.lua						    |	share/man/man6/luanti.6.gz
%%DATADIR%%/builtin/async/mainmenu.lua						    |	share/man/man6/luantiserver.6.gz
%%DATADIR%%/builtin/client/chatcommands.lua					    <	
%%DATADIR%%/builtin/client/init.lua						    <	
%%DATADIR%%/builtin/client/misc.lua						    <	
%%DATADIR%%/builtin/client/register.lua						    <	
%%DATADIR%%/builtin/common/after.lua						    <	
%%DATADIR%%/builtin/common/chatcommands.lua					    <	
%%DATADIR%%/builtin/common/filterlist.lua					    <	
%%DATADIR%%/builtin/common/information_formspecs.lua				    <	
%%DATADIR%%/builtin/common/item_s.lua						    <	
%%DATADIR%%/builtin/common/math.lua						    <	
%%DATADIR%%/builtin/common/menu.lua						    <	
%%DATADIR%%/builtin/common/metatable.lua					    <	
%%DATADIR%%/builtin/common/misc_helpers.lua					    <	
%%DATADIR%%/builtin/common/mod_storage.lua					    <	
%%DATADIR%%/builtin/common/register.lua						    <	
%%DATADIR%%/builtin/common/serialize.lua					    <	
%%DATADIR%%/builtin/common/settings/components.lua				    <	
%%DATADIR%%/builtin/common/settings/dlg_change_mapgen_flags.lua			    <	
%%DATADIR%%/builtin/common/settings/dlg_settings.lua				    <	
%%DATADIR%%/builtin/common/settings/generate_from_settingtypes.lua		    <	
%%DATADIR%%/builtin/common/settings/init.lua					    <	
%%DATADIR%%/builtin/common/settings/settingtypes.lua				    <	
%%DATADIR%%/builtin/common/settings/shadows_component.lua			    <	
%%DATADIR%%/builtin/common/strict.lua						    <	
%%DATADIR%%/builtin/common/tests/after_spec.lua					    <	
%%DATADIR%%/builtin/common/tests/math_spec.lua					    <	
%%DATADIR%%/builtin/common/tests/misc_helpers_spec.lua				    <	
%%DATADIR%%/builtin/common/tests/serialize_spec.lua				    <	
%%DATADIR%%/builtin/common/tests/vector2_spec.lua				    <	
%%DATADIR%%/builtin/common/tests/vector_spec.lua				    <	
%%DATADIR%%/builtin/common/vector.lua						    <	
%%DATADIR%%/builtin/common/vector2.lua						    <	
%%DATADIR%%/builtin/emerge/env.lua						    <	
%%DATADIR%%/builtin/emerge/init.lua						    <	
%%DATADIR%%/builtin/emerge/register.lua						    <	
%%DATADIR%%/builtin/fstk/buttonbar.lua						    <	
%%DATADIR%%/builtin/fstk/dialog.lua						    <	
%%DATADIR%%/builtin/fstk/tabview.lua						    <	
%%DATADIR%%/builtin/fstk/ui.lua							    <	
%%DATADIR%%/builtin/game/async.lua						    <	
%%DATADIR%%/builtin/game/auth.lua						    <	
%%DATADIR%%/builtin/game/chat.lua						    <	
%%DATADIR%%/builtin/game/constants.lua						    <	
%%DATADIR%%/builtin/game/death_screen.lua					    <	
%%DATADIR%%/builtin/game/deprecated.lua						    <	
%%DATADIR%%/builtin/game/detached_inventory.lua					    <	
%%DATADIR%%/builtin/game/falling.lua						    <	
%%DATADIR%%/builtin/game/features.lua						    <	
%%DATADIR%%/builtin/game/forceloading.lua					    <	
%%DATADIR%%/builtin/game/hud.lua						    <	
%%DATADIR%%/builtin/game/init.lua						    <	
%%DATADIR%%/builtin/game/item.lua						    <	
%%DATADIR%%/builtin/game/item_entity.lua					    <	
%%DATADIR%%/builtin/game/knockback.lua						    <	
%%DATADIR%%/builtin/game/misc.lua						    <	
%%DATADIR%%/builtin/game/misc_s.lua						    <	
%%DATADIR%%/builtin/game/privileges.lua						    <	
%%DATADIR%%/builtin/game/register.lua						    <	
%%DATADIR%%/builtin/game/static_spawn.lua					    <	
%%DATADIR%%/builtin/game/tests/test_moveaction.lua				    <	
%%DATADIR%%/builtin/game/voxelarea.lua						    <	
%%DATADIR%%/builtin/init.lua							    <	
%%DATADIR%%/builtin/locale/__builtin.be.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.bg.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ca.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.cs.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.cy.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.da.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.de.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.el.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.eo.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.es.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.et.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.eu.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.fi.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.fil.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.fr.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ga.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.gl.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.hu.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.id.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.it.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ja.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.jbo.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.jv.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ko.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.kv.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ky.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.lt.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.lv.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.lzh.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.mn.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.mr.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ms.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.nb.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.nl.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.nn.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.oc.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.pl.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.pt.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.pt_BR.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ro.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.ru.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sk.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sl.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sr_Cyrl.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sr_Latn.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sv.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.sw.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.tok.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.tr.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.tt.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.uk.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.vi.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.zh_CN.tr					    <	
%%DATADIR%%/builtin/locale/__builtin.zh_TW.tr					    <	
%%DATADIR%%/builtin/locale/template.txt						    <	
%%DATADIR%%/builtin/mainmenu/async_event.lua					    <	
%%DATADIR%%/builtin/mainmenu/common.lua						    <	
%%DATADIR%%/builtin/mainmenu/content/contentdb.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/dlg_contentdb.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/dlg_install.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/dlg_overwrite.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/dlg_package.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/init.lua					    <	
%%DATADIR%%/builtin/mainmenu/content/pkgmgr.lua					    <	
%%DATADIR%%/builtin/mainmenu/content/screenshots.lua				    <	
%%DATADIR%%/builtin/mainmenu/content/tests/pkgmgr_spec.lua			    <	
%%DATADIR%%/builtin/mainmenu/content/update_detector.lua			    <	
%%DATADIR%%/builtin/mainmenu/credits.json					    <	
%%DATADIR%%/builtin/mainmenu/dlg_clients_list.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_config_world.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_confirm_exit.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_create_world.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_delete_content.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_delete_world.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_rebind_keys.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_register.lua					    <	
%%DATADIR%%/builtin/mainmenu/dlg_reinstall_mtg.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_rename_modpack.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_server_list_mods.lua				    <	
%%DATADIR%%/builtin/mainmenu/dlg_version_info.lua				    <	
%%DATADIR%%/builtin/mainmenu/game_theme.lua					    <	
%%DATADIR%%/builtin/mainmenu/init.lua						    <	
%%DATADIR%%/builtin/mainmenu/serverlistmgr.lua					    <	
%%DATADIR%%/builtin/mainmenu/tab_about.lua					    <	
%%DATADIR%%/builtin/mainmenu/tab_content.lua					    <	
%%DATADIR%%/builtin/mainmenu/tab_local.lua					    <	
%%DATADIR%%/builtin/mainmenu/tab_online.lua					    <	
%%DATADIR%%/builtin/mainmenu/tests/favorites_wellformed.txt			    <	
%%DATADIR%%/builtin/mainmenu/tests/serverlistmgr_spec.lua			    <	
%%DATADIR%%/builtin/pause_menu/init.lua						    <	
%%DATADIR%%/builtin/pause_menu/register.lua					    <	
%%DATADIR%%/builtin/profiler/init.lua						    <	
%%DATADIR%%/builtin/profiler/instrumentation.lua				    <	
%%DATADIR%%/builtin/profiler/reporter.lua					    <	
%%DATADIR%%/builtin/profiler/sampling.lua					    <	
%%DATADIR%%/builtin/settingtypes.txt						    <	
%%DATADIR%%/builtin/sscsm_client/init.lua					    <	
%%DATADIR%%/builtin/sscsm_client/register.lua					    <	
%%DATADIR%%/builtin/sscsm_server/init.lua					    <	
%%CLIENT%%%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/3d_interlaced_merge/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/OneTextureBlend.fsh		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.fsh			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D.vsh			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Renderer2D_noTex.fsh		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Solid.fsh				    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/Solid.vsh				    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannel.fsh	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentAlphaChannelRef.fsh	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/Irrlicht/TransparentVertexAlpha.fsh	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/bloom_downsample/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/bloom_downsample/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/bloom_upsample/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/bloom_upsample/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/blur_h/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/blur_h/opengl_vertex.glsl			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/blur_v/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/blur_v/opengl_vertex.glsl			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/cloud_shader/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/cloud_shader/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/extract_bloom/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/extract_bloom/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/fxaa/opengl_fragment.glsl			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/fxaa/opengl_vertex.glsl			    <	
%%CLIENT%%%%DATADIR%%/client/shaders/inventory_shader/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/inventory_shader/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/minimap_shader/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/minimap_shader/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/nodes_shader/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/nodes_shader/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/object_shader/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/object_shader/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/second_stage/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/second_stage/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/selection_shader/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/selection_shader/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass1_trans/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass2/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/shadow/pass2/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/stars_shader/opengl_fragment.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/stars_shader/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/update_exposure/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/update_exposure/opengl_vertex.glsl		    <	
%%CLIENT%%%%DATADIR%%/client/shaders/volumetric_light/opengl_fragment.glsl	    <	
%%CLIENT%%%%DATADIR%%/client/shaders/volumetric_light/opengl_vertex.glsl	    <	
%%CLIENT%%%%DATADIR%%/fonts/Arimo-Bold.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/Arimo-BoldItalic.ttf				    <	
%%CLIENT%%%%DATADIR%%/fonts/Arimo-Italic.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/Arimo-LICENSE.txt					    <	
%%CLIENT%%%%DATADIR%%/fonts/Arimo-Regular.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/Cousine-Bold.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/Cousine-BoldItalic.ttf				    <	
%%CLIENT%%%%DATADIR%%/fonts/Cousine-Italic.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/Cousine-LICENSE.txt					    <	
%%CLIENT%%%%DATADIR%%/fonts/Cousine-Regular.ttf					    <	
%%CLIENT%%%%DATADIR%%/fonts/DroidSansFallbackFull-LICENSE.txt			    <	
%%CLIENT%%%%DATADIR%%/fonts/DroidSansFallbackFull.ttf				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/.luacheckrc				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/LICENSE.txt				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/README.md					    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/game.conf					    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/menu/background.png			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/menu/header.png				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/menu/icon.png				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_g  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_dirt_with_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/basenodes_snow_sheet.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_apple.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_cobble.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_sand.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_desert_stone.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_dirt.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_grass.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_gravel.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_ice.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_junglegrass.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungleleaves.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_jungletree_to  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_lava_flowing.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_leaves.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_mossycobble.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_needles.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_pine_tree_top  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_river_water_f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_sand.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_snow_side.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_stone.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_tree_top.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/default_water_flowing  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/defau  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/dirt_with_grass/defau  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basenodes/textures/info.txt		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_bloodsword.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_elementalsw  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_firesword.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healdagger.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_healsword.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_icesword.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesepick_no  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_mesesword.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelaxe.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steeldagger  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelpick_l  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshears  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelshovel  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_steelsword.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneaxe.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonepick.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshears  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stoneshovel  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_stonesword.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_superhealsw  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_titaniumswo  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usespick.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_usessword.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodaxe.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_wooddagger.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodpick.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshears.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodshovel.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/basetools/textures/basetools_woodsword.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/benchmarks/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/benchmarks/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/broken/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/broken/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket.png		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_lava.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/bucket/textures/bucket_water.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/entities.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/items.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/nodes.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/players.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_en  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_en  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_it  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_it  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/callbacks/textures/callbacks_callback_no  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/chest.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/detached.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/textures/chest_chest.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest/textures/chest_detached_chest.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_ev  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/chest_of_everything/textures/chest_of_ev  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_choppy.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_cracky.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_crumbly.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_dig_immediate  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_none.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating1.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating2.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/dignodes/textures/dignodes_rating3.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/first_mod/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/first_mod/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/give_initial_stuff/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/give_initial_stuff/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/LICENSE.md			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/init.lua				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/empty.gltf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/invalid_bufferview_bounds.g  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/invalid/json_missing_brace.gltf	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/mod.conf				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.glb	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube.gltf	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_matrix_tra  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_blender_cube_scaled.glt  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_frog.gltf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_minimal_triangle.gltf    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin.gltf	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_skin_step.gltf    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_simple_sparse_accessor.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_snow_man.gltf	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider.gltf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_spider_animated.gltf	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_with_vertex_st  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/models/gltf_triangle_without_indice  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_cube.png		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_frog.png		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_snow_man.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/gltf/textures/gltf_spider.png		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/initial_message/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/initial_message/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/last_mod/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/last_mod/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/lighting/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/lighting/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/log/init.lua				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/log/mod.conf				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/mapgen/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/mapgen/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/modchannels/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/modchannels/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/bigfoot.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/jukebox.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/racecar.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sound_event_items.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/gitignored_sounds/cust  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_mono.ogg	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/sounds/soundstuff_sinus.ogg    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_bigfoot.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_eat.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_jukebox.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_blan  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_clim  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dig.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_dug.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_fall  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_foot  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_plac  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_plac  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_node_soun  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/soundstuff/textures/soundstuff_racecar.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/stairs/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/stairs/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/README.md			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/after_node.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/chances.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/intervals.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/min_max.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/neighbors.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_after_node.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testabms/textures/testabms_wait_node.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testeditor/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testeditor/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/armor.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/LICENSE.txt	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_gu  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_cool_gu  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_fl  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_lava_fl  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.b3d  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/models/testentities_sam.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/observers.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/pointable.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/selectionbox.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_armor  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube1  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube2  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube3  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube4  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube5  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_cube6  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_dunge  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_sprit  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_uprig  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/textures/testentities_uprig  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testentities/visuals.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_bad2.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_good2.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfood/textures/testfood_replace.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/LICENSE.txt		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/callbacks.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/dummy_items.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/formspec.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_charact  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/models/testformspec_chest.o  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_fron  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_insi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_side  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/default_chest_top.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_9slic  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_anima  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_anima  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_9s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_fo  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_ho  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_bg_pr  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_butto  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_chara  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_hover  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_item.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_node.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testformspec/textures/testformspec_press  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfullscreenfs/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testfullscreenfs/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testhud/textures/testhud_waypoint.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_animation_o  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_bas  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overlay_ove  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_overridden.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_telescope_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawne  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testitems/textures/testitems_tree_spawne  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/README.md			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/commands.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/drawtypes.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/light.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/liquids.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/meshes.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_glass.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_marble_metal.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_ocorner.obj    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/models/testnodes_pyramid.obj    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/nodeboxes.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/overlays.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/param2.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/performance_test_nodes.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/properties.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_128x128_rgb  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_1wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_2wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_3wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_4wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_5wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6f.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6fg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6g.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6w.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_6wg.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_airlike.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_allfaces_op  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha128.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha191.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha64.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compo  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_alpha_compo  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_anim.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_b  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached4_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_bo  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_si  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attached_to  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_b  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedf_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedfr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_b  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedw_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_attachedwr_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_blocking_po  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_bouncy.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_buildable_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_n  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_s  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_climbable_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_damage_neg.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_drowning.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fall_damage  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fencelike.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_fill_positi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_firelike.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_d  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslike_f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_glasslikeli  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_1.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_10.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_11.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_12.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_13.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_14.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_2.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_3.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_4.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_5.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_6.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_7.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_8.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_light_9.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_crossi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_curved  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_straig  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_line_t_junc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquid.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidflowi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_liquidsourc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_glas  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_meta  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_marble_meta  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mask_WRGBKW  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_mesh_stripe  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_move_resist  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_node_fallin  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nodebox.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_side  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_nojump_top.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal1.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal2.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal3.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal4.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal5.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_normal6.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_not_pointab  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlay.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_overlayable  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_4di  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_fac  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_ful  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_met  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_palette_wal  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_d  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_l  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_m  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_r  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_plantlike_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_pointable.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_post_effect  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_cross  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_curve  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_strai  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail2_t_jun  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_crossi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_curved  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_straig  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_rail_t_junc  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sign3d.png   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_signlike.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_slippery.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_cros  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_curv  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_stra  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_street_t_ju  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_sunlight_fi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type10_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_2  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type1_2  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_1  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_1  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_3  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type2_3  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_1  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_tga_type3_1  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_c  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testnodes/textures/testnodes_torchlike_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/README.md		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_t  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testpathfinder/textures/testpathfinder_w  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/README.md			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/light.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/node_box_visualizer.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/particles.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/privatizer.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_blocked_poi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_branding_ir  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_children_ge  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_rota  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_scal  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_entity_spaw  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_falling_nod  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_item_meta_e  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_lighttool.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_box_vi  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_meta_e  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_node_setter  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_atta  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_edit  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_object_move  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_param2tool.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_cl  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_sh  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_sp  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_particle_ve  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_privatizer.   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_remover.png  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_ultimate_po  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_coll  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_node  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtools/textures/testtools_visual_sele  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/testtranslations  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_mo.f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_po.f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/locale/translation_tr.f  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/readme.txt   <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/test_locale/translation  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.de.po	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/testtranslations/translation_mo.fr.po	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/tiled/textures/tiled_tiled_node.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/async_env.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/color.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/content_ids.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/crafting.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/crafting_prepare.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/entity.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/init.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inside_async_env.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inside_mapgen_env.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/inventory.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/itemdescription.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/itemstack_equals.lua	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/load_time.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/metadata.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/misc.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/mod.conf			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/on_shutdown.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/player.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/raycast.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/default_dirt.png	    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_callback.pn  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_coal_lump.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_description  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_iron_lump.p  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_repairable_  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_steel_ingot  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_stick.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_torch.png    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/textures/unittests_unrepairabl  <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/vector2.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/unittests/version.lua			    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/util_commands/init.lua		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/mods/util_commands/mod.conf		    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/screenshot.png				    <	
%%DEVTEST%%%%DATADIR%%/games/devtest/settingtypes.txt				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/air.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/aux1_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/blank.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/bubble.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/bubble_gone.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/button_hover_semitrans.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/button_press_semitrans.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/camera_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_downloading.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_queued.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_update.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/cdb_update_cropped.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_hide_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/chat_show_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_16.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_32.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/checkbox_64.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/clear.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_neutral.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_thumb_down.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/contentdb_thumb_up.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/crack_anylength.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/debug_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/dig_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/down.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/drop_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/end_icon.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/error_icon_orange.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/error_icon_red.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/error_screenshot.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/exit_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/fast_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/fly_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/halo.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/heart.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/heart_gone.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/ignore.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/inventory_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_bg.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_center.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/joystick_off.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/jump_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/loading_screenshot.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/logo.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/menu_header.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_mask_round.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_mask_square.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_overlay_round.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/minimap_overlay_square.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/next_icon.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/no_screenshot.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/no_texture.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/no_texture_airlike.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/noclip_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/object_marker_red.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/overflow_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/place_btn.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/player.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/player_back.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/player_marker.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/plus.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/prev_icon.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/progress_bar.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/progress_bar_bg.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/rangeview_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/refresh.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/search.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_favorite.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_favorite_delete.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_creative.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_damage.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_flags_pvp.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_incompatible.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_1.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_2.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_3.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_ping_4.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_public.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_url.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_url_unavailable.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_clients.png		    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_clients_unavailable.png	    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_mods.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/server_view_mods_unavailable.png	    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_btn.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_info.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/settings_reset.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/smoke_puff.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/start_icon.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/sunrisebg.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_item.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_node.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/unknown_object.png			    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/wieldhand.png				    <	
%%CLIENT%%%%DATADIR%%/textures/base/pack/zoom.png				    <	
%%CLIENT%%share/man/man6/luanti.6.gz						    <	
%%SERVER%%share/man/man6/luantiserver.6.gz					    <	
share/metainfo/org.luanti.luanti.metainfo.xml						share/metainfo/org.luanti.luanti.metainfo.xml

This is the plist-fix script written for fvwm3-dev.  You may notice that it is a little more complex due to how fvwm files are named with some version numbers that this script handles by accepting any such path name but outputs the same version number for its line in the pkg-plist file.

#!/bin/sh
rm /var/tmp/fvwm3-dev_pkg-plist 2>/dev/null
rm /var/tmp/fvwm3-dev_pkg-plist-fixed 2>/dev/null
cp ../pkg-plist /var/tmp/fvwm3-dev_pkg-plist

echo "adding conditional list tags"

cat /var/tmp/fvwm3-dev_pkg-plist | \
sed '/^@dir/d' | \
sed '/^\/you/d' | \
sed \
-e '/^$/d' \
-e 's#^bin\/FvwmPrompt#\%\%GOLANG\%\%\bin\/FvwmPrompt#g' \
-e 's#^libexec\/fvwm3\/\([0-9]\.[0-9]\.[0-9])*\)\/FvwmCommandS#\%\%GOLANG\%\%\libexec\/fvwm3\/\1\/FvwmCommandS \
\%\%NO_GOLANG\%\%\libexec\/fvwm3\/\1\/FvwmConsoleC\n\%\%NO_GOLANG\%\%\libexec\/fvwm3\/\1\/FvwmConsole#g' \
-e 's#\%\%MANPAGES\%\%share\/man\/man1\/FvwmConsole#\%\%GOLANG\%\%\%\%MANPAGES\%\%share\/man\/man1\/FvwmConsole#g' \
-e 's#^share\/man\/man1#\%\%MANPAGES\%\%share\/man\/man1#g' \
-e 's#^\%\%DATADIR\%\%/locale#\%\%NLS\%\%\%\%DATADIR\%\%/locale#g' \
-e 's#^share\/locale#\%\%NLS\%\%\%\%DATADIR\%\%/locale#g' \
> /var/tmp/fvwm-dev_pkg-plist-fixed
cp /var/tmp/fvwm-dev_pkg-plist-fixed ../pkg-plist

The diff of the autogenerated pkg-plist and the revised one from the script.  My uofficial port is bleeding edge since I update per upstream commit, so there are likely differences due to that.  I do not change the output of the generated pkg-plist file but simply revise each line as needed.

/you/have/to/check/what/makeplist/gives/you					    <	
bin/FvwmCommand										bin/FvwmCommand
bin/FvwmPrompt									    |	%%GOLANG%%bin/FvwmPrompt
bin/fvwm-convert-2.6									bin/fvwm-convert-2.6
bin/fvwm-menu-desktop									bin/fvwm-menu-desktop
bin/fvwm-menu-directory									bin/fvwm-menu-directory
bin/fvwm-menu-xlock									bin/fvwm-menu-xlock
bin/fvwm-perllib									bin/fvwm-perllib
bin/fvwm-root										bin/fvwm-root
bin/fvwm3										bin/fvwm3
libexec/fvwm3/1.1.5/FvwmAnimate								libexec/fvwm3/1.1.5/FvwmAnimate
libexec/fvwm3/1.1.5/FvwmAuto								libexec/fvwm3/1.1.5/FvwmAuto
libexec/fvwm3/1.1.5/FvwmBacker								libexec/fvwm3/1.1.5/FvwmBacker
libexec/fvwm3/1.1.5/FvwmButtons								libexec/fvwm3/1.1.5/FvwmButtons
libexec/fvwm3/1.1.5/FvwmEvent								libexec/fvwm3/1.1.5/FvwmEvent
libexec/fvwm3/1.1.5/FvwmForm								libexec/fvwm3/1.1.5/FvwmForm
libexec/fvwm3/1.1.5/FvwmIconMan								libexec/fvwm3/1.1.5/FvwmIconMan
libexec/fvwm3/1.1.5/FvwmIdent								libexec/fvwm3/1.1.5/FvwmIdent
libexec/fvwm3/1.1.5/FvwmMFL								libexec/fvwm3/1.1.5/FvwmMFL
libexec/fvwm3/1.1.5/FvwmPager								libexec/fvwm3/1.1.5/FvwmPager
libexec/fvwm3/1.1.5/FvwmPerl								libexec/fvwm3/1.1.5/FvwmPerl
libexec/fvwm3/1.1.5/FvwmRearrange							libexec/fvwm3/1.1.5/FvwmRearrange
libexec/fvwm3/1.1.5/FvwmScript								libexec/fvwm3/1.1.5/FvwmScript
libexec/fvwm3/1.1.5/FvwmTalk								libexec/fvwm3/1.1.5/FvwmTalk
%%DATADIR%%/ConfigFvwmBacker								%%DATADIR%%/ConfigFvwmBacker
%%DATADIR%%/ConfigFvwmButtons								%%DATADIR%%/ConfigFvwmButtons
%%DATADIR%%/ConfigFvwmDefaults								%%DATADIR%%/ConfigFvwmDefaults
%%DATADIR%%/ConfigFvwmIconMan								%%DATADIR%%/ConfigFvwmIconMan
%%DATADIR%%/ConfigFvwmIdent								%%DATADIR%%/ConfigFvwmIdent
%%DATADIR%%/ConfigFvwmPager								%%DATADIR%%/ConfigFvwmPager
%%DATADIR%%/FvwmForm-Capture								%%DATADIR%%/FvwmForm-Capture
%%DATADIR%%/FvwmForm-Desktop								%%DATADIR%%/FvwmForm-Desktop
%%DATADIR%%/FvwmForm-Form								%%DATADIR%%/FvwmForm-Form
%%DATADIR%%/FvwmForm-QuitVerify								%%DATADIR%%/FvwmForm-QuitVerify
%%DATADIR%%/FvwmForm-Rlogin								%%DATADIR%%/FvwmForm-Rlogin
%%DATADIR%%/FvwmForm-RootCursor								%%DATADIR%%/FvwmForm-RootCursor
%%DATADIR%%/FvwmForm-Talk								%%DATADIR%%/FvwmForm-Talk
%%DATADIR%%/FvwmForm-TalkHelp								%%DATADIR%%/FvwmForm-TalkHelp
%%DATADIR%%/FvwmForm-XDGMenuHelp							%%DATADIR%%/FvwmForm-XDGMenuHelp
%%DATADIR%%/FvwmForm-XDGOptionsHelp							%%DATADIR%%/FvwmForm-XDGOptionsHelp
%%DATADIR%%/FvwmScript-BaseConfig							%%DATADIR%%/FvwmScript-BaseConfig
%%DATADIR%%/FvwmScript-BellSetup							%%DATADIR%%/FvwmScript-BellSetup
%%DATADIR%%/FvwmScript-Buttons								%%DATADIR%%/FvwmScript-Buttons
%%DATADIR%%/FvwmScript-Colorset								%%DATADIR%%/FvwmScript-Colorset
%%DATADIR%%/FvwmScript-ComExample							%%DATADIR%%/FvwmScript-ComExample
%%DATADIR%%/FvwmScript-ConfirmCopyConfig						%%DATADIR%%/FvwmScript-ConfirmCopyConfig
%%DATADIR%%/FvwmScript-ConfirmQuit							%%DATADIR%%/FvwmScript-ConfirmQuit
%%DATADIR%%/FvwmScript-Date								%%DATADIR%%/FvwmScript-Date
%%DATADIR%%/FvwmScript-DateTime								%%DATADIR%%/FvwmScript-DateTime
%%DATADIR%%/FvwmScript-FileBrowser							%%DATADIR%%/FvwmScript-FileBrowser
%%DATADIR%%/FvwmScript-Find								%%DATADIR%%/FvwmScript-Find
%%DATADIR%%/FvwmScript-KeyboardSetup							%%DATADIR%%/FvwmScript-KeyboardSetup
%%DATADIR%%/FvwmScript-PointerSetup							%%DATADIR%%/FvwmScript-PointerSetup
%%DATADIR%%/FvwmScript-Quit								%%DATADIR%%/FvwmScript-Quit
%%DATADIR%%/FvwmScript-ScreenDump							%%DATADIR%%/FvwmScript-ScreenDump
%%DATADIR%%/FvwmScript-ScreenSetup							%%DATADIR%%/FvwmScript-ScreenSetup
%%DATADIR%%/FvwmScript-WidgetDemo							%%DATADIR%%/FvwmScript-WidgetDemo
%%DATADIR%%/default-config/FvwmScript-ConfirmCopyConfig					%%DATADIR%%/default-config/FvwmScript-ConfirmCopyConfig
%%DATADIR%%/default-config/FvwmScript-ConfirmQuit					%%DATADIR%%/default-config/FvwmScript-ConfirmQuit
%%DATADIR%%/default-config/FvwmScript-DateTime						%%DATADIR%%/default-config/FvwmScript-DateTime
%%DATADIR%%/default-config/config							%%DATADIR%%/default-config/config
%%DATADIR%%/default-config/images/background/bg1.png					%%DATADIR%%/default-config/images/background/bg1.png
%%DATADIR%%/default-config/images/background/bg2.png					%%DATADIR%%/default-config/images/background/bg2.png
%%DATADIR%%/default-config/images/background/bg3.png					%%DATADIR%%/default-config/images/background/bg3.png
%%DATADIR%%/default-config/images/bgicons/bg1.png					%%DATADIR%%/default-config/images/bgicons/bg1.png
%%DATADIR%%/default-config/images/bgicons/bg2.png					%%DATADIR%%/default-config/images/bgicons/bg2.png
%%DATADIR%%/default-config/images/bgicons/bg3.png					%%DATADIR%%/default-config/images/bgicons/bg3.png
%%DATADIR%%/default-config/images/fvwm-logo-small.png					%%DATADIR%%/default-config/images/fvwm-logo-small.png
%%DATADIR%%/default-config/images/icons/apps.png					%%DATADIR%%/default-config/images/icons/apps.png
%%DATADIR%%/default-config/images/icons/conf.png					%%DATADIR%%/default-config/images/icons/conf.png
%%DATADIR%%/default-config/images/icons/help.png					%%DATADIR%%/default-config/images/icons/help.png
%%DATADIR%%/default-config/images/icons/info.png					%%DATADIR%%/default-config/images/icons/info.png
%%DATADIR%%/default-config/images/icons/programs.png					%%DATADIR%%/default-config/images/icons/programs.png
%%DATADIR%%/default-config/images/icons/quit.png					%%DATADIR%%/default-config/images/icons/quit.png
%%DATADIR%%/default-config/images/icons/refresh.png					%%DATADIR%%/default-config/images/icons/refresh.png
%%DATADIR%%/default-config/images/icons/restart.png					%%DATADIR%%/default-config/images/icons/restart.png
%%DATADIR%%/default-config/images/icons/run_arrow.png					%%DATADIR%%/default-config/images/icons/run_arrow.png
%%DATADIR%%/default-config/images/icons/terminal.png					%%DATADIR%%/default-config/images/icons/terminal.png
%%DATADIR%%/default-config/images/icons/wallpaper.png					%%DATADIR%%/default-config/images/icons/wallpaper.png
%%DATADIR%%/default-config/images/icons/win/bottom.png					%%DATADIR%%/default-config/images/icons/win/bottom.png
%%DATADIR%%/default-config/images/icons/win/close.png					%%DATADIR%%/default-config/images/icons/win/close.png
%%DATADIR%%/default-config/images/icons/win/destroy.png					%%DATADIR%%/default-config/images/icons/win/destroy.png
%%DATADIR%%/default-config/images/icons/win/done.png					%%DATADIR%%/default-config/images/icons/win/done.png
%%DATADIR%%/default-config/images/icons/win/iconify.png					%%DATADIR%%/default-config/images/icons/win/iconify.png
%%DATADIR%%/default-config/images/icons/win/lower.png					%%DATADIR%%/default-config/images/icons/win/lower.png
%%DATADIR%%/default-config/images/icons/win/max.png					%%DATADIR%%/default-config/images/icons/win/max.png
%%DATADIR%%/default-config/images/icons/win/move.png					%%DATADIR%%/default-config/images/icons/win/move.png
%%DATADIR%%/default-config/images/icons/win/raise.png					%%DATADIR%%/default-config/images/icons/win/raise.png
%%DATADIR%%/default-config/images/icons/win/resize.png					%%DATADIR%%/default-config/images/icons/win/resize.png
%%DATADIR%%/default-config/images/icons/win/sendto.png					%%DATADIR%%/default-config/images/icons/win/sendto.png
%%DATADIR%%/default-config/images/icons/win/shade.png					%%DATADIR%%/default-config/images/icons/win/shade.png
%%DATADIR%%/default-config/images/icons/win/stays.png					%%DATADIR%%/default-config/images/icons/win/stays.png
%%DATADIR%%/default-config/images/icons/win/sticky.png					%%DATADIR%%/default-config/images/icons/win/sticky.png
%%DATADIR%%/default-config/images/icons/win/title.png					%%DATADIR%%/default-config/images/icons/win/title.png
%%DATADIR%%/default-config/images/icons/win/top.png					%%DATADIR%%/default-config/images/icons/win/top.png
%%DATADIR%%/default-config/stalonetrayrc						%%DATADIR%%/default-config/stalonetrayrc
%%DATADIR%%/fvwm-menu-desktop-config.fpl						%%DATADIR%%/fvwm-menu-desktop-config.fpl
%%DATADIR%%/fvwm-script-ComExample.pl							%%DATADIR%%/fvwm-script-ComExample.pl
%%DATADIR%%/locale/ar/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/ar/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/da/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/da/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/de/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/de/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/es/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/es/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/fr/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/fr/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/ka/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/ka/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/ru/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/ru/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/sv_SE/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/sv_SE/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/uk/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/uk/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/zh_CN/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/zh_CN/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/locale/zh_TW/LC_MESSAGES/fvwm3.mo					    |	%%NLS%%%%DATADIR%%/locale/zh_TW/LC_MESSAGES/fvwm3.mo
%%DATADIR%%/perllib/FVWM/Commands.pm							%%DATADIR%%/perllib/FVWM/Commands.pm
%%DATADIR%%/perllib/FVWM/Constants.pm							%%DATADIR%%/perllib/FVWM/Constants.pm
%%DATADIR%%/perllib/FVWM/Event.pm							%%DATADIR%%/perllib/FVWM/Event.pm
%%DATADIR%%/perllib/FVWM/EventNames.pm							%%DATADIR%%/perllib/FVWM/EventNames.pm
%%DATADIR%%/perllib/FVWM/Module.pm							%%DATADIR%%/perllib/FVWM/Module.pm
%%DATADIR%%/perllib/FVWM/Module/Terminal.pm						%%DATADIR%%/perllib/FVWM/Module/Terminal.pm
%%DATADIR%%/perllib/FVWM/Module/Toolkit.pm						%%DATADIR%%/perllib/FVWM/Module/Toolkit.pm
%%DATADIR%%/perllib/FVWM/Tracker.pm							%%DATADIR%%/perllib/FVWM/Tracker.pm
%%DATADIR%%/perllib/FVWM/Tracker/Colorsets.pm						%%DATADIR%%/perllib/FVWM/Tracker/Colorsets.pm
%%DATADIR%%/perllib/FVWM/Tracker/GlobalConfig.pm					%%DATADIR%%/perllib/FVWM/Tracker/GlobalConfig.pm
%%DATADIR%%/perllib/FVWM/Tracker/ModuleConfig.pm					%%DATADIR%%/perllib/FVWM/Tracker/ModuleConfig.pm
%%DATADIR%%/perllib/FVWM/Tracker/PageInfo.pm						%%DATADIR%%/perllib/FVWM/Tracker/PageInfo.pm
%%DATADIR%%/perllib/FVWM/Tracker/Scheduler.pm						%%DATADIR%%/perllib/FVWM/Tracker/Scheduler.pm
%%DATADIR%%/perllib/FVWM/Tracker/WindowList.pm						%%DATADIR%%/perllib/FVWM/Tracker/WindowList.pm
%%DATADIR%%/perllib/General/FileSystem.pm						%%DATADIR%%/perllib/General/FileSystem.pm
%%DATADIR%%/perllib/General/Parse.pm							%%DATADIR%%/perllib/General/Parse.pm
share/man/man1/FvwmAnimate.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmAnimate.1.gz
share/man/man1/FvwmAuto.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmAuto.1.gz
share/man/man1/FvwmBacker.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmBacker.1.gz
share/man/man1/FvwmButtons.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmButtons.1.gz
share/man/man1/FvwmCommand.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmCommand.1.gz
share/man/man1/FvwmEvent.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmEvent.1.gz
share/man/man1/FvwmForm.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmForm.1.gz
share/man/man1/FvwmIconMan.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmIconMan.1.gz
share/man/man1/FvwmIdent.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmIdent.1.gz
share/man/man1/FvwmMFL.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmMFL.1.gz
share/man/man1/FvwmPager.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmPager.1.gz
share/man/man1/FvwmPerl.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmPerl.1.gz
share/man/man1/FvwmRearrange.1.gz						    |	%%MANPAGES%%share/man/man1/FvwmRearrange.1.gz
share/man/man1/FvwmScript.1.gz							    |	%%MANPAGES%%share/man/man1/FvwmScript.1.gz
share/man/man1/fvwm-convert-2.6.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm-convert-2.6.1.gz
share/man/man1/fvwm-menu-desktop.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm-menu-desktop.1.gz
share/man/man1/fvwm-menu-directory.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm-menu-directory.1.gz
share/man/man1/fvwm-menu-xlock.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm-menu-xlock.1.gz
share/man/man1/fvwm-perllib.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm-perllib.1.gz
share/man/man1/fvwm-root.1.gz							    |	%%MANPAGES%%share/man/man1/fvwm-root.1.gz
share/man/man1/fvwm3.1.gz							    |	%%MANPAGES%%share/man/man1/fvwm3.1.gz
share/man/man1/fvwm3all.1.gz							    |	%%MANPAGES%%share/man/man1/fvwm3all.1.gz
share/man/man1/fvwm3commands.1.gz						    |	%%MANPAGES%%share/man/man1/fvwm3commands.1.gz
share/man/man1/fvwm3menus.1.gz							    |	%%MANPAGES%%share/man/man1/fvwm3menus.1.gz
share/man/man1/fvwm3styles.1.gz							    |	%%MANPAGES%%share/man/man1/fvwm3styles.1.gz
share/xsessions/fvwm3.desktop								share/xsessions/fvwm3.desktop
@dir %%DATADIR%%/locale/af/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/am/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/az/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/be/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/bg/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/bn/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/br/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/bs/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ca/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/cs/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/cy/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/de_AT/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/dk/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ee/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/el/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/en/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/en_AU/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/en_CA/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/en_GB/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/eo/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/es_ES/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/es_MX/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/et/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/eu/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/fa/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/fa_IR/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/fi/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/fr_FR/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/ga/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/gl/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/gu/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/he/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/hi/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/hr/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/hu/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/id/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/is/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/it/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ja/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/kn/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ko/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/li/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/lt/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/lv/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/mk/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ml/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/mn/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ms/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/mt/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/nb/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ne/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/nl/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/nn/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/no/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/or/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/pa/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/pl/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/pt/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/pt_BR/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/pt_PT/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/ro/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/sk/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/sl/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/sq/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/sr/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/sr@Latn/LC_MESSAGES					    <	
@dir %%DATADIR%%/locale/sv/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/ta/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/tg/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/th/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/tk/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/tr/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/uz/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/vi/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/wa/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/zh/LC_MESSAGES						    <	
@dir %%DATADIR%%/locale/zh_CN.GB2312/LC_MESSAGES				    <	
@dir %%DATADIR%%/locale/zh_TW.Big5/LC_MESSAGES					    <	
Once more, here is a comparison between the pkg-plist for my unofficial port and the official fvwm3 port (right side).
bin/FvwmCommand										bin/FvwmCommand
%%GOLANG%%bin/FvwmPrompt							    |	%%GO%%bin/FvwmPrompt
bin/fvwm-convert-2.6									bin/fvwm-convert-2.6
bin/fvwm-menu-desktop									bin/fvwm-menu-desktop
bin/fvwm-menu-directory									bin/fvwm-menu-directory
bin/fvwm-menu-xlock									bin/fvwm-menu-xlock
bin/fvwm-perllib									bin/fvwm-perllib
bin/fvwm-root										bin/fvwm-root
bin/fvwm3										bin/fvwm3
libexec/fvwm3/1.1.5/FvwmAnimate							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmAnimate
libexec/fvwm3/1.1.5/FvwmAuto							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmAuto
libexec/fvwm3/1.1.5/FvwmBacker							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmBacker
libexec/fvwm3/1.1.5/FvwmButtons							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmButtons
libexec/fvwm3/1.1.5/FvwmEvent							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmCommandS
libexec/fvwm3/1.1.5/FvwmForm							    |	%%NO_GO%%libexec/fvwm3/%%DISTVERSION%%/FvwmConsole
libexec/fvwm3/1.1.5/FvwmIconMan							    |	%%NO_GO%%libexec/fvwm3/%%DISTVERSION%%/FvwmConsoleC
libexec/fvwm3/1.1.5/FvwmIdent							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmEvent
libexec/fvwm3/1.1.5/FvwmMFL							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmForm
libexec/fvwm3/1.1.5/FvwmPager							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmIconMan
libexec/fvwm3/1.1.5/FvwmPerl							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmIdent
libexec/fvwm3/1.1.5/FvwmRearrange						    |	libexec/fvwm3/%%DISTVERSION%%/FvwmMFL
libexec/fvwm3/1.1.5/FvwmScript							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmPager
libexec/fvwm3/1.1.5/FvwmTalk							    |	libexec/fvwm3/%%DISTVERSION%%/FvwmPerl
										    >	libexec/fvwm3/%%DISTVERSION%%/FvwmRearrange
										    >	libexec/fvwm3/%%DISTVERSION%%/FvwmScript
										    >	libexec/fvwm3/%%DISTVERSION%%/FvwmTalk
%%DATADIR%%/ConfigFvwmBacker								%%DATADIR%%/ConfigFvwmBacker
%%DATADIR%%/ConfigFvwmButtons								%%DATADIR%%/ConfigFvwmButtons
%%DATADIR%%/ConfigFvwmDefaults								%%DATADIR%%/ConfigFvwmDefaults
%%DATADIR%%/ConfigFvwmIconMan								%%DATADIR%%/ConfigFvwmIconMan
%%DATADIR%%/ConfigFvwmIdent								%%DATADIR%%/ConfigFvwmIdent
%%DATADIR%%/ConfigFvwmPager								%%DATADIR%%/ConfigFvwmPager
%%DATADIR%%/FvwmForm-Capture								%%DATADIR%%/FvwmForm-Capture
%%DATADIR%%/FvwmForm-Desktop								%%DATADIR%%/FvwmForm-Desktop
%%DATADIR%%/FvwmForm-Form								%%DATADIR%%/FvwmForm-Form
%%DATADIR%%/FvwmForm-QuitVerify								%%DATADIR%%/FvwmForm-QuitVerify
%%DATADIR%%/FvwmForm-Rlogin								%%DATADIR%%/FvwmForm-Rlogin
%%DATADIR%%/FvwmForm-RootCursor								%%DATADIR%%/FvwmForm-RootCursor
%%DATADIR%%/FvwmForm-Talk								%%DATADIR%%/FvwmForm-Talk
%%DATADIR%%/FvwmForm-TalkHelp								%%DATADIR%%/FvwmForm-TalkHelp
%%DATADIR%%/FvwmForm-XDGMenuHelp							%%DATADIR%%/FvwmForm-XDGMenuHelp
%%DATADIR%%/FvwmForm-XDGOptionsHelp							%%DATADIR%%/FvwmForm-XDGOptionsHelp
%%DATADIR%%/FvwmScript-BaseConfig							%%DATADIR%%/FvwmScript-BaseConfig
%%DATADIR%%/FvwmScript-BellSetup							%%DATADIR%%/FvwmScript-BellSetup
%%DATADIR%%/FvwmScript-Buttons								%%DATADIR%%/FvwmScript-Buttons
%%DATADIR%%/FvwmScript-Colorset								%%DATADIR%%/FvwmScript-Colorset
%%DATADIR%%/FvwmScript-ComExample							%%DATADIR%%/FvwmScript-ComExample
%%DATADIR%%/FvwmScript-ConfirmCopyConfig						%%DATADIR%%/FvwmScript-ConfirmCopyConfig
%%DATADIR%%/FvwmScript-ConfirmQuit							%%DATADIR%%/FvwmScript-ConfirmQuit
%%DATADIR%%/FvwmScript-Date								%%DATADIR%%/FvwmScript-Date
%%DATADIR%%/FvwmScript-DateTime								%%DATADIR%%/FvwmScript-DateTime
%%DATADIR%%/FvwmScript-FileBrowser							%%DATADIR%%/FvwmScript-FileBrowser
%%DATADIR%%/FvwmScript-Find								%%DATADIR%%/FvwmScript-Find
%%DATADIR%%/FvwmScript-KeyboardSetup							%%DATADIR%%/FvwmScript-KeyboardSetup
%%DATADIR%%/FvwmScript-PointerSetup							%%DATADIR%%/FvwmScript-PointerSetup
%%DATADIR%%/FvwmScript-Quit								%%DATADIR%%/FvwmScript-Quit
%%DATADIR%%/FvwmScript-ScreenDump							%%DATADIR%%/FvwmScript-ScreenDump
%%DATADIR%%/FvwmScript-ScreenSetup							%%DATADIR%%/FvwmScript-ScreenSetup
%%DATADIR%%/FvwmScript-WidgetDemo							%%DATADIR%%/FvwmScript-WidgetDemo
%%DATADIR%%/default-config/FvwmScript-ConfirmCopyConfig					%%DATADIR%%/default-config/FvwmScript-ConfirmCopyConfig
%%DATADIR%%/default-config/FvwmScript-ConfirmQuit					%%DATADIR%%/default-config/FvwmScript-ConfirmQuit
%%DATADIR%%/default-config/FvwmScript-DateTime						%%DATADIR%%/default-config/FvwmScript-DateTime
%%DATADIR%%/default-config/config							%%DATADIR%%/default-config/config
%%DATADIR%%/default-config/images/background/bg1.png					%%DATADIR%%/default-config/images/background/bg1.png
%%DATADIR%%/default-config/images/background/bg2.png					%%DATADIR%%/default-config/images/background/bg2.png
%%DATADIR%%/default-config/images/background/bg3.png					%%DATADIR%%/default-config/images/background/bg3.png
%%DATADIR%%/default-config/images/bgicons/bg1.png					%%DATADIR%%/default-config/images/bgicons/bg1.png
%%DATADIR%%/default-config/images/bgicons/bg2.png					%%DATADIR%%/default-config/images/bgicons/bg2.png
%%DATADIR%%/default-config/images/bgicons/bg3.png					%%DATADIR%%/default-config/images/bgicons/bg3.png
%%DATADIR%%/default-config/images/fvwm-logo-small.png					%%DATADIR%%/default-config/images/fvwm-logo-small.png
%%DATADIR%%/default-config/images/icons/apps.png					%%DATADIR%%/default-config/images/icons/apps.png
%%DATADIR%%/default-config/images/icons/conf.png					%%DATADIR%%/default-config/images/icons/conf.png
%%DATADIR%%/default-config/images/icons/help.png					%%DATADIR%%/default-config/images/icons/help.png
%%DATADIR%%/default-config/images/icons/info.png					%%DATADIR%%/default-config/images/icons/info.png
%%DATADIR%%/default-config/images/icons/programs.png					%%DATADIR%%/default-config/images/icons/programs.png
%%DATADIR%%/default-config/images/icons/quit.png					%%DATADIR%%/default-config/images/icons/quit.png
%%DATADIR%%/default-config/images/icons/refresh.png					%%DATADIR%%/default-config/images/icons/refresh.png
%%DATADIR%%/default-config/images/icons/restart.png					%%DATADIR%%/default-config/images/icons/restart.png
%%DATADIR%%/default-config/images/icons/run_arrow.png					%%DATADIR%%/default-config/images/icons/run_arrow.png
%%DATADIR%%/default-config/images/icons/terminal.png					%%DATADIR%%/default-config/images/icons/terminal.png
%%DATADIR%%/default-config/images/icons/wallpaper.png					%%DATADIR%%/default-config/images/icons/wallpaper.png
%%DATADIR%%/default-config/images/icons/win/bottom.png					%%DATADIR%%/default-config/images/icons/win/bottom.png
%%DATADIR%%/default-config/images/icons/win/close.png					%%DATADIR%%/default-config/images/icons/win/close.png
%%DATADIR%%/default-config/images/icons/win/destroy.png					%%DATADIR%%/default-config/images/icons/win/destroy.png
%%DATADIR%%/default-config/images/icons/win/done.png					%%DATADIR%%/default-config/images/icons/win/done.png
%%DATADIR%%/default-config/images/icons/win/iconify.png					%%DATADIR%%/default-config/images/icons/win/iconify.png
%%DATADIR%%/default-config/images/icons/win/lower.png					%%DATADIR%%/default-config/images/icons/win/lower.png
%%DATADIR%%/default-config/images/icons/win/max.png					%%DATADIR%%/default-config/images/icons/win/max.png
%%DATADIR%%/default-config/images/icons/win/move.png					%%DATADIR%%/default-config/images/icons/win/move.png
%%DATADIR%%/default-config/images/icons/win/raise.png					%%DATADIR%%/default-config/images/icons/win/raise.png
%%DATADIR%%/default-config/images/icons/win/resize.png					%%DATADIR%%/default-config/images/icons/win/resize.png
%%DATADIR%%/default-config/images/icons/win/sendto.png					%%DATADIR%%/default-config/images/icons/win/sendto.png
%%DATADIR%%/default-config/images/icons/win/shade.png					%%DATADIR%%/default-config/images/icons/win/shade.png
%%DATADIR%%/default-config/images/icons/win/stays.png					%%DATADIR%%/default-config/images/icons/win/stays.png
%%DATADIR%%/default-config/images/icons/win/sticky.png					%%DATADIR%%/default-config/images/icons/win/sticky.png
%%DATADIR%%/default-config/images/icons/win/title.png					%%DATADIR%%/default-config/images/icons/win/title.png
%%DATADIR%%/default-config/images/icons/win/top.png					%%DATADIR%%/default-config/images/icons/win/top.png
%%DATADIR%%/default-config/stalonetrayrc						%%DATADIR%%/default-config/stalonetrayrc
%%DATADIR%%/fvwm-menu-desktop-config.fpl						%%DATADIR%%/fvwm-menu-desktop-config.fpl
%%DATADIR%%/fvwm-script-ComExample.pl							%%DATADIR%%/fvwm-script-ComExample.pl
%%NLS%%%%DATADIR%%/locale/ar/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/da/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/de/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/es/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/fr/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/ka/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/ru/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/sv_SE/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/uk/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/zh_CN/LC_MESSAGES/fvwm3.mo				    <	
%%NLS%%%%DATADIR%%/locale/zh_TW/LC_MESSAGES/fvwm3.mo				    <	
%%DATADIR%%/perllib/FVWM/Commands.pm							%%DATADIR%%/perllib/FVWM/Commands.pm
%%DATADIR%%/perllib/FVWM/Constants.pm							%%DATADIR%%/perllib/FVWM/Constants.pm
%%DATADIR%%/perllib/FVWM/Event.pm							%%DATADIR%%/perllib/FVWM/Event.pm
%%DATADIR%%/perllib/FVWM/EventNames.pm							%%DATADIR%%/perllib/FVWM/EventNames.pm
%%DATADIR%%/perllib/FVWM/Module.pm							%%DATADIR%%/perllib/FVWM/Module.pm
%%DATADIR%%/perllib/FVWM/Module/Terminal.pm						%%DATADIR%%/perllib/FVWM/Module/Terminal.pm
%%DATADIR%%/perllib/FVWM/Module/Toolkit.pm						%%DATADIR%%/perllib/FVWM/Module/Toolkit.pm
%%DATADIR%%/perllib/FVWM/Tracker.pm							%%DATADIR%%/perllib/FVWM/Tracker.pm
%%DATADIR%%/perllib/FVWM/Tracker/Colorsets.pm						%%DATADIR%%/perllib/FVWM/Tracker/Colorsets.pm
%%DATADIR%%/perllib/FVWM/Tracker/GlobalConfig.pm					%%DATADIR%%/perllib/FVWM/Tracker/GlobalConfig.pm
%%DATADIR%%/perllib/FVWM/Tracker/ModuleConfig.pm					%%DATADIR%%/perllib/FVWM/Tracker/ModuleConfig.pm
%%DATADIR%%/perllib/FVWM/Tracker/PageInfo.pm						%%DATADIR%%/perllib/FVWM/Tracker/PageInfo.pm
%%DATADIR%%/perllib/FVWM/Tracker/Scheduler.pm						%%DATADIR%%/perllib/FVWM/Tracker/Scheduler.pm
%%DATADIR%%/perllib/FVWM/Tracker/WindowList.pm						%%DATADIR%%/perllib/FVWM/Tracker/WindowList.pm
%%DATADIR%%/perllib/General/FileSystem.pm						%%DATADIR%%/perllib/General/FileSystem.pm
%%DATADIR%%/perllib/General/Parse.pm							%%DATADIR%%/perllib/General/Parse.pm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Jlock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Jnews.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Jrecycle.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Jxlock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Monitor.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Mosaic.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/Xfm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/arrdown2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/arrows2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/arrup2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_blue_cursive.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_bracket.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_cat_thing.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_red_3D.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_red_cursive.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_tiger.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/banner.fvwm_tiger_tail.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/bckgnd1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/bckgnd3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/bell.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/bomb.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/button-close.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/button-horiz.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/button-max.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/button-vert.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/button.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/clamp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/date.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/datebook.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/default.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/desk.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/desktop.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/dialog_box.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/display.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/documents.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/doomface.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/editres.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/eps.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/exit.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/find1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/flow_chart.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/folder.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/folder2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/folders.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/fvwm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/fvwm2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/fvwm2_big.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/fvwm3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/gimp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/gnu-animal.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/graphs.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/gv.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/help.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/jx.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/keyboard.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/lemacs.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mag_glass.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mail1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mail2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/map.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/math4.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/menu.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.arch.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.audiovol.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.audiovol2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ball.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ball2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bball.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.blah.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bomb.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bomb2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.book1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.book2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.book3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.book4.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.books.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.briefcase.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bug1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bug2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.bx2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.calc.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.calc2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.calendar.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.camera.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cat.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cave.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cd.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cdlabel.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.chart.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.checkmark.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.chinese.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.clipboard.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.clock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.clock2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.colors.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.connect.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.crosbone.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cross.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.cut.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.delete.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.desktop.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.destroy.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.diff.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.directory.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.dirlink.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.diskette.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.display.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.doc.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.doc1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.dog.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ear.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.edit.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.espada.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.excl.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.exclam.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.exit.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.exp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.eye.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.eye2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.eyes.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.f1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.fax.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.fdisk.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.file.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.filelink.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.filemgr.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.floppy.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.folder.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.font.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.fractal.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.frame.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ftp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.fvwm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gball.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gimp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gnome.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gnu.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.go.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gopher.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.graph.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.graph2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.gv.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.hammer.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.happy.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.hdisk.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.heart.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.hex.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.hextris.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ibm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.iconify.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.iconify1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.icons.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.kde.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.keyboard.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.keys.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.letter.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.line.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.lock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.lower.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.lower2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.lower3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.mag.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.mail.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.mail2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.manual.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.max1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize-horiz.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize-horiz1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize-vert.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize-vert1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maximize2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.maze.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.modules.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.monitor.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.mouse.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.move.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.move1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.move2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.move3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.mwm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.netscape.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.news.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.nscape.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ofolder.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.olwm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.pager.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.paint.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.paint2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.palette.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.paper.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.pdf.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.pencil.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.penguin.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.perf.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.picture.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.question.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.rainbow.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.raise.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.raise2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.raise3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.ray.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.rball.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.refresh.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.resize.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.resize2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.resize3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.resize4.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.roach.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.run.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.sh.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.sh1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.shade1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.slon.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.sound.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.start.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.stick.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.stick1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.stick2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.stickpressed.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.stop.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.telnet.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.term.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.term2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.tetris.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.trebol.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.turn.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.twm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.winXX-close.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.winXX-maximize.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.winXX-minimize.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.winXX-normalize.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.winXX-sysmenu.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.window.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.window2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.windows.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.windowshade.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.x.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.x2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xaniroc.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xarchie.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xbiff.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xboing.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xfig.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xjewel.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xkeycaps.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xlander.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xlock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xmag.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xmahjongg.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xman.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xpaint.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xsnow.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xterm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.xv.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.zircon.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/mini.zoom.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/modules.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/nscape.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/page.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/page2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/pointer.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/programs.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/ps.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/question.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rbomb.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rbomb2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rcalc.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rcalc2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/resize.rainbow.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rterm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/rterm2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/run.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/screen.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/settings.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/shells.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/shutdown.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/shutdown2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/side.fvwm2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/side.fvwm2_1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/side.fvwm2_2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/side.utilities.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.Paint2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.Shell2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.exit.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.lock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.man.next.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.note.next.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/small.tools2_3d.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/term.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/textedit.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/tiff2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/toolbox.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/unknown1.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/wierd_page3.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/window.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/word_processor.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/wterm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xcalc.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xemacs.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xlock.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xman.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xpaint.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-axp.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-blank.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-bsd.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-dec.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-linux.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-sgi.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-sol.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm-sun.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xterm.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xv.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xv2.xpm
										    >	%%ICONS%%%%DATADIR%%/pixmaps/xview.xpm
										    >	%%NLS%%share/locale/ar/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/da/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/de/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/es/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/fr/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/ru/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/sv_SE/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/uk/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/zh_CN/LC_MESSAGES/fvwm3.mo
										    >	%%NLS%%share/locale/zh_TW/LC_MESSAGES/fvwm3.mo
%%MANPAGES%%share/man/man1/FvwmAnimate.1.gz						%%MANPAGES%%share/man/man1/FvwmAnimate.1.gz
%%MANPAGES%%share/man/man1/FvwmAuto.1.gz						%%MANPAGES%%share/man/man1/FvwmAuto.1.gz
%%MANPAGES%%share/man/man1/FvwmBacker.1.gz						%%MANPAGES%%share/man/man1/FvwmBacker.1.gz
%%MANPAGES%%share/man/man1/FvwmButtons.1.gz						%%MANPAGES%%share/man/man1/FvwmButtons.1.gz
%%MANPAGES%%share/man/man1/FvwmCommand.1.gz						%%MANPAGES%%share/man/man1/FvwmCommand.1.gz
%%MANPAGES%%share/man/man1/FvwmEvent.1.gz						%%MANPAGES%%share/man/man1/FvwmEvent.1.gz
%%MANPAGES%%share/man/man1/FvwmForm.1.gz						%%MANPAGES%%share/man/man1/FvwmForm.1.gz
%%MANPAGES%%share/man/man1/FvwmIconMan.1.gz						%%MANPAGES%%share/man/man1/FvwmIconMan.1.gz
%%MANPAGES%%share/man/man1/FvwmIdent.1.gz						%%MANPAGES%%share/man/man1/FvwmIdent.1.gz
%%MANPAGES%%share/man/man1/FvwmMFL.1.gz							%%MANPAGES%%share/man/man1/FvwmMFL.1.gz
%%MANPAGES%%share/man/man1/FvwmPager.1.gz						%%MANPAGES%%share/man/man1/FvwmPager.1.gz
%%MANPAGES%%share/man/man1/FvwmPerl.1.gz						%%MANPAGES%%share/man/man1/FvwmPerl.1.gz
%%MANPAGES%%share/man/man1/FvwmRearrange.1.gz						%%MANPAGES%%share/man/man1/FvwmRearrange.1.gz
%%MANPAGES%%share/man/man1/FvwmScript.1.gz						%%MANPAGES%%share/man/man1/FvwmScript.1.gz
%%MANPAGES%%share/man/man1/fvwm-convert-2.6.1.gz					%%MANPAGES%%share/man/man1/fvwm-convert-2.6.1.gz
%%MANPAGES%%share/man/man1/fvwm-menu-desktop.1.gz					%%MANPAGES%%share/man/man1/fvwm-menu-desktop.1.gz
%%MANPAGES%%share/man/man1/fvwm-menu-directory.1.gz					%%MANPAGES%%share/man/man1/fvwm-menu-directory.1.gz
%%MANPAGES%%share/man/man1/fvwm-menu-xlock.1.gz						%%MANPAGES%%share/man/man1/fvwm-menu-xlock.1.gz
%%MANPAGES%%share/man/man1/fvwm-perllib.1.gz						%%MANPAGES%%share/man/man1/fvwm-perllib.1.gz
%%MANPAGES%%share/man/man1/fvwm-root.1.gz						%%MANPAGES%%share/man/man1/fvwm-root.1.gz
%%MANPAGES%%share/man/man1/fvwm3.1.gz							%%MANPAGES%%share/man/man1/fvwm3.1.gz
%%MANPAGES%%share/man/man1/fvwm3all.1.gz						%%MANPAGES%%share/man/man1/fvwm3all.1.gz
%%MANPAGES%%share/man/man1/fvwm3commands.1.gz						%%MANPAGES%%share/man/man1/fvwm3commands.1.gz
%%MANPAGES%%share/man/man1/fvwm3menus.1.gz						%%MANPAGES%%share/man/man1/fvwm3menus.1.gz
%%MANPAGES%%share/man/man1/fvwm3styles.1.gz						%%MANPAGES%%share/man/man1/fvwm3styles.1.gz
share/xsessions/fvwm3.desktop								share/xsessions/fvwm3.desktop

There are plenty of ways that someone who ports software to FreeBSD could automate the process, custom scripts is one method.  I don't believe it would help me more to automate the entire process even if it would save time, I have plenty of spare time to update after each upstream commit.  Creating the plist-fix script took away definite tedium, though vi has ways to do mass substitutions.

When I initially edited the pkg-plist file, I looked at what the output was and compared it to how it looked in the official port.  Next were my edits to the pkg-plist for my unofficial ports and when I had those correct to my understanding, I was able to work on the script.  My own pkg-plist files diverged due to additional options or different option names.  I believe my results are reasonably correct, they have worked fine for me since I dogfood both my luanti and fvwm3 regularly and frequently use the other -dev ports I try to keep updated on my github.  It makes sense to me to keep each custom plist-fix script in the github repo for its unofficial port because then I will never be starting from scratch, and others could learn from them.

If you wish to contribute by porting something or maintaining a FreeBSD port that already exists, you may find some amount of scripting advantageous.  You can find some helpful tools in the ports tree in the ports-mgmt directory, the porter's handbook is very useful and provides a lot of good information.  You may also find solutions by looking at a Linux distro such as Arch or Artix.  I wish you success and hope that if it interests you that you can put forth the effort to get the best results, give us all something new in ports.

Frequently viewed this week