diff --git a/packages/sysutils/remote/xwiimote/build b/packages/sysutils/remote/xwiimote/build deleted file mode 100755 index 4b468dd6fb..0000000000 --- a/packages/sysutils/remote/xwiimote/build +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -cd $PKG_BUILD - -make -C tools diff --git a/packages/sysutils/remote/xwiimote/install b/packages/sysutils/remote/xwiimote/install deleted file mode 100755 index 5df7c4e0d6..0000000000 --- a/packages/sysutils/remote/xwiimote/install +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -. config/options $1 - -mkdir -p $INSTALL/usr/bin - cp $PKG_BUILD/tools/xwiidump $INSTALL/usr/bin - cp $PKG_BUILD/tools/xwiishow $INSTALL/usr/bin - -mkdir -p $INSTALL/usr/lib - cp $PKG_BUILD/lib/libxwiimote.so* $INSTALL/usr/lib - -mkdir -p $INSTALL/usr/share/X11/xorg.conf.d - cp $PKG_BUILD/res/50-xorg-disable-wiimote.conf $INSTALL/usr/share/X11/xorg.conf.d - diff --git a/packages/sysutils/remote/xwiimote/meta b/packages/sysutils/remote/xwiimote/meta deleted file mode 100644 index 5d16eebbbd..0000000000 --- a/packages/sysutils/remote/xwiimote/meta +++ /dev/null @@ -1,36 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv) -# -# This Program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This Program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with OpenELEC.tv; see the file COPYING. If not, write to -# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. -# http://www.gnu.org/copyleft/gpl.html -################################################################################ - -PKG_NAME="xwiimote" -PKG_VERSION="0b79d97" -PKG_REV="1" -PKG_ARCH="any" -PKG_LICENSE="GPL" -PKG_SITE="https://github.com/dvdhrm/xwiimote" -PKG_URL="$DISTRO_SRC/$PKG_NAME-$PKG_VERSION.tar.xz" -PKG_DEPENDS="systemd bluez" -PKG_BUILD_DEPENDS="toolchain dbus-glib systemd bluez" -PKG_PRIORITY="optional" -PKG_SECTION="sysutils/remote" -PKG_SHORTDESC="xwiimote: Nintendo Wii Remote Linux Device Driver Tools" -PKG_LONGDESC="xwiimote contains tools and libraries related to the open source Nintendo Wii Remote linux device driver" -PKG_IS_ADDON="no" - -PKG_AUTORECONF="no" diff --git a/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch b/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch deleted file mode 100644 index a0d51e1695..0000000000 --- a/packages/sysutils/remote/xwiimote/patches/xwiimote-0b79d97-makefile.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -Naur xwiimote-0b79d97/lib/Makefile xwiimote-0b79d97.patch/lib/Makefile ---- xwiimote-0b79d97/lib/Makefile 2011-10-07 01:24:24.000000000 +0200 -+++ xwiimote-0b79d97.patch/lib/Makefile 2011-10-07 01:32:17.403217723 +0200 -@@ -4,13 +4,15 @@ - # Dedicated to the Public Domain - # - -+CC ?= gcc -+ - SFSPATH=../../misc/libmisc/libsfs - - all: libxwiimote.so - - # build xwiimote library - libxwiimote.so: event.c udev.c sfs.c xwiimote.h libsfs.h -- gcc -o $@ $^ -ludev -Wall -shared -fPIC -+ $(CC) -o $@ $^ -ludev -Wall -shared -fPIC - - # - # The copy rule is only used by maintainers to copy the most recent version of -diff -Naur xwiimote-0b79d97/tools/Makefile xwiimote-0b79d97.patch/tools/Makefile ---- xwiimote-0b79d97/tools/Makefile 2011-10-07 01:24:24.000000000 +0200 -+++ xwiimote-0b79d97.patch/tools/Makefile 2011-10-07 01:32:53.053681433 +0200 -@@ -4,6 +4,8 @@ - # Dedicated to the Public Domain - # - -+CC ?= gcc -+ - .PHONY: all clean - - all: xwiishow xwiidump -@@ -12,10 +14,10 @@ - @rm -fv xwiishow xwiidump - - xwiishow: xwiishow.c ../lib/libxwiimote.so -- gcc -o xwiishow xwiishow.c -Wall ../lib/libxwiimote.so -I../lib -+ $(CC) -o xwiishow xwiishow.c -Wall -L../lib/ -lxwiimote -I../lib - - xwiidump: xwiidump.c -- gcc -o xwiidump xwiidump.c -Wall -+ $(CC) -o xwiidump xwiidump.c -Wall - - ../lib/libxwiimote.so: - @echo Making library