diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2010-03-31 23:04:33 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2010-03-31 23:04:33 +0000 |
commit | 1a44e635b1003e4f68c4d9aaa21c2b5eaea7d9bd (patch) | |
tree | 95bcb12265266ccd7262abb158794f47d37803dc /app-accessibility/dasher | |
parent | Remove old KDE versions. (diff) | |
download | gentoo-2-1a44e635b1003e4f68c4d9aaa21c2b5eaea7d9bd.tar.gz gentoo-2-1a44e635b1003e4f68c4d9aaa21c2b5eaea7d9bd.tar.bz2 gentoo-2-1a44e635b1003e4f68c4d9aaa21c2b5eaea7d9bd.zip |
Version bump. Drop libglade, fix blank window with >=gtk+-2.18.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-accessibility/dasher')
-rw-r--r-- | app-accessibility/dasher/ChangeLog | 7 | ||||
-rw-r--r-- | app-accessibility/dasher/dasher-4.11.ebuild | 73 |
2 files changed, 79 insertions, 1 deletions
diff --git a/app-accessibility/dasher/ChangeLog b/app-accessibility/dasher/ChangeLog index 714db7c90d6a..cdf11d7f7443 100644 --- a/app-accessibility/dasher/ChangeLog +++ b/app-accessibility/dasher/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/dasher # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/ChangeLog,v 1.149 2010/01/17 23:22:46 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/ChangeLog,v 1.150 2010/03/31 23:04:33 eva Exp $ + +*dasher-4.11 (31 Mar 2010) + + 31 Mar 2010; Gilles Dartiguelongue <eva@gentoo.org> +dasher-4.11.ebuild: + Version bump. Drop libglade, fix blank window with >=gtk+-2.18. 17 Jan 2010; Jeroen Roovers <jer@gentoo.org> dasher-4.10.1.ebuild: Stable for HPPA (bug #281427). diff --git a/app-accessibility/dasher/dasher-4.11.ebuild b/app-accessibility/dasher/dasher-4.11.ebuild new file mode 100644 index 000000000000..0fb954126f88 --- /dev/null +++ b/app-accessibility/dasher/dasher-4.11.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/dasher/dasher-4.11.ebuild,v 1.1 2010/03/31 23:04:33 eva Exp $ + +EAPI="2" + +inherit gnome2 + +DESCRIPTION="A text entry interface, driven by continuous pointing gestures" +HOMEPAGE="http://www.inference.phy.cam.ac.uk/dasher/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" + +IUSE="accessibility cairo gnome nls" + +# The package claims to support 'qte', but it hasn't been tested. +# Any patches from someone who can test it are welcome. +# <leonardop@gentoo.org> +RDEPEND=">=dev-libs/glib-2.16 + dev-libs/expat + >=x11-libs/gtk+-2.6 + >=gnome-base/gconf-2 + x11-libs/libX11 + x11-libs/libXtst + accessibility? ( + app-accessibility/gnome-speech + >=gnome-base/libbonobo-2 + >=gnome-base/orbit-2 + >=gnome-base/libgnomeui-2 + >=gnome-extra/at-spi-1 + dev-libs/atk ) + cairo? ( >=x11-libs/gtk+-2.8 ) + gnome? ( + >=gnome-base/libgnome-2 + >=gnome-base/libgnomeui-2 )" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9 + x11-proto/xextproto + x11-proto/xproto + gnome? ( + >=app-text/gnome-doc-utils-0.3.2 + app-text/scrollkeeper ) + nls? ( >=dev-util/intltool-0.41 )" + +DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README" + +pkg_setup() { + # we might want to support japanese and chinese input at some point + # --enable-japanese + # --enable-chinese + # --enable-tilt (tilt sensor support) + + G2CONF="${G2CONF} + --disable-scrollkeeper + --with-gvfs + $(use_enable accessibility a11y) + $(use_enable accessibility speech) + $(use_with cairo) + $(use_with gnome) + $(use_enable nls)" +} + +src_prepare() { + # configure.ac has a typo for AM_GCONF_SOURCE2 + # beware if adding src_prepare + eautoreconf + gnome2_src_prepare + + # Fix intltoolize broken file, see upstream #577133 + sed "s:'\^\$\$lang\$\$':\^\$\$lang\$\$:g" -i po/Makefile.in.in \ + || die "sed 1 failed" +} |