license info - revert r43155
[openwrt/staging/mkresin.git] / package / libs / libiconv-full / Makefile
1 #
2 # Copyright (C) 2006-2009 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:=libiconv-full
11 PKG_VERSION:=1.11.1
12 PKG_RELEASE:=1
13
14 PKG_MAINTAINER:=Jo-Philipp Wich <jow@openwrt.org>
15
16 PKG_SOURCE:=libiconv-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=@GNU/libiconv
18 PKG_MD5SUM:=d42b97f6ef5dd0ba4469d520ed732fed
19 PKG_BUILD_DIR:=$(BUILD_DIR)/libiconv-$(PKG_VERSION)
20
21 PKG_FIXUP:=patch-libtool
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/libiconv-full/Default
26 URL:=http://www.gnu.org/software/libiconv/
27 TITLE:=Character set conversion
28 endef
29
30 define Package/libiconv-full
31 $(call Package/libiconv-full/Default)
32 SECTION:=libs
33 CATEGORY:=Libraries
34 TITLE+= library
35 endef
36
37 define Package/libcharset
38 $(call Package/libiconv-full/Default)
39 SECTION:=libs
40 CATEGORY:=Libraries
41 TITLE+= library
42 endef
43
44 define Package/iconv
45 $(call Package/libiconv-full/Default)
46 DEPENDS:=+libiconv-full +libcharset
47 SECTION:=utils
48 CATEGORY:=Utilities
49 TITLE+= utility
50 endef
51
52 TARGET_CFLAGS += $(FPIC) -DUSE_DOS
53
54 CONFIGURE_ARGS += \
55 --enable-shared \
56 --enable-static \
57 --disable-rpath \
58 --enable-relocatable
59
60 define Build/Compile
61 $(MAKE) -C $(PKG_BUILD_DIR) \
62 CC="$(TARGET_CC)" \
63 DESTDIR="$(PKG_INSTALL_DIR)" \
64 install
65 endef
66
67 define Build/InstallDev
68 $(INSTALL_DIR) $(1)/usr/lib/libiconv-full/include
69 $(CP) $(PKG_INSTALL_DIR)/usr/include/iconv.h $(1)/usr/lib/libiconv-full/include/
70
71 $(INSTALL_DIR) $(1)/usr/lib/libiconv-full/lib
72 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcharset.{a,so*} $(1)/usr/lib/libiconv-full/lib/
73 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiconv.{a,so*} $(1)/usr/lib/libiconv-full/lib/
74 endef
75
76 define Package/libcharset/install
77 $(INSTALL_DIR) $(1)/usr/lib
78 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libcharset.so* $(1)/usr/lib/
79 endef
80
81 define Package/libiconv-full/install
82 $(INSTALL_DIR) $(1)/usr/lib
83 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libiconv.so* $(1)/usr/lib/
84 endef
85
86 define Package/iconv/install
87 $(INSTALL_DIR) $(1)/usr/bin
88 $(CP) $(PKG_INSTALL_DIR)/usr/bin/iconv $(1)/usr/bin/
89 endef
90
91 $(eval $(call BuildPackage,libcharset))
92 $(eval $(call BuildPackage,libiconv-full))
93 $(eval $(call BuildPackage,iconv))