1
0

Makefile 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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:= gd
  5. PKG_VERSION:= 2.0.35
  6. PKG_RELEASE:= 2
  7. PKG_MD5SUM:= 982963448dc36f20cb79b6e9ba6fdede
  8. PKG_DESCR:= A library for the dynamic creation of images
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= libjpeg libpng
  11. PKG_BUILDDEP:= libpng jpeg
  12. PKG_URL:= http://www.libgd.org/
  13. PKG_SITES:= http://www.libgd.org/releases/
  14. PKG_SUBPKGS:= LIBGD
  15. include ${TOPDIR}/mk/package.mk
  16. $(eval $(call PKG_template,LIBGD,libgd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_ENV+= LIBPNG12_CONFIG="${STAGING_TARGET_DIR}/usr/bin/libpng12-config"
  18. CONFIGURE_ARGS+= --without-x \
  19. --without-freetype \
  20. --with-jpeg=${STAGING_TARGET_DIR}/usr \
  21. --with-png=${STAGING_TARGET_DIR}/usr \
  22. --without-xpm
  23. post-install:
  24. ${INSTALL_DIR} ${IDIR_LIBGD}/usr/lib
  25. ${CP} ${WRKINST}/usr/lib/libgd.so* ${IDIR_LIBGD}/usr/lib/
  26. include ${TOPDIR}/mk/pkg-bottom.mk