Makefile 1.1 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 $(TOPDIR)/rules.mk
  4. PKG_NAME:= libXinerama
  5. PKG_VERSION:= 1.1.2
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 29a813b3850d499a3524a8d5d5ecb099
  8. PKG_DESCR:= xinerama library
  9. PKG_SECTION:= x11/libs
  10. PKG_BUILDDEP:= xineramaproto libXinerama-host
  11. HOST_BUILDDEP:= xineramaproto-host libXext-host
  12. PKG_SITES:= ${MASTER_SITE_XORG}
  13. PKG_LIBNAME:= libxinerama
  14. PKG_OPTS:= dev
  15. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.gz
  16. include $(TOPDIR)/mk/host.mk
  17. include $(TOPDIR)/mk/package.mk
  18. $(eval $(call HOST_template,LIBXINERAMA,libxinerama,$(PKG_VERSION)-${PKG_RELEASE}))
  19. $(eval $(call PKG_template,LIBXINERAMA,libxinerama,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  20. CONFIGURE_ARGS+= --disable-malloc0returnsnull
  21. libxinerama-install:
  22. ${INSTALL_DIR} ${IDIR_LIBXINERAMA}/usr/lib
  23. ${CP} ${WRKINST}/usr/lib/libXinerama.so* ${IDIR_LIBXINERAMA}/usr/lib
  24. include ${TOPDIR}/mk/host-bottom.mk
  25. include ${TOPDIR}/mk/pkg-bottom.mk