2008-12-14 22:53:30 +00:00
|
|
|
#
|
2010-02-19 00:14:01 +00:00
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
2007-09-25 20:23:15 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-12-14 22:53:30 +00:00
|
|
|
|
2007-09-25 20:23:15 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=xf86-input-keyboard
|
2009-10-31 00:24:09 +00:00
|
|
|
PKG_VERSION:=1.4.0
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_RELEASE:=2
|
2008-12-16 21:15:33 +00:00
|
|
|
|
2009-10-31 00:24:09 +00:00
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/individual/driver
|
2007-09-25 20:23:15 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2009-10-31 00:24:09 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/Xorg/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
PKG_MD5SUM:=fd17158ffeacecc8cc670604460cb98b
|
|
|
|
|
2008-12-14 22:53:30 +00:00
|
|
|
PKG_BUILD_DEPENDS:=randrproto inputproto kbproto xproto
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_FIXUP:=libtool
|
2009-10-31 00:24:09 +00:00
|
|
|
PKG_INSTALL:=1
|
2007-09-25 20:23:15 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2009-10-31 00:24:09 +00:00
|
|
|
-include $(if $(DUMP),,$(STAGING_DIR)/mk/xorg-driver.mk)
|
2008-12-14 22:53:30 +00:00
|
|
|
|
2007-09-25 20:23:15 +00:00
|
|
|
define Package/xf86-input-keyboard
|
|
|
|
SECTION:=xorg-driver
|
|
|
|
CATEGORY:=Xorg
|
|
|
|
SUBMENU:=driver
|
2008-12-14 22:53:30 +00:00
|
|
|
DEPENDS:=+xserver-xorg
|
2007-09-25 20:23:15 +00:00
|
|
|
TITLE:=xf86-input-keyboard
|
|
|
|
URL:=http://xorg.freedesktop.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/xf86-input-keyboard/install
|
2008-12-14 22:53:30 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/xorg/modules/input
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/xorg/modules/input/kbd_drv.so \
|
|
|
|
$(1)/usr/lib/xorg/modules/input/
|
2007-09-25 20:23:15 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,xf86-input-keyboard))
|