Makefile 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # Copyright (C) 2006-2015 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=libgd
  9. PKG_VERSION:=2.1.1
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=gd-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://github.com/libgd/libgd/archive
  13. PKG_MD5SUM:=e91a1a99903e460e7ba00a794e72cc1e
  14. PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
  15. PKG_LICENSE:=MIT
  16. PKG_FIXUP:=autoreconf
  17. PKG_INSTALL:=1
  18. PKG_BUILD_PARALLEL:=1
  19. PKG_BUILD_DIR:=$(BUILD_DIR)/libgd-gd-$(PKG_VERSION)
  20. include $(INCLUDE_DIR)/package.mk
  21. define Package/libgd
  22. SECTION:=libs
  23. CATEGORY:=Libraries
  24. DEPENDS:=+libjpeg +libpng
  25. TITLE:=The GD graphics library
  26. URL:=http://www.libgd.org/
  27. endef
  28. define Package/libgd/description
  29. GD is an open source code library for the dynamic creation of images by
  30. programmers. GD creates PNG, JPEG and GIF images, among other formats.
  31. endef
  32. TARGET_CFLAGS += $(FPIC)
  33. CONFIGURE_ARGS += \
  34. --enable-shared \
  35. --enable-static \
  36. --disable-rpath \
  37. --without-x \
  38. --without-fontconfig \
  39. --without-freetype \
  40. --with-jpeg=$(STAGING_DIR)/usr \
  41. --with-png=$(STAGING_DIR)/usr \
  42. --with-vpx=no \
  43. --without-xpm \
  44. --without-iconv
  45. CONFIGURE_VARS += \
  46. LIBPNG12_CONFIG="$(STAGING_DIR_HOSTPKG)/bin/libpng12-config" \
  47. ac_cv_header_iconv_h=no
  48. define Build/InstallDev
  49. $(INSTALL_DIR) $(1)/usr/bin
  50. $(CP) $(PKG_INSTALL_DIR)/usr/bin/gdlib-config $(1)/usr/bin/
  51. $(SED) \
  52. 's,^\(prefix\|exec_prefix\)=.*,\1=$(STAGING_DIR)/usr,g' \
  53. $(1)/usr/bin/gdlib-config
  54. $(INSTALL_DIR) $(1)/usr/include
  55. $(CP) $(PKG_INSTALL_DIR)/usr/include/entities.h $(1)/usr/include/
  56. $(CP) $(PKG_INSTALL_DIR)/usr/include/gd{,_io,cache,fontg,fontl,fontmb,fonts,fontt,fx}.h \
  57. $(1)/usr/include/
  58. $(INSTALL_DIR) $(1)/usr/lib
  59. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgd.{a,la,so*} $(1)/usr/lib/
  60. $(INSTALL_DIR) $(2)/bin
  61. $(LN) ../../usr/bin/gdlib-config $(2)/bin/
  62. endef
  63. define Package/libgd/install
  64. $(INSTALL_DIR) $(1)/usr/lib
  65. $(CP) $(PKG_INSTALL_DIR)/usr/lib/libgd.so.* $(1)/usr/lib/
  66. endef
  67. $(eval $(call BuildPackage,libgd))