Package: zimpl
Version: 3.0.0+dfsg1-1
Severity: important
User: [email protected]
Usertags: kfreebsd
(Not tagging as patch for the following reason.)
Hi,
your package FTBFS on GNU/kFreeBSD because its main Makefile relies on
“uname -s”, and then uses it to form filenames. That can't work because
of the '/' character. Please find attached a tiny patch to replace it
with an underscore. Your package doesn't then build yet, because of
failing tests, but that's at least better.
Thanks for considering.
Mraw,
KiBi.
--- a/Makefile
+++ b/Makefile
@@ -38,6 +38,7 @@
-e s/00........../pwr4/)
OSTYPE := $(shell uname -s | \
tr '[:upper:]' '[:lower:]' | \
+ tr '/' '_' | \
sed \
-e s/cygwin.*/cygwin/ \
-e s/irix../irix/ )