Makefile 757 B

123456789101112131415161718192021222324252627282930
  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:= libX11
  7. PKG_VERSION:= 1.1.5
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 2feb39a0de6f05b25c308268691d960c
  10. MASTER_SITES:= ${MASTER_SITE_XORG}
  11. include $(TOPDIR)/mk/package.mk
  12. $(eval $(call PKG_template,LIBX11,libx11,$(PKG_VERSION)-$(PKG_RELEASE)))
  13. CONFIGURE_STYLE= gnu
  14. CONFIGURE_ARGS+= --enable-xlocale \
  15. --disable-xf86bigfont \
  16. --disable-malloc0returnsnull \
  17. --without-xcb
  18. BUILD_STYLE= auto
  19. INSTALL_STYLE= auto confprog
  20. post-install:
  21. ${INSTALL_DIR} ${IDIR_LIBX11}/usr/lib
  22. ${CP} ${WRKINST}/usr/lib/libX11.so* ${IDIR_LIBX11}/usr/lib/
  23. include ${TOPDIR}/mk/pkg-bottom.mk