Anyone know what this means?
gzip -dc /sw/src/libwmf-0.2.8.2.tar.gz | /sw/bin/tar -xf - --no-same-owner --no-same-permissions
perl -pi -e 's;io_wmf_la_LIBADD =;io_wmf_la_LIBADD = -lwmflite;' src/Makefile.in
perl -pi -e 's;DESTDIR \=;;' fonts/Makefile.in
perl -pi -e 's;fontdir \= @WMF_FONTDIR@;fontdir \= /sw/src/root-libwmf-0.2.8.2-2/sw/lib/X11/fonts/libwmf ;' fonts/Makefile.in
In string, @WMF_FONTDIR now must be written as \@WMF_FONTDIR at -e line 1, near "fontdir \= @WMF_FONTDIR"
Execution of -e aborted due to compilation errors.
### execution of perl failed, exit code 255
Failed: patching libwmf-0.2.8.2-2 failed
It seems as though the perl script for the makefile is incorrect or something.
kman