- update to version 0.19

* Version 0.19 released.
  * Added library interface (ocradlib.h).
  * Option `--crop' replaced with similar but different option
    `--cut', which can accept coordinates taken from the ORF file.
  * Recognition of files with a single character and without white
    space at the edges has been fixed.
  * testsuite/check.sh: Added new tests for the library interface
    and for single character images.
  * New files ocradlib.h, ocradlib.cc, ocrcheck.cc.
  * Makefile.in: Added "--name" option to help2man invocation.

OBS-URL: https://build.opensuse.org/package/show/graphics/ocrad?expand=0&rev=11
This commit is contained in:
Klaas Freitag
2010-04-07 12:19:03 +00:00
committed by Git OBS Bridge
parent 7cff5d852f
commit 74aec2c961
6 changed files with 52 additions and 118 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package ocrad (Version 0.17)
# spec file for package ocrad (Version 0.18)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -22,15 +22,15 @@ Name: ocrad
BuildRequires: gcc-c++
Url: https://savannah.gnu.org/projects/ocrad/
Summary: GNU Ocrad--Optical Character Recognition Program
Version: 0.17
Release: 68
Version: 0.19
Release: 1
Group: Productivity/Graphics/Other
#Requires:
#Provides:
License: GPL v2 or later
License: GPLv2+
# URL:
Source0: ocrad-%{version}.tar.bz2
Patch: ocrad-%{version}-gcc43.patch
# Patch: ocrad-%{version}-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
@@ -49,27 +49,27 @@ Authors:
--------
Antonio Diaz Diaz
%define INSTALL install -m755 -s
%define INSTALL_SCRIPT install -m755
%define INSTALL_DIR install -d -m755
%define INSTALL_DATA install -m644
%prep
%setup -n ocrad-%{version}
%patch -p1
%build
./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man
./configure --prefix=/usr --libdir=%_libdir --mandir=%_mandir
make CXXFLAGS='${RPM_OPT_FLAGS}'
%install
if [ ! "x" = "x$RPM_BUILD_ROOT" ] ; then
rm -fr $RPM_BUILD_ROOT
%{INSTALL_DIR} $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT
fi
make install DESTDIR=$RPM_BUILD_ROOT
make install-man DESTDIR=$RPM_BUILD_ROOT
%post
%install_info --info-dir=%_infodir %_infodir/%name.info.gz
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%clean
rm -fr $RPM_BUILD_ROOT
@@ -77,9 +77,11 @@ rm -fr $RPM_BUILD_ROOT
%defattr(-, root, root)
/usr/bin/ocrad
/usr/share/info/ocrad*
/usr/include/ocradlib.h
/%_libdir/libocrad.a
%doc %{_mandir}/man1/*
%doc AUTHORS COPYING ChangeLog INSTALL README NEWS TODO
%doc examples
# spec file ends here
%changelog