lars c77edf9821 Merge menuconfig Xorg libs and libraries section.
git-svn-id: svn://svn.openwrt.org/openwrt/packages@13952 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-01-09 17:10:38 +00:00

67 lines
1.4 KiB
Makefile

#
# Copyright (C) 2007-2008 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:=libXt
PKG_RELEASE:=4
PKG_VERSION:=1.0.5
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
PKG_MD5SUM:=f3bdd67785ace8cd0b23249e9d8c9975
PKG_FIXUP:=libtool
PKG_INSTALL:=1
PKG_BUILD_DEPENDS:=xproto kbproto
include $(INCLUDE_DIR)/package.mk
define Package/libXt
SECTION:=xorg-lib
CATEGORY:=Xorg
SUBMENU:=libraries
DEPENDS:=+libSM +libX11
TITLE:=libXt
URL:=http://xorg.freedesktop.org/
endef
define Build/Configure
$(call Build/Configure/Default, \
--enable-malloc0returnsnull \
--without-xcb \
)
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)/util HOSTCC=$(HOSTCC)
$(call Build/Compile/Default)
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/}
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,a,la} \
$(1)/usr/lib/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
$(1)/usr/lib/pkgconfig/
$(INSTALL_DATA) \
$(PKG_INSTALL_DIR)/usr/include/X11/* \
$(1)/usr/include/X11/
endef
define Package/libXt/install
$(INSTALL_DIR) $(1)/usr/lib
$(CP) \
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
$(1)/usr/lib/
endef
$(eval $(call BuildPackage,libXt))