From 3232f9d90114778cb8d38cc1bc8477435dc65259 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sat, 28 Feb 2009 14:36:14 +0100 Subject: initial commit --- btnx/PKGBUILD | 32 ++++++++++++++++++++++++++++++++ btnx/btnx | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ btnx/makefile.patch | 11 +++++++++++ 3 files changed, 95 insertions(+) create mode 100644 btnx/PKGBUILD create mode 100755 btnx/btnx create mode 100644 btnx/makefile.patch (limited to 'btnx') diff --git a/btnx/PKGBUILD b/btnx/PKGBUILD new file mode 100644 index 0000000..d81c0a4 --- /dev/null +++ b/btnx/PKGBUILD @@ -0,0 +1,32 @@ +# Maintainer: Florian Pritz +# Contributor: Graziano Giuliani + +pkgname=btnx +pkgver=0.4.11 +pkgrel=3 +pkgdesc="Button Extension- a GNU/GPL mouse tool for GNU/Linux" +arch=('i686' 'x86_64') +url="http://www.ollisalonen.com/btnx/" +license=('GPL') +groups=(daemons) +depends=('btnx-config' 'libdaemon') +options=('!libtool' '!emptydirs') +source=(http://www.ollisalonen.com/btnx/${pkgname}-${pkgver}.tar.gz + btnx) +md5sums=('8216a84f8fe873ddc97afbfccfc2d254' + '4c9ff4950bc766002e34e53bffc61521') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./configure || return 1 + make || return 1 + + mkdir -p ${pkgdir}/etc/btnx + + install -Dm 755 src/btnx ${pkgdir}/usr/sbin/btnx || return 1 + install -Dm 644 data/events -p ${pkgdir}/etc/btnx/events || return 1 + install -Dm 755 ${srcdir}/btnx ${pkgdir}/etc/rc.d/btnx || return 1 +} + +# vim:set ts=2 sw=2 et: diff --git a/btnx/btnx b/btnx/btnx new file mode 100755 index 0000000..2c3534c --- /dev/null +++ b/btnx/btnx @@ -0,0 +1,52 @@ +#! /bin/bash + +# general config +. /etc/rc.conf +. /etc/rc.d/functions + +PID=`pidof -o %PPID /usr/sbin/btnx` +case "$1" in + start) + stat_busy "Starting btnx mouse daemon" + modprobe uinput + [ -z "$PID" ] && /usr/sbin/btnx -b -l > /dev/null + if [ $? -gt 0 ] + then + stat_fail + else + add_daemon btnx + stat_done + fi + ;; + stop) + stat_busy "Stopping btnx mouse daemon" + [ ! -z "$PID" ] && kill $PID &> /dev/null + if [ $? -gt 0 ]; then + stat_fail + else + rm -f /var/run/btnx.pid + rm_daemon btnx + stat_done + fi + ;; + reload) + stat_busy "Reloading btnx mouse daemon configuration" + if [ "$PID" ] + then + kill -HUP $PID 2> /dev/null + stat_done + else + stat_fail + fi + ;; + restart) + $0 stop + sleep 1 + $0 start + ;; + *) + echo "usage: $0 {start|stop|restart|reload}" + ;; +esac + +exit 0 diff --git a/btnx/makefile.patch b/btnx/makefile.patch new file mode 100644 index 0000000..65c0691 --- /dev/null +++ b/btnx/makefile.patch @@ -0,0 +1,11 @@ +--- Makefile 2008-01-03 13:13:41.000000000 +0100 ++++ Makefile.new 2008-01-06 16:01:37.466242459 +0100 +@@ -1,8 +1,4 @@ + +-CC = gcc +-CFLAGS = -Wall -O2 #-g +-LFLAGS = +- + DEPS = uinput.h btnx.h config_parser.h device.h revoco.h + OBJ = btnx.o uinput.o config_parser.o device.o revoco.o + BIN = btnx -- cgit v1.2.3-24-g4f1b