mirko 986eb4eafc - update to Xorg X11R7.4 and reorganization of the xorg-section
- added tslib
 - added e17 and related efl-libs


git-svn-id: svn://svn.openwrt.org/openwrt/packages@13238 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-11-16 19:31:42 +00:00

45 lines
1.1 KiB
Makefile

#
# Copyright (C) 2006 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
# $Id: Makefile 8299 2007-08-01 12:32:53Z nico $
include $(TOPDIR)/rules.mk
PKG_NAME:=font-util
PKG_VERSION:=1.0.1
PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.3/src/font
include $(INCLUDE_DIR)/package.mk
define Package/font-util
SECTION:=xorg-font
CATEGORY:=Xorg
SUBMENU:=app
TITLE:=misc tool to generate x fonts
DEPENDS:=+xorg-server @DISPLAY_SUPPORT
endef
define Build/Configure
cd $(PKG_BUILD_DIR)/; ./configure
endef
define Build/Compile
$(MAKE) -C $(PKG_BUILD_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) install DESTDIR="$(PKG_INSTALL_DIR)"
endef
define Build/InstallDev
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(1)/usr/lib/X11 $(2)/bin
$(INSTALL_DATA) $(PKG_INSTALL_DIR)/usr/local/lib/pkgconfig/fontutil.pc $(1)/usr/lib/pkgconfig
$(CP) $(PKG_INSTALL_DIR)/usr/local/lib/X11/* $(1)/usr/lib/X11/
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/local/bin/* $(2)/bin/
endef
$(eval $(call BuildPackage,font-util))