summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2014-12-23 10:02:54 +0000
committerAlexis Ballier <aballier@gentoo.org>2014-12-23 10:02:54 +0000
commit346c415db8266bc2e91f07c98a3e39caf97e347b (patch)
tree5d82c2398e6437e17136aeccc887c3ff9a54cddb /app-text/ocrad
parentVersion bump rebar to 2.3.1 (diff)
downloadgentoo-2-346c415db8266bc2e91f07c98a3e39caf97e347b.tar.gz
gentoo-2-346c415db8266bc2e91f07c98a3e39caf97e347b.tar.bz2
gentoo-2-346c415db8266bc2e91f07c98a3e39caf97e347b.zip
version bump
Signed-off-by: aballier@gentoo.org (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'app-text/ocrad')
-rw-r--r--app-text/ocrad/ChangeLog7
-rw-r--r--app-text/ocrad/ocrad-0.24.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/app-text/ocrad/ChangeLog b/app-text/ocrad/ChangeLog
index 19021fbb6272..e6a3ba3e9ae0 100644
--- a/app-text/ocrad/ChangeLog
+++ b/app-text/ocrad/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/ocrad
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.44 2014/05/14 14:41:20 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ChangeLog,v 1.45 2014/12/23 10:02:54 aballier Exp $
+
+*ocrad-0.24 (23 Dec 2014)
+
+ 23 Dec 2014; Alexis Ballier <aballier@gentoo.org> +ocrad-0.24.ebuild:
+ version bump
14 May 2014; Agostino Sarubbo <ago@gentoo.org> ocrad-0.22.ebuild:
Stable for sparc, wrt bug #506786
diff --git a/app-text/ocrad/ocrad-0.24.ebuild b/app-text/ocrad/ocrad-0.24.ebuild
new file mode 100644
index 000000000000..a40cf0a8c680
--- /dev/null
+++ b/app-text/ocrad/ocrad-0.24.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/ocrad/ocrad-0.24.ebuild,v 1.1 2014/12/23 10:02:54 aballier Exp $
+
+EAPI=5
+inherit unpacker toolchain-funcs
+
+DESCRIPTION="GNU Ocrad is an OCR (Optical Character Recognition) program"
+HOMEPAGE="http://www.gnu.org/software/ocrad/ocrad.html"
+SRC_URI="mirror://nongnu/${PN}/${P}.tar.lz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="$(unpacker_src_uri_depends)"
+
+DOCS="AUTHORS ChangeLog NEWS README"
+
+src_configure() {
+ # ./configure is not based on autotools
+ ./configure \
+ CPPFLAGS="${CPPFLAGS}" \
+ CXX="$(tc-getCXX)" \
+ CXXFLAGS="${CXXFLAGS}" \
+ LDFLAGS="${LDFLAGS}" \
+ --prefix=/usr
+}
+
+src_install() {
+ default
+ doman doc/${PN}.1
+ doinfo doc/${PN}.info
+}