2007-05-08 14:59:19 +00:00
|
|
|
#
|
2007-05-13 09:03:59 +00:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2007-05-08 14:59:19 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2007-07-01 23:09:45 +00:00
|
|
|
# $Id$
|
2007-05-08 14:59:19 +00:00
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=glib2
|
2008-10-03 16:11:38 +00:00
|
|
|
PKG_VERSION:=2.18.1
|
2009-01-04 00:06:33 +00:00
|
|
|
PKG_RELEASE:=4
|
2007-05-08 14:59:19 +00:00
|
|
|
|
2008-09-01 22:15:32 +00:00
|
|
|
PKG_SOURCE:=glib-$(PKG_VERSION).tar.bz2
|
2007-05-08 14:59:19 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/glib-$(PKG_VERSION)
|
2008-10-03 16:11:38 +00:00
|
|
|
PKG_SOURCE_URL:=@GNOME/glib/2.18
|
|
|
|
PKG_MD5SUM:=51a9a33f49a4896d4d95d8e980666b9e
|
2008-09-01 22:15:32 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2007-12-27 02:12:04 +00:00
|
|
|
|
2007-05-08 14:59:19 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-10-03 16:11:38 +00:00
|
|
|
PKG_INSTALL=1
|
2007-10-03 07:42:01 +00:00
|
|
|
|
2007-05-08 14:59:19 +00:00
|
|
|
define Package/glib2
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2007-05-11 17:03:54 +00:00
|
|
|
DEPENDS:=+libiconv +libintl
|
2007-05-08 14:59:19 +00:00
|
|
|
TITLE:=glib 2.0
|
|
|
|
URL:=http://www.gtk.org/
|
|
|
|
endef
|
|
|
|
|
2007-10-14 04:32:56 +00:00
|
|
|
define Package/glib2/description
|
2008-10-03 16:11:38 +00:00
|
|
|
The GLib library of C routines
|
2007-10-14 04:32:56 +00:00
|
|
|
endef
|
|
|
|
|
2008-10-03 16:11:38 +00:00
|
|
|
TARGET_CFLAGS+= \
|
|
|
|
$(FPIC) \
|
|
|
|
-I$(STAGING_DIR)/usr/lib/libiconv/include \
|
|
|
|
-I$(STAGING_DIR)/usr/lib/libintl/include
|
|
|
|
|
|
|
|
TARGET_LDFLAGS+= \
|
|
|
|
-L$(STAGING_DIR)/usr/lib/libiconv/lib \
|
|
|
|
-L$(STAGING_DIR)/usr/lib/libintl/lib
|
2007-10-03 07:42:01 +00:00
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)/build/$(GNU_HOST_NAME)
|
2007-10-21 14:19:26 +00:00
|
|
|
( cd $(PKG_BUILD_DIR); CONFIG_SITE= \
|
|
|
|
./configure \
|
2007-10-03 07:42:01 +00:00
|
|
|
--target=$(GNU_HOST_NAME) \
|
|
|
|
--host=$(GNU_HOST_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
|
|
|
--prefix=$(PKG_BUILD_DIR)/build/$(GNU_HOST_NAME) \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static \
|
|
|
|
--enable-debug=no \
|
|
|
|
);
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) install clean
|
|
|
|
|
2007-05-08 14:59:19 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-shared \
|
|
|
|
--enable-static \
|
2007-10-03 07:42:01 +00:00
|
|
|
--enable-debug=no \
|
2007-05-08 14:59:19 +00:00
|
|
|
, \
|
|
|
|
glib_cv_stack_grows=no \
|
|
|
|
glib_cv_uscore=no \
|
2007-10-03 07:42:01 +00:00
|
|
|
ac_cv_path_GLIB_GENMARSHAL=$(PKG_BUILD_DIR)/build/$(GNU_HOST_NAME)/bin/glib-genmarshal \
|
2008-09-01 22:15:32 +00:00
|
|
|
ac_cv_func_mmap_fixed_mapped=yes \
|
2007-10-03 07:42:01 +00:00
|
|
|
);
|
2007-12-27 02:12:04 +00:00
|
|
|
endef
|
|
|
|
|
2007-05-08 14:59:19 +00:00
|
|
|
define Build/InstallDev
|
2008-09-01 22:15:32 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/include
|
2008-10-03 16:11:38 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/glib-2.0 \
|
|
|
|
$(1)/usr/include/
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/gio-unix-2.0 \
|
|
|
|
$(1)/usr/include/
|
|
|
|
|
2008-09-01 22:15:32 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-10-03 16:11:38 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/glib-2.0 \
|
|
|
|
$(1)/usr/lib/
|
|
|
|
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
|
2008-10-03 16:11:38 +00:00
|
|
|
$(1)/usr/lib/
|
|
|
|
|
2008-09-01 22:15:32 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
2008-10-03 16:11:38 +00:00
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/*.pc \
|
|
|
|
$(1)/usr/lib/pkgconfig
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(2)/share/aclocal/
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/share/aclocal/*.m4 \
|
|
|
|
$(2)/share/aclocal/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(2)/bin
|
|
|
|
$(INSTALL_BIN) \
|
|
|
|
$(PKG_BUILD_DIR)/build/$(GNU_HOST_NAME)/bin/* \
|
|
|
|
$(2)/bin
|
2007-05-08 14:59:19 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-03 07:42:01 +00:00
|
|
|
define Package/glib2/install
|
2007-05-08 14:59:19 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-10-03 16:11:38 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
|
|
$(1)/usr/lib/
|
2007-05-08 14:59:19 +00:00
|
|
|
endef
|
|
|
|
|
2007-10-03 07:42:01 +00:00
|
|
|
|
2007-05-08 14:59:19 +00:00
|
|
|
$(eval $(call BuildPackage,glib2))
|