Makefile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. # $Id$
  2. #-
  3. # This file is part of the OpenADK project. OpenADK is copyrighted
  4. # material, please see the LICENCE file in the top-level directory.
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:= xorg-server
  7. PKG_VERSION:= 1.5.1
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 7aca5d0dc8b824d3dff6140e381e03df
  10. PKG_DESCR:= Xorg server
  11. PKG_SECTION:= x11
  12. PKG_URL:= http://www.x.org
  13. PKG_SITES:= ${MASTER_SITE_XORG}
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,XORG_SERVER,xorg-server,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIGURE_STYLE= gnu
  17. CONFIGURE_ARGS+= --disable-xinerama \
  18. --disable-aiglx \
  19. --disable-dga \
  20. --disable-dri \
  21. --disable-glx \
  22. --disable-xnest \
  23. --disable-config-hal \
  24. --disable-xvfb \
  25. --disable-mfb \
  26. --disable-cfb \
  27. --disable-afb \
  28. --disable-xephyr \
  29. --disable-xsdl \
  30. --enable-builtin-fonts
  31. BUILD_STYLE= auto
  32. INSTALL_STYLE= auto
  33. post-install:
  34. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/bin
  35. $(INSTALL_DIR) $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/{extensions,fonts,linux,multimedia}
  36. ${CP} ${WRKINST}/usr/bin/* $(IDIR_XORG_SERVER)/usr/bin
  37. ${CP} ${WRKINST}/usr/lib/xorg/modules/*.so \
  38. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules
  39. ${CP} ${WRKINST}/usr/lib/xorg/modules/extensions/*.so \
  40. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/extensions
  41. ${CP} ${WRKINST}/usr/lib/xorg/modules/fonts/*.so \
  42. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/fonts
  43. ${CP} ${WRKINST}/usr/lib/xorg/modules/linux/*.so \
  44. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/linux
  45. ${CP} ${WRKINST}/usr/lib/xorg/modules/multimedia/*.so \
  46. $(IDIR_XORG_SERVER)/usr/lib/xorg/modules/multimedia
  47. include ${TOPDIR}/mk/pkg-bottom.mk