summaryrefslogtreecommitdiff
path: root/community/cwiid
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
committerParabola <dev@list.parabolagnulinux.org>2012-04-03 14:54:55 +0000
commitb618c3d0693aec564c6746238fd05d94e31d3b76 (patch)
tree4a4834f3097bba25dba1adeba4324080c1b4bf7b /community/cwiid
parent8cb5196780766f47b595410eed8ddbee2e8add08 (diff)
Tue Apr 3 14:54:45 UTC 2012
Diffstat (limited to 'community/cwiid')
-rw-r--r--community/cwiid/PKGBUILD43
-rw-r--r--community/cwiid/bluez4.patch11
-rw-r--r--community/cwiid/cwiid.install10
3 files changed, 0 insertions, 64 deletions
diff --git a/community/cwiid/PKGBUILD b/community/cwiid/PKGBUILD
deleted file mode 100644
index ec59807bb..000000000
--- a/community/cwiid/PKGBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# $Id: PKGBUILD 63522 2012-02-05 11:53:14Z ibiru $
-# Maintainer: Ray Rashif <schiv@archlinux.org>
-# Contributor: Wieland Hoffmann <the_mineo@web.de>
-# Contributor: Birger Moellering <bmoellering@googlemail.com>
-
-pkgname=cwiid
-pkgver=0.6.00
-pkgrel=10
-pkgdesc="Linux Nintendo Wiimote interface"
-arch=('i686' 'x86_64')
-url="http://abstrakraft.org/cwiid"
-depends=('bluez' 'gtk2' 'python2')
-makedepends=('flex' 'bison')
-license=('GPL')
-install=cwiid.install
-source=("http://abstrakraft.org/cwiid/downloads/$pkgname-$pkgver.tgz"
- 'bluez4.patch')
-md5sums=('8d574afdeedc5e5309c87a72d744316a'
- '19b288723d1f2b97a3e5288ab9de3313')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # bluez v4 compatibility
- patch -Np1 -i "$srcdir/bluez4.patch"
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --disable-ldconfig \
- --with-python=python2
-
- LDFLAGS+="$(pkg-config --libs bluez) -lrt -pthread" make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
-
- make DESTDIR="$pkgdir" install
-
- chmod 644 "$pkgdir/usr/lib/libcwiid.a"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/cwiid/bluez4.patch b/community/cwiid/bluez4.patch
deleted file mode 100644
index dbbc790c5..000000000
--- a/community/cwiid/bluez4.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- cwiid-0.6.00.orig/libcwiid/bluetooth.c.old 2008-09-30 16:52:55.000000000 -0500
-+++ cwiid-0.6.00.orig/libcwiid/bluetooth.c 2008-09-30 16:53:19.000000000 -0500
-@@ -122,7 +122,7 @@
- }
-
- /* timeout (10000) in milliseconds */
-- if (hci_remote_name(sock, &dev_list[i].bdaddr, BT_NAME_LEN,
-+ if (hci_read_remote_name(sock, &dev_list[i].bdaddr, BT_NAME_LEN,
- (*bdinfo)[bdinfo_count].name, 10000)) {
- cwiid_err(NULL, "Bluetooth name read error");
- err = 1;
diff --git a/community/cwiid/cwiid.install b/community/cwiid/cwiid.install
deleted file mode 100644
index 05e698be7..000000000
--- a/community/cwiid/cwiid.install
+++ /dev/null
@@ -1,10 +0,0 @@
-post_install() {
- echo "==> In order to use wminput ensure you load the uinput kernel"
- echo "==> module and have assigned correct access to /dev/uinput"
-}
-
-post_upgrade() {
- post_install
-}
-
-# vim:set ts=2 sw=2 et: