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