Makefile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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.7.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 913a672cbd6da516de15965d594e20b9
  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-dga \
  18. --enable-xorg \
  19. --enable-xv \
  20. --disable-aiglx \
  21. --disable-config-hal \
  22. --disable-dpms \
  23. --disable-dri \
  24. --disable-dri2 \
  25. --disable-glx \
  26. --disable-xace \
  27. --disable-xephyr \
  28. --disable-xf86bigfont \
  29. --disable-xf86vidmode \
  30. --disable-xfake \
  31. --disable-xfbdev \
  32. --disable-xinerama \
  33. --disable-xnest \
  34. --disable-xsdl \
  35. --disable-xselinux \
  36. --disable-xcsecurity \
  37. --disable-xvfb \
  38. --disable-xvmc \
  39. --with-xkb-output=/tmp \
  40. --with-os-vendor=OpenADK \
  41. --with-vendor-web="http://www.openadk.org"
  42. BUILD_STYLE:= auto
  43. INSTALL_STYLE:= auto
  44. post-install:
  45. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/bin
  46. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/{extensions,fonts,linux,multimedia}
  47. ${CP} ${WRKINST}/usr/bin/* $(IDIR_XORG_SERVER)/usr/bin
  48. ${CP} ${WRKINST}/usr/lib/xorg/modules/*.so \
  49. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules
  50. ${CP} ${WRKINST}/usr/lib/xorg/modules/extensions/*.so \
  51. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/extensions
  52. ${CP} ${WRKINST}/usr/lib/xorg/modules/linux/*.so \
  53. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/linux
  54. ${CP} ${WRKINST}/usr/lib/xorg/modules/multimedia/*.so \
  55. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/multimedia
  56. include ${TOPDIR}/mk/pkg-bottom.mk