input-utils: update to 1.1

- change upstream URL
- update to 1.1 release
- delete obsolete patches (they are in upstream)

patch 001
- fix compile on sys with sh->dash (Debian,Ubuntu)
Error:
Make.config:1: *** empty variable name.  Stop.
Reason: echo -e in mk/Autoconf.mk

patch 002:
- use path of Linux headers from environment (INPUT)
for generating files with name.sh
Error depending on Kernel:
In file included from input.c:48:0:
KEY.h:243:4: error: 'KEY_WWAN' undeclared here (not in a function)
  [ KEY_WWAN         ] = "WWAN",

fixes https://dev.openwrt.org/ticket/14028

unsure if the right header is included
compile tested

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
Signed-off-by: Florian Fainelli <florian@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@40725 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2014-05-08 00:57:45 +00:00
parent e516ed9266
commit 0f909ece6b
5 changed files with 29 additions and 259 deletions

View File

@ -5,15 +5,16 @@
# See /LICENSE for more information.
include $(TOPDIR)/rules.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=input-utils
PKG_VERSION:=20081014-101501
PKG_RELEASE:=2
PKG_VERSION:=1.1
PKG_RELEASE:=1
PKG_BUILD_DIR:=$(BUILD_DIR)/input/
PKG_BUILD_DIR:=$(BUILD_DIR)/input-$(PKG_VERSION)/
PKG_SOURCE:=input-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://dl.bytesex.org/cvs-snapshots/
PKG_MD5SUM:=a6854dc5218301b67324b483d26f1bee
PKG_SOURCE_URL:=https://www.kraxel.org/cgit/input/snapshot
PKG_MD5SUM:=592b1b45d9d891725f7793999aa52f31
include $(INCLUDE_DIR)/package.mk
@ -31,6 +32,7 @@ define Build/Compile
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
STRIP="true" \
INPUT="$(LINUX_DIR)/include/uapi/linux/input.h" \
build
endef