diff options
-rw-r--r-- | app-text/ocrad/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/ocrad/ocrad-0.21.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/app-text/ocrad/ChangeLog b/app-text/ocrad/ChangeLog index 6b88c44d7313..0f2df62d2851 100644 --- a/app-text/ocrad/ChangeLog +++ b/app-text/ocrad/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/ocrad # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.34 2011/02/11 18:16:16 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.35 2011/04/19 13:51:35 aballier Exp $ + +*ocrad-0.21 (19 Apr 2011) + + 19 Apr 2011; Alexis Ballier <aballier@gentoo.org> +ocrad-0.21.ebuild: + version bump 11 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> ocrad-0.18.ebuild: Marked ~ppc wrt #300562 diff --git a/app-text/ocrad/ocrad-0.21.ebuild b/app-text/ocrad/ocrad-0.21.ebuild new file mode 100644 index 000000000000..3a05e9c9e61d --- /dev/null +++ b/app-text/ocrad/ocrad-0.21.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ocrad-0.21.ebuild,v 1.1 2011/04/19 13:51:35 aballier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="GNU Ocrad is an OCR (Optical Character Recognition) program" +HOMEPAGE="http://www.gnu.org/software/ocrad/ocrad.html" +SRC_URI="http://savannah.nongnu.org/download/ocrad/${P}.tar.lz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/lzip" + +src_unpack() { + local i s + for i in ${A} + do + s="${DISTDIR%/}/${i}" + einfo "Unpacking ${s} to ${PWD}" + test -s "${s}" || die "${s} does not exist" + lzip -dc -- "${s}" | tar xof - || die "Unpacking ${s} failed" + done +} + +src_compile() { + econf CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}" LDFLAGS="${LDFLAGS}" + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + doman doc/ocrad.1 + doinfo doc/ocrad.info + dodoc AUTHORS NEWS README TODO +} |