# 
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# blogic@openwrt.org

include $(TOPDIR)/rules.mk

PKG_NAME:=gtk-1.2.10
PKG_VERSION:=1.2.10
PKG_RELEASE:=1

PKG_SOURCE:=gtk+-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:= \
	ftp://ftp.gtk.org/pub/gtk/v1.2/ \
	http://gd.tuwien.ac.at/graphics/gimp/gtk/v1.2/
PKG_BUILD_DIR=$(BUILD_DIR)/gtk+-1.2.10

include $(INCLUDE_DIR)/package.mk

CONFIGURE_ARGS_XTRA+=--x-includes=$(STAGING_DIR)/usr/include/ \
		--x-libraries=$(STAGING_DIR)/usr/lib \
		--with-glib-prefix=$(STAGING_DIR)/usr/ \
		--enable-static=yes \
		--enable-static=yes

EXTRA_CFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
TARGET_CFLAGS+= -I$(STAGING_DIR)/usr/include/glib-1.2 -I$(STAGING_DIR)/usr/lib/glib/include
EXTRA_LDFLAGS+=-lnotimpl -lglib -lgmodule

define Package/gtk-1.2.10
  SECTION:=xorg-framework
  CATEGORY:=Xorg
  SUBMENU:=framework
  TITLE:=GTK+ 1.2.10 package
  DEPENDS:=+glib1 @DISPLAY_SUPPORT
endef

define Build/Configure
	(cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH); \
		if [ -x $(CONFIGURE_CMD) ]; then \
			$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
			$(CONFIGURE_VARS) \
			$(CONFIGURE_CMD) \
			$(CONFIGURE_ARGS_XTRA) \
			$(CONFIGURE_ARGS) ;\
		fi \
	)
endef

define Build/Compile
	$(MAKE) -C $(PKG_BUILD_DIR)
	$(MAKE) -C $(PKG_BUILD_DIR)/ install DESTDIR=$(PKG_INSTALL_DIR)
endef

define Build/InstallDev
	$(INSTALL_DIR) $(1)
	$(CP) $(PKG_INSTALL_DIR)/* $(1)/
	$(INSTALL_DIR) $(2)/bin
	mv $(1)/usr/bin/gtk-config $(2)/bin/
	$(SED) "s,libdirs=-L.*,libdirs=,g" $(2)/bin/gtk-config
endef

$(eval $(call BuildPackage,gtk-1.2.10))