diff options
author | 2010-12-17 04:27:35 +0000 | |
---|---|---|
committer | 2010-12-17 04:27:35 +0000 | |
commit | 4bd1e34d9a290c8826b0aec569f2d09d34394a55 (patch) | |
tree | 0e005d37cefa9e5f3083a03e5415f3b6fcfdb0e8 /app-accessibility | |
parent | Version bump to fix bugs 311441, 327953 (diff) | |
download | gentoo-2-4bd1e34d9a290c8826b0aec569f2d09d34394a55.tar.gz gentoo-2-4bd1e34d9a290c8826b0aec569f2d09d34394a55.tar.bz2 gentoo-2-4bd1e34d9a290c8826b0aec569f2d09d34394a55.zip |
rev bump for bug #335372
(Portage version: 2.2.0_alpha9/cvs/Linux i686)
Diffstat (limited to 'app-accessibility')
-rw-r--r-- | app-accessibility/nfbtrans/ChangeLog | 9 | ||||
-rw-r--r-- | app-accessibility/nfbtrans/nfbtrans-7.74-r1.ebuild | 42 |
2 files changed, 49 insertions, 2 deletions
diff --git a/app-accessibility/nfbtrans/ChangeLog b/app-accessibility/nfbtrans/ChangeLog index 64d7d76cb59a..e8f28051335b 100644 --- a/app-accessibility/nfbtrans/ChangeLog +++ b/app-accessibility/nfbtrans/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-accessibility/nfbtrans -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/nfbtrans/ChangeLog,v 1.14 2009/06/15 21:12:04 williamh Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/nfbtrans/ChangeLog,v 1.15 2010/12/17 04:27:35 williamh Exp $ + +*nfbtrans-7.74-r1 (16 Dec 2010) + + 16 Dec 2010; William Hubbs <williamh@gentoo.org> +nfbtrans-7.74-r1.ebuild: + rev bump for bug #335372 15 Jun 2009; William Hubbs <williamh@gentoo.org> nfbtrans-7.74.ebuild, +files/nfbtrans-7.74-getline-fix.patch: diff --git a/app-accessibility/nfbtrans/nfbtrans-7.74-r1.ebuild b/app-accessibility/nfbtrans/nfbtrans-7.74-r1.ebuild new file mode 100644 index 000000000000..15abd401204d --- /dev/null +++ b/app-accessibility/nfbtrans/nfbtrans-7.74-r1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/nfbtrans/nfbtrans-7.74-r1.ebuild,v 1.1 2010/12/17 04:27:35 williamh Exp $ + +EAPI="3" + +inherit eutils + +DESCRIPTION="braille translator from the National Federation of the Blind" +HOMEPAGE="http://www.nfb.org/nfb/nfbtrans.asp" +SRC_URI="http://www.nfb.org/Images/nfb/Products_Technology/nfbtr774.zip" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=" >=app-arch/unzip-5.50-r2" +RDEPEND="" + +S=${WORKDIR} + +src_prepare() { + mv MAKEFILE Makefile + mv SPANISH.ZIP spanish.zip + make lowercase || die + epatch "${FILESDIR}"/${P}-gentoo-fix.patch + epatch "${FILESDIR}"/${P}-getline-fix.patch +} + +src_compile() { + make CC=$(tc-getCC) \ + LIBS= \ + CFLAGS="${CFLAGS} -DLINUX" LDFLAGS="${LDFLAGS}" all || die +} + +src_install() { + dobin nfbtrans || die + dodoc *fmt readme.txt makedoc + insinto /etc/nfbtrans + doins *cnf *tab *dic spell.dat *zip +} |