actions.py 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file https://www.gnu.org/licenses/gpl-3.0.txt
  6. from pisi.actionsapi import shelltools
  7. from pisi.actionsapi import autotools
  8. from pisi.actionsapi import pisitools
  9. from pisi.actionsapi import get
  10. import os
  11. def setup():
  12. shelltools.export("AUTOPOINT", "true")
  13. autotools.autoreconf("-fi")
  14. autotools.configure("--with-drivers=all \
  15. --enable-nls \
  16. --disable-rpath \
  17. --disable-lockdev \
  18. --disable-resmgr \
  19. --disable-ttylock \
  20. --disable-baudboy \
  21. --disable-static")
  22. pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
  23. def build():
  24. autotools.make()
  25. def install():
  26. autotools.rawInstall("DESTDIR=%s udevscriptdir=/lib/udev" % get.installDIR())
  27. # HAL_FDI="usr/share/hal/fdi/information/20thirdparty/10-camera-libgphoto2.fdi"
  28. UDEV_RULES="lib/udev/rules.d/40-libgphoto2.rules"
  29. HWDB_RULES="lib/udev/rules.d/20-libgphoto2.hwdb"
  30. CAM_LIST="usr/lib/libgphoto2/print-camera-list"
  31. CAM_LIBS="usr/lib/libgphoto2/%s" % get.srcVERSION()
  32. # Create hal directory
  33. # pisitools.dodir(shelltools.dirName(HAL_FDI))
  34. # Export the necessary env variables
  35. shelltools.export("CAMLIBS", "%s/%s" % (get.installDIR(), CAM_LIBS))
  36. shelltools.export("LIBDIR", "%s/usr/lib/" % get.installDIR())
  37. shelltools.export("LD_LIBRARY_PATH", "%s/usr/lib/" % get.installDIR())
  38. # Generate HAL FDI file
  39. # f = open(os.path.join(get.installDIR(), HAL_FDI), "w")
  40. # f.write(os.popen("%s/%s hal-fdi" % (get.installDIR(), CAM_LIST)).read())
  41. # f.close()
  42. # Generate UDEV rule which will replace the HAL FDI when HAL is deprecated
  43. pisitools.dodir("/lib/udev/rules.d")
  44. f = open(os.path.join(get.installDIR(), UDEV_RULES), "w")
  45. f.write(os.popen("%s/%s udev-rules version 201" % (get.installDIR(), CAM_LIST)).read())
  46. f.close()
  47. f = open(os.path.join(get.installDIR(), HWDB_RULES), "w")
  48. f.write(os.popen("%s/%s hwdb" % (get.installDIR(), CAM_LIST)).read())
  49. f.close()
  50. pisitools.removeDir("/usr/share/doc/libgphoto2_port")
  51. pisitools.removeDir("/usr/share/libgphoto2_port")
  52. # Remove circular symlink
  53. #pisitools.remove("/usr/include/gphoto2/gphoto2")
  54. pisitools.dodoc("HACKING.md", "MAINTAINERS", "TESTERS")