summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Hubbs <williamh@gentoo.org>2008-02-08 14:13:46 +0000
committerWilliam Hubbs <williamh@gentoo.org>2008-02-08 14:13:46 +0000
commit4ff336e8b160f0358020d98a650dc1c57cb9c62b (patch)
tree1e318625c9fb8b22b4afef3013d2d0be9c5dddc6 /app-accessibility/brltty
parentStable for HPPA (bug #209048). (diff)
downloadgentoo-2-4ff336e8b160f0358020d98a650dc1c57cb9c62b.tar.gz
gentoo-2-4ff336e8b160f0358020d98a650dc1c57cb9c62b.tar.bz2
gentoo-2-4ff336e8b160f0358020d98a650dc1c57cb9c62b.zip
Removed old version.
(Portage version: 2.1.4.1)
Diffstat (limited to 'app-accessibility/brltty')
-rw-r--r--app-accessibility/brltty/ChangeLog5
-rw-r--r--app-accessibility/brltty/brltty-3.8.ebuild54
2 files changed, 4 insertions, 55 deletions
diff --git a/app-accessibility/brltty/ChangeLog b/app-accessibility/brltty/ChangeLog
index 0e4c9ad55346..dc6db05b7d66 100644
--- a/app-accessibility/brltty/ChangeLog
+++ b/app-accessibility/brltty/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-accessibility/brltty
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/ChangeLog,v 1.75 2008/02/08 12:45:25 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/ChangeLog,v 1.76 2008/02/08 14:13:46 williamh Exp $
+
+ 08 Feb 2008; William Hubbs <williamh@gentoo.org> -brltty-3.8.ebuild:
+ Removed old version.
08 Feb 2008; Santiago M. Mola <coldwind@gentoo.org> brltty-3.9.ebuild:
amd64 stable wrt #208536
diff --git a/app-accessibility/brltty/brltty-3.8.ebuild b/app-accessibility/brltty/brltty-3.8.ebuild
deleted file mode 100644
index ee2f427f137c..000000000000
--- a/app-accessibility/brltty/brltty-3.8.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-accessibility/brltty/brltty-3.8.ebuild,v 1.10 2007/12/26 22:11:25 phreak Exp $
-
-inherit eutils multilib toolchain-funcs
-
-DESCRIPTION="Daemon that provides access to the Linux/Unix console for a blind person"
-HOMEPAGE="http://mielke.cc/brltty/"
-SRC_URI="http://mielke.cc/brltty/releases/${P}.tar.gz"
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 x86"
-IUSE="doc gpm usb X"
-
-DEPEND=" gpm? ( >=sys-libs/gpm-1.20 )
- X? ( x11-libs/libXaw )"
-
-src_compile() {
- econf --prefix=/ \
- $(use_enable gpm) \
- $(use_with X x) \
- $(use_enable usb usb-support) \
- --includedir=/usr/include || die
- emake || die
-}
-
-src_install() {
- make INSTALL_PROGRAM="\${INSTALL_SCRIPT}" INSTALL_ROOT="${D}" install || die
- TMPDIR=../../Programs scanelf -RBXr "${D}" -o /dev/null
- libdir="$(get_libdir)"
- mkdir -p "${D}"/usr/${libdir}/
- mv "${D}"/${libdir}/*.a "${D}"/usr/${libdir}/
- gen_usr_ldscript libbrlapi.so
- cd Documents
- rm *.made
- dodoc ChangeLog README* Manual.* TODO brltty.conf
- dohtml -r Manual-HTML
- newinitd "${FILESDIR}"/brltty.rc brltty
- if use doc; then
- dodoc BrlAPI.* BrlAPIref.doxy
- dohtml -r BrlAPI-HTML BrlAPIref-HTML
- fi
-}
-
-pkg_postinst() {
- elog
- elog There is a sample config file in /usr/share/doc/${P}/brltty.conf.
- elog To use this file, uncompress it into /etc/brltty
- elog
- elog To make brltty start on boot, type this command as root:
- elog
- elog rc-update add brltty boot
-}