1120328d15
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9173 3c298f89-4303-0410-b956-a3cf2f4a3e73
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
#
|
|
# 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:=gtk2.8.20
|
|
PKG_VERSION:=2.8.20
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=gtk+-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:= http://ftp.gnome.org/pub/gnome/sources/gtk+/2.8/
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/gtk+-2.8.20
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
EXTRA_CFLAGS+=-I$(STAGING_DIR)/usr/lib/libintl/include/
|
|
|
|
EXTRA_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/usr/lib/libintl/lib/ -L$(STAGING_DIR)/usr/lib/libiconv/lib/ -L$(STAGING_DIR)/usr/lib/
|
|
|
|
define Package/gtk-2.8.20
|
|
SECTION:=xorg-framework
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=framework
|
|
TITLE:=GTK+ 2.8.20 package
|
|
DEPENDS:=+cairo +pango +libjpeg +atk +libtiff
|
|
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)/usr/{lib/pkgconfig,include}
|
|
$(CP) -r $(PKG_INSTALL_DIR)/usr/include/* $(1)/include/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.{la,so.*} $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* $(1)/usr/lib/pkgconfig/
|
|
$(SED) "s,"libdir\=\'/usr/lib\'",libdir='$(1)/usr/lib\'," $(1)/usr/lib/lib{gtk,gdk}*-2.0.la
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,gtk-2.8.20))
|