diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-07-16 10:13:13 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-07-16 10:13:13 +0000 |
commit | 4ae9637a2512b2e54bcc74f07485de4b88144d17 (patch) | |
tree | 92ca5f06085857526d43f90c50ec2086da67f744 /app-accessibility | |
parent | dep/style fixes (diff) | |
download | gentoo-2-4ae9637a2512b2e54bcc74f07485de4b88144d17.tar.gz gentoo-2-4ae9637a2512b2e54bcc74f07485de4b88144d17.tar.bz2 gentoo-2-4ae9637a2512b2e54bcc74f07485de4b88144d17.zip |
Cleaning old ebuilds/patches
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-accessibility')
3 files changed, 0 insertions, 62 deletions
diff --git a/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.4 b/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.4 deleted file mode 100644 index c46db23bd331..000000000000 --- a/app-accessibility/gnopernicus/files/digest-gnopernicus-0.8.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 ec8cc57606b2568e621e6e7434a4f73b gnopernicus-0.8.4.tar.bz2 1520946 diff --git a/app-accessibility/gnopernicus/files/gnopernicus-0.8.4-brltty_fix.patch b/app-accessibility/gnopernicus/files/gnopernicus-0.8.4-brltty_fix.patch deleted file mode 100644 index e03fcdce5708..000000000000 --- a/app-accessibility/gnopernicus/files/gnopernicus-0.8.4-brltty_fix.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -NurB gnopernicus-0.8.1-orig/braille/libbrl/ttybrl.c gnopernicus-0.8.1/braille/libbrl/ttybrl.c ---- gnopernicus-0.8.1-orig/braille/libbrl/ttybrl.c 2004-03-24 22:58:23.000000000 -0500 -+++ gnopernicus-0.8.1/braille/libbrl/ttybrl.c 2004-03-24 22:58:43.000000000 -0500 -@@ -127,7 +127,11 @@ - while (brlapi_readCommand (0, &keypress) == 1) - { - /* TODO: Find a better way to map brltty commands to gnopernicus keys. */ -- switch (keypress & ~VAL_TOGGLE_MASK) -+#ifdef VAL_TOGGLE_MASK -+ switch (keypress & ~VAL_TOGGLE_MASK) -+#else -+ switch (keypress & ~VAL_SWITCHMASK) -+#endif - { - case CMD_LNUP: - sprintf(&dd.key_codes[0], "DK00"); diff --git a/app-accessibility/gnopernicus/gnopernicus-0.8.4.ebuild b/app-accessibility/gnopernicus/gnopernicus-0.8.4.ebuild deleted file mode 100644 index 1b6a0fa3fb5a..000000000000 --- a/app-accessibility/gnopernicus/gnopernicus-0.8.4.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/gnopernicus/gnopernicus-0.8.4.ebuild,v 1.13 2005/07/13 05:34:04 geoman Exp $ - -inherit eutils gnome2 - -DESCRIPTION="Software tools for blind and visually impaired in Gnome 2" -HOMEPAGE="http://www.baum.ro/gnopernicus.html" - -LICENSE="LGPL-2" -SLOT="1" -KEYWORDS="alpha amd64 hppa ~ia64 ppc sparc x86" -IUSE="ipv6 brltty" - -# libgail-gnome is only required during runtime -RDEPEND=">=gnome-base/gconf-1.1.5 - >=dev-libs/popt-1.5 - >=gnome-base/libgnome-1.102 - >=gnome-base/libgnomeui-1.106 - >=dev-libs/glib-1.3.12 - >=x11-libs/gtk+-1.3 - >=dev-libs/libxml2-2.4.6 - >=gnome-base/libglade-1.99.4 - >=gnome-extra/at-spi-1.3.11 - >=app-accessibility/gnome-speech-0.3 - >=app-accessibility/gnome-mag-0.9 - >=gnome-extra/libgail-gnome-1.0 - virtual/x11 - brltty? ( app-accessibility/brltty )" -DEPEND="${RDEPEND} - >=dev-util/intltool-0.29 - dev-util/pkgconfig - app-text/scrollkeeper" - -G2CONF="${G2CONF} --with-default-fonts-path=${D}/usr/share/fonts/default/Type1" -G2CONF="${G2CONF} $(use_enable ipv6) $(use_enable brltty)" - -DOCS="AUTHORS ChangeLog NEWS README" - -src_unpack() { - unpack ${A} - cd ${S} - # Patch to make it work with any version of brltty. - epatch ${FILESDIR}/${P}-brltty_fix.patch -} |