Accepting request 47364 from graphics

Copy from graphics/ocrad based on submit request 47364 from user prusnak

OBS-URL: https://build.opensuse.org/request/show/47364
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ocrad?expand=0&rev=12
This commit is contained in:
OBS User autobuild 2010-09-13 10:08:58 +00:00 committed by Git OBS Bridge
parent 7f95f5400d
commit d245df2bfd
5 changed files with 71 additions and 32 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:22054c5cc32e23ef19258c63fd329d0eee9dac97a746f840bac46514a86a5816
size 82409

3
ocrad-0.20.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a47cbeed943d3296289082caba21c28ccc2673ee394c12c8e38f525868e3636
size 89099

View File

@ -0,0 +1,14 @@
diff -up ./configure.old ./configure
--- ./configure.old 2010-09-06 17:43:43.074186313 +0000
+++ ./configure 2010-09-06 17:44:31.969195119 +0000
@@ -29,10 +29,6 @@ infodir='$(datadir)/info'
libdir='${exec_prefix}/lib'
mandir='$(datadir)/man'
sysconfdir='$(prefix)/etc'
-CXX=
-CPPFLAGS=
-CXXFLAGS='-Wall -W -O2'
-LDFLAGS=
# Loop over all args
while [ -n "$1" ] ; do

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Mon Sep 6 17:57:38 UTC 2010 - masterpatricko@gmail.com
- Update to 0.20
* ocradlib.h: Added new function OCRAD_scale.
* ocradlib.h: Added new function OCRAD_result_chars_total.
* ocradlib.h: Added new function OCRAD_result_chars_block.
* ocradlib.h: Added new function OCRAD_result_chars_line.
- add ocrad-build-with-optflags.patch
-------------------------------------------------------------------
Wed Aug 4 12:41:27 UTC 2010 - coolo@novell.com
- put devel files in -devel subpackage
-------------------------------------------------------------------
Wed Apr 7 12:15:49 UTC 2010 - freitag@novell.com
- 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.
-------------------------------------------------------------------
Wed Nov 11 21:49:07 UTC 2009 - freitag@novell.com

View File

@ -1,5 +1,5 @@
#
# spec file for package ocrad (Version 0.18)
# spec file for package ocrad (Version 0.20)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@ -22,17 +22,15 @@ Name: ocrad
BuildRequires: gcc-c++
Url: https://savannah.gnu.org/projects/ocrad/
Summary: GNU Ocrad--Optical Character Recognition Program
Version: 0.18
Version: 0.20
Release: 1
Group: Productivity/Graphics/Other
#Requires:
#Provides:
License: GPLv2+
# URL:
Source0: ocrad-%{version}.tar.bz2
# Patch: ocrad-%{version}-gcc43.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
PreReq: %install_info_prereq
PreReq: %install_info_prereq
Patch0: ocrad-build-with-optflags.patch
%description
GNU Ocrad is an OCR (Optical Character Recognition) program implemented
@ -44,32 +42,26 @@ back-end to other programs.
gocr is another interesting command line OCR tool. Both can be plugged
into Kooka, the KDE scan and OCR program.
%package devel
License: GPLv2+
Summary: Development files for GNU ocrad
Group: Development/Libraries/C and C++
%description devel
Development files for GNU ocrad - useful for programs implementing OCR
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
%setup
%patch0
%build
./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man
make CXXFLAGS='${RPM_OPT_FLAGS}'
%configure
%{__make} %{?_smp_mflags} VERBOSE=1
%install
if [ ! "x" = "x$RPM_BUILD_ROOT" ] ; then
rm -fr $RPM_BUILD_ROOT
%{INSTALL_DIR} $RPM_BUILD_ROOT
fi
make install DESTDIR=$RPM_BUILD_ROOT
make install-man DESTDIR=$RPM_BUILD_ROOT
%makeinstall install-man
%{__rm} -f $RPM_BUILD_ROOT%{_libexecdir}/libocrad.a
%post
%install_info --info-dir=%_infodir %_infodir/%name.info.gz
@ -78,14 +70,17 @@ make install-man DESTDIR=$RPM_BUILD_ROOT
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%clean
rm -fr $RPM_BUILD_ROOT
%{__rm} -fr $RPM_BUILD_ROOT
%files
%defattr(-, root, root)
/usr/bin/ocrad
/usr/share/info/ocrad*
%{_bindir}/ocrad
%{_infodir}/ocrad*
%doc %{_mandir}/man1/*
%doc AUTHORS COPYING ChangeLog INSTALL README NEWS TODO
# spec file ends here
%files devel
%defattr(-, root, root)
%{_includedir}/ocradlib.h
%changelog