2008-12-01 23:07:01 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2008-01-25 11:23:41 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-12-01 23:07:01 +00:00
|
|
|
# blogic@openwrt.org
|
|
|
|
|
2008-01-25 11:23:41 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_BASE_NAME:=libXfont
|
|
|
|
PKG_NAME:=libXfont
|
2008-09-01 21:31:52 +00:00
|
|
|
PKG_RELEASE:=2
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_VERSION:=1.3.3
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-12-01 23:07:01 +00:00
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
PKG_BUILD_DEPENDS:=xproto fontcacheproto fontsproto
|
2008-01-25 11:23:41 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
define Package/libXfont
|
|
|
|
SECTION:=xorg-lib
|
2008-01-25 11:23:41 +00:00
|
|
|
CATEGORY:=Xorg
|
2008-11-16 19:31:42 +00:00
|
|
|
SUBMENU:=lib
|
2008-12-01 23:07:01 +00:00
|
|
|
DEPENDS:= +zlib +xtrans +libfontenc +libfreetype
|
2008-11-16 19:31:42 +00:00
|
|
|
TITLE:=libXfont
|
2008-01-25 11:23:41 +00:00
|
|
|
URL:=http://xorg.freedesktop.org/
|
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
CONFIGURE_ARGS += --enable-malloc0returnsnull --without-xcb
|
|
|
|
|
2008-01-25 11:23:41 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(call $(PKG_NAME)/Compile)
|
|
|
|
make -C $(PKG_BUILD_DIR)
|
|
|
|
DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) install
|
2008-11-16 19:31:42 +00:00
|
|
|
find $(PKG_INSTALL_DIR) -name *.la | xargs rm -rf
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
define Package/libXfont/install
|
2008-01-25 11:23:41 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
2008-11-16 19:31:42 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)/
|
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
$(eval $(call BuildPackage,libXfont))
|