Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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:= cairo
  5. PKG_VERSION:= 1.12.16
  6. PKG_RELEASE:= 4
  7. PKG_MD5SUM:= a1304edcdc99282f478b995ee5f8f854
  8. PKG_DESCR:= cairo graphics library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= fontconfig libfreetype libpng libx11 pixman
  11. PKG_DEPENDS+= libxrender
  12. PKG_BUILDDEP:= libpng pixman freetype fontconfig libX11 libXrender glib
  13. PKG_BUILDDEP+= libXext
  14. PKG_URL:= http://cairographics.org/
  15. PKG_SITES:= http://cairographics.org/releases/
  16. PKG_OPTS:= dev
  17. ifeq ($(ADK_STATIC),y)
  18. PKG_OPTS+= libonly
  19. endif
  20. include ${TOPDIR}/mk/package.mk
  21. $(eval $(call PKG_template,CAIRO,cairo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  22. ifeq (,$(filter arm,$(TARGET_ARCH)))
  23. TARGET_CFLAGS:= $(filter-out -Os,$(TARGET_CFLAGS))
  24. endif
  25. CONFIGURE_ARGS+= --enable-ft=yes \
  26. --enable-fc=yes \
  27. --enable-tee=yes \
  28. --enable-xlib=yes \
  29. --enable-pdf=yes \
  30. --disable-test-surfaces \
  31. --disable-full-testing
  32. cairo-install:
  33. ${INSTALL_DIR} ${IDIR_CAIRO}/usr/lib/cairo
  34. ${CP} ${WRKINST}/usr/lib/libcairo*.so* ${IDIR_CAIRO}/usr/lib
  35. ${CP} ${WRKINST}/usr/lib/cairo/*.so* ${IDIR_CAIRO}/usr/lib/cairo
  36. include ${TOPDIR}/mk/pkg-bottom.mk