2008-12-01 23:07:01 +00:00
|
|
|
#
|
2009-10-31 00:12:52 +00:00
|
|
|
# Copyright (C) 2007-2009 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
|
|
|
|
2008-01-25 11:23:41 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_NAME:=libXfont
|
2009-10-31 00:12:52 +00:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_VERSION:=1.4.1
|
2008-12-16 16:32:06 +00:00
|
|
|
|
2009-10-31 00:12:52 +00:00
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/individual/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-10-31 00:12:52 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/Xorg/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
PKG_MD5SUM:=4f2bed2a2be82e90a51a24bb3a22cdf0
|
|
|
|
|
2008-12-16 16:32:06 +00:00
|
|
|
PKG_FIXUP:=libtool
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_BUILD_DEPENDS:=xproto fontcacheproto fontsproto xtrans
|
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
|
2009-01-09 17:10:38 +00:00
|
|
|
SUBMENU:=libraries
|
2008-12-16 16:32:06 +00:00
|
|
|
DEPENDS:=+zlib +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
|
|
|
|
|
2009-12-29 19:03:12 +00:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--disable-devel-docs \
|
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
2008-12-16 16:32:06 +00:00
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/fonts}
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-12-16 16:32:06 +00:00
|
|
|
$(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/fonts/* \
|
|
|
|
$(1)/usr/include/X11/fonts/
|
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
|
2009-01-04 00:06:33 +00:00
|
|
|
$(CP) \
|
2008-12-16 16:32:06 +00:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.so* \
|
|
|
|
$(1)/usr/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
$(eval $(call BuildPackage,libXfont))
|