64199fbb83
git-svn-id: svn://svn.openwrt.org/openwrt/packages@19821 3c298f89-4303-0410-b956-a3cf2f4a3e73
84 lines
1.8 KiB
Makefile
84 lines
1.8 KiB
Makefile
#
|
|
# Copyright (C) 2007-2009 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=libX11
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=1.3.2
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/individual/lib/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/Xorg/$(PKG_NAME)-$(PKG_VERSION)/
|
|
PKG_MD5SUM:=001d780829f936e34851ef7cd37b4dfd
|
|
|
|
PKG_FIXUP:=libtool
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_DEPENDS:=xproto xextproto xf86bigfontproto kbproto inputproto \
|
|
xtrans xcmiscproto bigreqsproto
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/libX11
|
|
SECTION:=xorg-lib
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=libraries
|
|
DEPENDS:=+libXdmcp +libXau @FEATURE_drawing-backend_libX11
|
|
TITLE:=libX11
|
|
URL:=http://xorg.freedesktop.org/
|
|
endef
|
|
|
|
define Feature/libX11
|
|
TARGET_NAME:=drawing-backend
|
|
TARGET_TITLE:=Drawing Backend
|
|
NAME:=libX11
|
|
endef
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default, \
|
|
--enable-malloc0returnsnull \
|
|
--enable-xf86bigfont \
|
|
--without-xcb \
|
|
--without-launchd \
|
|
)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(MAKE) -C $(PKG_BUILD_DIR)/src/util \
|
|
CC="$(HOSTCC)" \
|
|
CFLAGS="$(HOST_CFLAGS)" \
|
|
CPPFLAGS="$(HOST_CPPFLAGS)" \
|
|
LDFLAGS="$(HOST_LDFLAGS)"
|
|
|
|
$(call Build/Compile/Default)
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11}
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.{so*,la,a} \
|
|
$(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/libX11/install
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
$(CP) \
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
$(1)/usr/lib/
|
|
endef
|
|
|
|
$(eval $(call Feature,libX11))
|
|
$(eval $(call BuildPackage,libX11))
|