Makefile 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= xorg-server
  5. PKG_VERSION:= 1.5.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 7aca5d0dc8b824d3dff6140e381e03df
  8. PKG_DESCR:= Xorg server
  9. PKG_SECTION:= x11
  10. PKG_DEPENDS:= libopenssl
  11. PKG_URL:= http://www.x.org
  12. PKG_SITES:= ${MASTER_SITE_XORG}
  13. include $(TOPDIR)/mk/package.mk
  14. $(eval $(call PKG_template,XORG_SERVER,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  15. CONFIGURE_STYLE= gnu
  16. CONFIGURE_ARGS+= \
  17. --enable-builtin-fonts \
  18. --enable-dga \
  19. --enable-xorg \
  20. --enable-xv \
  21. --disable-afb \
  22. --disable-aiglx \
  23. --disable-cfb \
  24. --disable-config-hal \
  25. --disable-cup \
  26. --disable-evi \
  27. --disable-dpms \
  28. --disable-dri \
  29. --disable-dri2 \
  30. --disable-freetype \
  31. --disable-glx \
  32. --disable-kdrive-vesa \
  33. --disable-mfb \
  34. --disable-xace \
  35. --disable-xephyr \
  36. --disable-xevie \
  37. --disable-xf86bigfont \
  38. --disable-xf86misc \
  39. --disable-xf86vidmode \
  40. --disable-xfake \
  41. --disable-xfbdev \
  42. --disable-xinerama \
  43. --disable-xnest \
  44. --disable-xprint \
  45. --disable-xsdl \
  46. --disable-xselinux \
  47. --disable-xcsecurity \
  48. --disable-xvfb \
  49. --disable-xvmc \
  50. --with-xkb-output=/tmp \
  51. --with-os-vendor=OpenADK \
  52. --with-vendor-web="http://www.openadk.org"
  53. BUILD_STYLE= auto
  54. INSTALL_STYLE= auto
  55. post-install:
  56. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/bin
  57. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/{extensions,fonts,linux,multimedia}
  58. ${CP} ${WRKINST}/usr/bin/* $(IDIR_XORG_SERVER)/usr/bin
  59. ${CP} ${WRKINST}/usr/lib/xorg/modules/*.so \
  60. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules
  61. ${CP} ${WRKINST}/usr/lib/xorg/modules/extensions/*.so \
  62. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/extensions
  63. ${CP} ${WRKINST}/usr/lib/xorg/modules/fonts/*.so \
  64. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/fonts
  65. ${CP} ${WRKINST}/usr/lib/xorg/modules/linux/*.so \
  66. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/linux
  67. ${CP} ${WRKINST}/usr/lib/xorg/modules/multimedia/*.so \
  68. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/multimedia
  69. include ${TOPDIR}/mk/pkg-bottom.mk