1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= cairo
- PKG_VERSION:= 1.12.16
- PKG_RELEASE:= 4
- PKG_MD5SUM:= a1304edcdc99282f478b995ee5f8f854
- PKG_DESCR:= cairo graphics library
- PKG_SECTION:= libs
- PKG_DEPENDS:= fontconfig libfreetype libpng libx11 pixman
- PKG_DEPENDS+= libxrender
- PKG_BUILDDEP:= libpng pixman freetype fontconfig libX11 libXrender glib
- PKG_BUILDDEP+= libXext
- PKG_URL:= http://cairographics.org/
- PKG_SITES:= http://cairographics.org/releases/
- PKG_OPTS:= dev
- ifeq ($(ADK_STATIC),y)
- PKG_OPTS+= libonly
- endif
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,CAIRO,cairo,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- ifeq (,$(filter arm,$(TARGET_ARCH)))
- TARGET_CFLAGS:= $(filter-out -Os,$(TARGET_CFLAGS))
- endif
- CONFIGURE_ARGS+= --enable-ft=yes \
- --enable-fc=yes \
- --enable-tee=yes \
- --enable-xlib=yes \
- --enable-pdf=yes \
- --disable-test-surfaces \
- --disable-full-testing
- cairo-install:
- ${INSTALL_DIR} ${IDIR_CAIRO}/usr/lib/cairo
- ${CP} ${WRKINST}/usr/lib/libcairo*.so* ${IDIR_CAIRO}/usr/lib
- ${CP} ${WRKINST}/usr/lib/cairo/*.so* ${IDIR_CAIRO}/usr/lib/cairo
- include ${TOPDIR}/mk/pkg-bottom.mk
|