Ivica,

I have good message ! pd-l2ork has been completely build on arch 64 from my new PKGBUILD.
it has this last problem:
If I want to install it to the system it complies about this:


error: failed to commit transaction (conflicting files)
pd-l2ork: /usr/bin/cyclist exists in filesystem
pd-l2ork: /usr/bin/pdreceive exists in filesystem
pd-l2ork: /usr/bin/pdsend exists in filesystem
pd-l2ork: /usr/share/man/man1/pdreceive.1.gz exists in filesystem
pd-l2ork: /usr/share/man/man1/pdsend.1.gz exists in filesystem


all of the errors are conflicting files from pd-extended.
If I uninstall pd-extended, everything goes well and I have functional pd-l2ork in the system.
How to resolve this ?

next.. you have resolved problem with gem2pdp, but I have to run aclocal in this folder separately before building process, because in your script is only
cd gem2pdp && autoconf
something changed ?

and finally I have to patch the pd/src/configure.in for tcl/tk8.6, and I think it could be added officially
here is the patch file:



*** configure.in 2013-01-23 19:46:22.000000000 +0100
--- configure.in.new 2013-01-23 19:54:57.476420874 +0100
***************
*** 149,154 ****
--- 149,155 ----
  #    exit -1
  fi
  
+ AC_CHECK_LIB(tcl8.6, main,,
  AC_CHECK_LIB(tcl85, main,,
          AC_CHECK_LIB(tcl8.5, main,,
          AC_CHECK_LIB(tcl84, main,,
***************
*** 156,171 ****
                  AC_CHECK_LIB(tcl8.3, main,,
                      AC_CHECK_LIB(tcl8.2, main,,
                                      AC_CHECK_LIB(tcl8.0, main,,
!                             echo no tcl library found; exit 1)))))))
  
  AC_CHECK_LIB(tk85, main,,
!         AC_CHECK_LIB(tk8.5, main,,
         AC_CHECK_LIB(tk84, main,,
              AC_CHECK_LIB(tk8.4, main,,
                  AC_CHECK_LIB(tk8.3, main,,
                      AC_CHECK_LIB(tk8.2, main,,
                                      AC_CHECK_LIB(tk8.0, main,,
!                             echo no tk library found; exit 1)))))))
  
  
  if test x$tk != "xno"; then
--- 157,173 ----
                  AC_CHECK_LIB(tcl8.3, main,,
                      AC_CHECK_LIB(tcl8.2, main,,
                                      AC_CHECK_LIB(tcl8.0, main,,
!                             echo no tcl library found; exit 1))))))))
  
+ AC_CHECK_LIB(tk8.6, main,,
  AC_CHECK_LIB(tk85, main,,
!     AC_CHECK_LIB(tk8.5, main,,
         AC_CHECK_LIB(tk84, main,,
              AC_CHECK_LIB(tk8.4, main,,
                  AC_CHECK_LIB(tk8.3, main,,
                      AC_CHECK_LIB(tk8.2, main,,
                                      AC_CHECK_LIB(tk8.0, main,,
!                             echo no tk library found; exit 1))))))))
  
  

fk.