2006-07-22 22:36:31 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gd
|
2008-11-28 16:50:21 +00:00
|
|
|
PKG_VERSION:=2.0.35
|
|
|
|
PKG_RELEASE:=1
|
2006-07-22 22:36:31 +00:00
|
|
|
|
2008-11-28 16:50:21 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_SOURCE_URL:=http://www.libgd.org/releases
|
|
|
|
PKG_MD5SUM:=6c6c3dbb7bf079e0bb5fbbfd3bb8a71c
|
|
|
|
|
|
|
|
PKG_FIXUP = libtool
|
2006-07-22 22:36:31 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libgd
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
DEPENDS:=+libjpeg +libpng
|
|
|
|
TITLE:=The GD graphics library
|
|
|
|
URL:=http://www.boutell.com/gd/
|
|
|
|
endef
|
|
|
|
|
2008-11-28 16:50:21 +00:00
|
|
|
define Package/libgd/description
|
|
|
|
GD is an open source code library for the dynamic creation of images by
|
|
|
|
programmers. GD creates PNG, JPEG and GIF images, among other formats.
|
|
|
|
endef
|
|
|
|
|
2008-08-06 22:43:15 +00:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--disable-rpath \
|
|
|
|
--without-x \
|
|
|
|
--without-freetype \
|
|
|
|
--with-jpeg=$(STAGING_DIR)/usr \
|
|
|
|
--with-png=$(STAGING_DIR)/usr \
|
2009-11-30 10:51:42 +00:00
|
|
|
--without-xpm \
|
|
|
|
--without-iconv
|
2008-08-06 22:43:15 +00:00
|
|
|
|
|
|
|
CONFIGURE_VARS += \
|
2008-12-10 01:17:50 +00:00
|
|
|
LIBPNG12_CONFIG="$(STAGING_DIR)/host/bin/libpng12-config"
|
2008-08-06 22:43:15 +00:00
|
|
|
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
2006-07-22 22:36:31 +00:00
|
|
|
|
2009-11-30 10:51:42 +00:00
|
|
|
define Build/Configure
|
|
|
|
( cd $(PKG_BUILD_DIR); aclocal; libtoolize; autoreconf; );
|
|
|
|
$(call Build/Configure/Default)
|
|
|
|
endef
|
|
|
|
|
2006-07-22 22:36:31 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
|
|
|
all install
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2009-12-18 11:06:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2007-12-09 18:59:01 +00:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gdlib-config $(1)/usr/bin/
|
2009-12-18 11:06:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2007-10-07 03:20:26 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/entities.h $(1)/usr/include/
|
2006-10-03 17:20:23 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/gd{,_io,cache,fontg,fontl,fontmb,fonts,fontt,fx}.h \
|
2007-10-07 03:20:26 +00:00
|
|
|
$(1)/usr/include/
|
2009-12-18 11:06:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2007-10-07 03:20:26 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgd.{a,so*} $(1)/usr/lib/
|
|
|
|
$(SED) 's,-I$$$${prefix}/include,,g' $(1)/usr/bin/gdlib-config
|
2006-07-22 22:36:31 +00:00
|
|
|
endef
|
|
|
|
|
2006-10-03 17:20:23 +00:00
|
|
|
define Package/libgd/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2006-10-03 17:20:23 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libgd.so.* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2006-07-22 22:36:31 +00:00
|
|
|
$(eval $(call BuildPackage,libgd))
|