Makefile 1.0 KB

123456789101112131415161718192021222324252627282930313233
  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 $(ADK_TOPDIR)/rules.mk
  4. PKG_NAME:= libXext
  5. PKG_VERSION:= 1.3.1
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 249478eae5c4fab7722894cb99565405
  8. PKG_DESCR:= client interface to extensions of the x protocol
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= libX11 xextproto libXext-host
  11. PKG_SITES:= ${MASTER_SITE_XORG}
  12. PKG_LIBNAME:= libxext
  13. PKG_OPTS:= dev
  14. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  15. include $(ADK_TOPDIR)/mk/host.mk
  16. include $(ADK_TOPDIR)/mk/package.mk
  17. $(eval $(call HOST_template,LIBXEXT,libxext,$(PKG_VERSION)-${PKG_RELEASE}))
  18. $(eval $(call PKG_template,LIBXEXT,libxext,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  19. HOST_STYLE:= auto
  20. CONFIGURE_ARGS+= --disable-malloc0returnsnull
  21. libxext-install:
  22. ${INSTALL_DIR} ${IDIR_LIBXEXT}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libXext.so* ${IDIR_LIBXEXT}/usr/lib/
  24. include ${ADK_TOPDIR}/mk/host-bottom.mk
  25. include ${ADK_TOPDIR}/mk/pkg-bottom.mk