External, Non-PPA KXStudio Repository
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.7KB

  1. --- ntk-static-0.0.0+git20141018.orig/fluid/wscript
  2. +++ ntk-static-0.0.0+git20141018/fluid/wscript
  3. @@ -32,10 +32,7 @@ def build(bld):
  4. ''',
  5. target='ntk-fluid',
  6. includes = [ '.', '../' ],
  7. - use = [ 'ntk_images_shared', 'ntk_shared' ],
  8. - # FIXME: why is this now neccessary with new waf version?
  9. - uselib = [
  10. - 'LIBJPEG', 'LIBPNG', 'LIBZ', 'DL', 'M', 'PTHREAD' ,
  11. - 'X11', 'FONTCONFIG', 'XFT', 'CAIRO', 'DL', 'M', 'PTHREAD' ],
  12. + use = [ 'ntk_images_static', 'ntk_static' ],
  13. + lib = [ 'cairo', 'pixman-1', 'png16', 'fontconfig', 'freetype', 'Xft', 'Xrender', 'X11', 'dl', 'z' ],
  14. install_path = '${BINDIR}' )
  15. --- ntk-static-0.0.0+git20141018.orig/wscript
  16. +++ ntk-static-0.0.0+git20141018/wscript
  17. @@ -43,9 +43,6 @@ def makelib(bld,*k,**kw):
  18. kw['features' ] = 'c cxx cxxstlib'
  19. kw['name'] = kw['target'] + '_static'
  20. bld.shlib(*k,**kw)
  21. - kw['features' ] = 'c cxx cxxshlib'
  22. - kw['name'] = kw['target'] + '_shared'
  23. - bld.stlib(*k,**kw)
  24. # from autowaf
  25. def run_ldconfig(ctx):
  26. @@ -501,11 +498,12 @@ src/Fl_Gl_Window.cxx
  27. bld.program(
  28. - source = 'src/ntk-chtheme.cxx',
  29. - target = 'ntk-chtheme',
  30. + source = 'src/ntk-chtheme.cxx',
  31. + target = 'ntk-chtheme',
  32. includes = [ '.' ],
  33. - use = ['ntk_images_shared', 'ntk_shared'],
  34. - install_path = "${BINDIR}" )
  35. + use = [ 'ntk_images_static', 'ntk_static' ],
  36. + lib = [ 'cairo', 'pixman-1', 'png16', 'fontconfig', 'freetype', 'Xft', 'Xrender', 'X11', 'dl', 'z' ],
  37. + install_path = "${BINDIR}" )
  38. # bld( features = 'subst',
  39. # source = 'ntk-config.in',