123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- %{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
- Summary: A free, open source, flexible, and extensible screen reader
- Name: orca
- Version: 3.8.2
- Release: 1%{?_dist_release}
- Group: User Interface/Desktops
- License: LGPLv2+
- URL: http://projects.gnome.org/orca/
- Source0: http://ftp.gnome.org/pub/GNOME/sources/%{name}/3.8/%{name}-%{version}.tar.xz
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: gtk3-devel >= 3.1.91
- BuildRequires: pycairo-devel
- BuildRequires: pygobject3-devel >= 2.90.3
- BuildRequires: pyxdg
- BuildRequires: at-spi2-core-devel >= 2.1.92
- BuildRequires: python-brlapi
- BuildRequires: brlapi-devel
- BuildRequires: brltty
- BuildRequires: speech-dispatcher-python
- BuildRequires: yelp-tools
- Requires: python-brlapi
- Requires: speech-dispatcher
- Requires: speech-dispatcher-python
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: Takemikaduchi
- %description
- Orca is a free, open source, flexible, and extensible screen reader
- that provides access to the graphical desktop via user-customizable
- combinations of speech, braille, and/or magnification.
- Orca works with applications and toolkits that support the assistive
- technology service provider interface (AT-SPI), which is the primary
- assistive technology infrastructure for the Solaris and Linux
- operating environments. Applications and toolkits supporting the
- AT-SPI include the GNOME GTK+ toolkit, the Java platform's Swing
- toolkit, OpenOffice, and Mozilla. AT-SPI support for the KDE Qt
- toolkit is currently being pursued.
- %prep
- %setup -q
- %build
- sed -i "s|3.3|2.7|" configure.ac
- autoreconf -if
- intltoolize --force --copy
- %configure --disable-static
- make V=0
- %install
- rm -rf $RPM_BUILD_ROOT
- make DESTDIR=$RPM_BUILD_ROOT install INSTALL="%{__install} -p -c"
- find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} \;
- %find_lang %{name} --all-name --with-gnome
- %clean
- rm -rf $RPM_BUILD_ROOT
- %post
- touch --no-create %{_datadir}/icons/hicolor
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- gtk-update-icon-cache -q %{_datadir}/icons/hicolor
- fi
- %postun
- touch --no-create %{_datadir}/icons/hicolor
- if [ -x /usr/bin/gtk-update-icon-cache ]; then
- gtk-update-icon-cache -q %{_datadir}/icons/hicolor
- fi
- %files -f %{name}.lang
- %defattr(-,root,root,-)
- %doc ChangeLog AUTHORS COPYING NEWS README
- %{_sysconfdir}/xdg/autostart/orca-autostart.desktop
- %{_bindir}/%{name}
- %{python_sitearch}/%{name}/*
- %{_datadir}/applications/%{name}.desktop
- %{_datadir}/icons/hicolor/*/apps/*
- %{_datadir}/%{name}
- %{_mandir}/man1/%{name}.1.gz
- %changelog
- * Mon Jul 15 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.2-1
- - new upstream release
- * Sun Apr 21 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.8.1-1
- - new upstream release
- * Thu Nov 15 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.3-1
- - new upstream release
- * Tue Oct 16 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.1-1
- - new upstream release
- * Sun Sep 30 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.6.0-1
- - new upstream release
- - change BuildRequires: yelp-tools instead of gnome-docu-utils
- * Sun May 20 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.2-1
- - new upstream release
- * Sat Apr 28 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.4.1-1
- - new upstream release
- - add BuildRequires: pycairo-devel, pyxdg
- * Sun Feb 19 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-2
- - rebuild with python-2.7.2
- * Tue Nov 22 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.2-1
- - new upstream release
- * Fri Nov 04 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.1-1
- - initial build for Vine Linux
|