69086fb8e8
git-svn-id: svn://svn.openwrt.org/openwrt/packages@12522 3c298f89-4303-0410-b956-a3cf2f4a3e73
74 lines
1.9 KiB
Makefile
74 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2007 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_BASE_NAME:=libxkbfile
|
|
PKG_NAME:=libxkbfile
|
|
PKG_RELEASE:=2
|
|
PKG_VERSION:=1.0.4
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.3/src/lib/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/${PKG_NAME}-$(PKG_VERSION)/
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libxkbfile
|
|
SECTION:=xorg-libraries
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=libraries
|
|
DEPENDS:=+xorg-headers-native +util-macros +libX11 +kbproto @DISPLAY_SUPPORT
|
|
TITLE:=libxkbfile
|
|
URL:=http://xorg.freedesktop.org/
|
|
endef
|
|
|
|
ifeq (libxkbfile,libX11)
|
|
CONFIGURE_ARGS+=--without-xcb
|
|
endif
|
|
|
|
define libX11/Compile
|
|
$(MAKE_VARS) \
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src/util CFLAGS="" LDFLAGS="" CC="cc" makekeys
|
|
endef
|
|
|
|
define libXt/Compile
|
|
$(MAKE_VARS) \
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/util CFLAGS="" LDFLAGS="" CC="cc"
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call $(PKG_NAME)/Compile)
|
|
make -C $(PKG_BUILD_DIR)
|
|
mkdir -p $(PKG_INSTALL_DIR)
|
|
DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) install
|
|
find $(PKG_INSTALL_DIR) -name *.la | xargs rm -rf
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, --enable-malloc0returnsnull)
|
|
endef
|
|
|
|
define Package/libxkbfile/install/Default
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
find $(PKG_INSTALL_DIR)/usr/lib/ -name lib*so* | $(XARGS) -i -t cp -P {} $(1)/usr/lib
|
|
endef
|
|
|
|
define Package/libxkbfile/install
|
|
$(call Package/libxkbfile/install/Default,$(1))
|
|
endef
|
|
|
|
define Package/libXaw/install
|
|
$(call Package/libxkbfile/install/Default,$(1))
|
|
cd $(1)/usr/lib; rm -f libXaw.so.7 libXaw.so.6; ln -s libXaw7.so.7.0.0 libXaw.so.7; ln -s libXaw6.so.6.0.1 libXaw.so.6
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,libxkbfile))
|