[arch-commits] Commit in brltty/repos (6 files)
andyrtr at archlinux.org
andyrtr at archlinux.org
Mon Apr 9 13:40:40 UTC 2012
Date: Monday, April 9, 2012 @ 09:40:39
Author: andyrtr
Revision: 155930
db-move: moved brltty from [staging] to [testing] (x86_64)
Added:
brltty/repos/testing-x86_64/
brltty/repos/testing-x86_64/PKGBUILD
(from rev 155924, brltty/repos/staging-x86_64/PKGBUILD)
brltty/repos/testing-x86_64/brltty
(from rev 155924, brltty/repos/staging-x86_64/brltty)
brltty/repos/testing-x86_64/brltty.conf
(from rev 155924, brltty/repos/staging-x86_64/brltty.conf)
brltty/repos/testing-x86_64/brltty.install
(from rev 155924, brltty/repos/staging-x86_64/brltty.install)
Deleted:
brltty/repos/staging-x86_64/
----------------+
PKGBUILD | 47 ++++++++++++++++++++++++++++++++++++++
brltty | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
brltty.conf | 2 +
brltty.install | 20 ++++++++++++++++
4 files changed, 137 insertions(+)
Copied: brltty/repos/testing-x86_64/PKGBUILD (from rev 155924, brltty/repos/staging-x86_64/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,47 @@
+# $Id$
+# Maintainer:
+# Contributor: Jan de Groot <jgc at archlinux.org>
+# Contributor: Giovanni Scafora <giovanni at archlinux.org>
+
+pkgname=brltty
+pkgver=4.3
+pkgrel=5
+pkgdesc="Braille display driver for Linux/Unix"
+arch=('i686' 'x86_64')
+url="http://mielke.cc/brltty"
+license=('GPL' 'LGPL')
+depends=('libxaw' 'at-spi2-core' 'gpm' 'icu' 'python2' 'tcl' 'atk' 'libxtst' 'pyrex')
+makedepends=('bluez')
+optdepends=('bluez: bluetooth support')
+backup=(etc/brltty.conf etc/conf.d/brltty.conf)
+options=('!makeflags' '!emptydirs')
+install=brltty.install
+source=(http://mielke.cc/$pkgname/releases/$pkgname-$pkgver.tar.gz
+ 'brltty'
+ 'brltty.conf')
+md5sums=('5ada573f88df32b6150db3b9a620e20b'
+ '831ebaf0c56091702929c68805d20c4f'
+ 'a8ab8b3dd059e96e1734bc9cdcf844fc')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --mandir=/usr/share/man \
+ --localstatedir=/var \
+ --with-screen-driver=a2 \
+ --enable-gpm \
+ --disable-java-bindings \
+ --disable-caml-bindings \
+ PYTHON=/usr/bin/python2
+
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make INSTALL_ROOT="$pkgdir" install
+ install -D -m755 "$srcdir/brltty" "$pkgdir/etc/rc.d/brltty"
+ install -D -m644 "$srcdir/brltty.conf" "$pkgdir/etc/conf.d/brltty.conf"
+ install -D -m644 Documents/brltty.conf "$pkgdir/etc/brltty.conf"
+}
Copied: brltty/repos/testing-x86_64/brltty (from rev 155924, brltty/repos/staging-x86_64/brltty)
===================================================================
--- testing-x86_64/brltty (rev 0)
+++ testing-x86_64/brltty 2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,68 @@
+#!/bin/bash
+
+daemon_name=brltty
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+. /etc/conf.d/$daemon_name.conf
+
+get_pid() {
+ pidof -o %PPID $daemon_name
+}
+
+case "$1" in
+ start)
+ stat_busy "Starting $daemon_name daemon"
+
+ PID=$(get_pid)
+ if [ -z "$PID" ]; then
+ [ -f /var/run/$daemon_name.pid ] && rm -f /var/run/$daemon_name.pid
+ # RUN
+ $daemon_name $brltty_args
+ #
+ if [ $? -gt 0 ]; then
+ stat_fail
+ exit 1
+ else
+ echo $(get_pid) > /var/run/$daemon_name.pid
+ add_daemon $daemon_name
+ stat_done
+ fi
+ else
+ stat_fail
+ exit 1
+ fi
+ ;;
+
+ stop)
+ stat_busy "Stopping $daemon_name daemon"
+ PID=$(get_pid)
+ # KILL
+ [ ! -z "$PID" ] && kill $PID &> /dev/null
+ #
+ if [ $? -gt 0 ]; then
+ stat_fail
+ exit 1
+ else
+ rm -f /var/run/$daemon_name.pid &> /dev/null
+ rm_daemon $daemon_name
+ stat_done
+ fi
+ ;;
+
+ restart)
+ $0 stop
+ sleep 3
+ $0 start
+ ;;
+
+ status)
+ stat_busy "Checking $daemon_name status";
+ ck_status $daemon_name
+ ;;
+
+ *)
+ echo "usage: $0 {start|stop|restart|status}"
+esac
+
+exit 0
Copied: brltty/repos/testing-x86_64/brltty.conf (from rev 155924, brltty/repos/staging-x86_64/brltty.conf)
===================================================================
--- testing-x86_64/brltty.conf (rev 0)
+++ testing-x86_64/brltty.conf 2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,2 @@
+# Specify any arguments to pass to brltty here.
+brltty_args=""
\ No newline at end of file
Copied: brltty/repos/testing-x86_64/brltty.install (from rev 155924, brltty/repos/staging-x86_64/brltty.install)
===================================================================
--- testing-x86_64/brltty.install (rev 0)
+++ testing-x86_64/brltty.install 2012-04-09 13:40:39 UTC (rev 155930)
@@ -0,0 +1,20 @@
+post_install () {
+ getent group brlapi &>/dev/null || groupadd -r brlapi
+ if [ ! -e /etc/brlapi.key ]; then
+ mcookie >/etc/brlapi.key
+ chmod 0640 /etc/brlapi.key
+ chgrp brlapi /etc/brlapi.key
+ echo "Please add your user to the brlapi group."
+ fi
+}
+
+post_upgrade () {
+ post_install
+}
+
+post_remove () {
+ getent group brlapi >/dev/null 2>&1 && groupdel brlapi
+ if [ -e /etc/brlapi.key ]; then
+ rm -f /etc/brlapi.key
+ fi
+}
More information about the arch-commits
mailing list