--- gocr-0.39.orig/man/Makefile +++ gocr-0.39/man/Makefile @@ -4,10 +4,10 @@ PROGRAM = gocr -mandir = ${prefix}/man +mandir = ${prefix}/share/man INSTALL=/usr/bin/install -c -DESTDIR=/usr/local +DESTDIR=/usr default: all --- gocr-0.39.orig/src/Makefile +++ gocr-0.39/src/Makefile @@ -42,8 +42,8 @@ CPPFLAGS= # to see the config.h CFLAGS=-g -O2 $(CPPFLAGS) -I../include $(DEFS) -LDFLAGS= -lpnm -L. -DESTDIR=/usr/local +LDFLAGS= -lnetpbm -L. +DESTDIR=/usr .c.o: $(CC) $(CFLAGS) -c -o $*.o $< --- gocr-0.39.orig/Makefile +++ gocr-0.39/Makefile @@ -9,9 +9,9 @@ # make install DESTDIR=$RPM_BUILD_ROOT # -prefix = /usr/local +prefix = /usr #bindir = $(prefix)/bin -bindir = /usr/local${exec_prefix}/bin +bindir = /usr${exec_prefix}/bin SHELL = /bin/sh # this does not work on SuSE 6.0, why? (autoconf 2.12 do not set /bin/sh ?) @@ -26,7 +26,7 @@ # # -pedantic -ansi -Wall LDFLAGS = -LIBS = -lpnm +LIBS = -lnetpbm RANLIB = ranlib AR = ar @@ -116,7 +116,7 @@ $(SHELL) bin/create_db # you can override this variable by: make install DESTDIR=yourpath -DESTDIR=/usr/local +DESTDIR=/usr .PHONY : install test examples install: $(MAKE) -C src install --- gocr-0.39.orig/frontend/gnome/src/functions.c +++ gocr-0.39/frontend/gnome/src/functions.c @@ -145,7 +145,7 @@ if ( Path != NULL) g_free(Path); - Path=g_malloc(strlen(gtk_entry_get_text((GtkEntry *) TxtPath)+1)); + Path=g_malloc(strlen(gtk_entry_get_text((GtkEntry *) TxtPath))+1); strcpy(&Path[0],gtk_entry_get_text((GtkEntry *) TxtPath)); @@ -334,8 +334,8 @@ gtk_widget_show ( GTK_WIDGET (label)); if ( Path == NULL) { - Path = g_malloc(strlen("/usr/bin/gocr\0"+1)); - sprintf(Path,"/usr/bin/gocr"); + Path = g_malloc(strlen("/usr/bin/gocr")+1); + sprintf(Path,"/usr/bin/gocr\0"); } TxtPath=gtk_entry_new(); --- gocr-0.39.orig/debian/README.Debian +++ gocr-0.39/debian/README.Debian @@ -0,0 +1,7 @@ +gocr for Debian +---------------------- + +This is Debian package of gocr. +Please, read README* + + -- Cosimo Alfarano , Fri, 26 Aug 2000 17:44:00 +0200 --- gocr-0.39.orig/debian/TODO +++ gocr-0.39/debian/TODO @@ -0,0 +1,3 @@ +- compile database and install in /usr/share +- use debian-doc system, when gocr will be documented a bit more +- compile in a more standard and recent way tex files --- gocr-0.39.orig/debian/control +++ gocr-0.39/debian/control @@ -0,0 +1,53 @@ +Source: gocr +Section: graphics +Priority: optional +Maintainer: Cosimo Alfarano +Standards-Version: 3.5.10 +Build-Depends: tetex-bin, debhelper (>= 3.0), autoconf, libgtk1.2-dev, libnetpbm10-dev, netpbm, transfig, gs, gsfonts + +Package: gocr +Architecture: any +Depends: ${shlibs:Depends} +Description: A command line OCR + gocr is a multi-platform OCR (Optical Character Recognition) program. + . + It can read pnm, pbm, pgm, ppm, some pcx and tga image files. + . + Currently the program should be able to handle well scans that have their text + in one column and do not have tables. Font sizes of 20 to 60 + pixels are supported. + . + If you want to write your own OCR, libgocr is provided in a separate + package. Documentation and graphical wrapper are provided in separated + packages, too. + +Package: gocr-doc +Section: doc +Architecture: all +Description: gocr documentation + gocr is a multi-platform OCR (Optical Character Recognition) program. + . + It can read pnm, pbm, pgm, ppm, some pcx and tga image files. + . + It is documentation about gocr and OCRs. + +Package: gocr-tk +Architecture: any +Depends: gocr, tk8.4 | wish +Suggests: xsane +Description: A tcl/tk wrapper around gocr + gocr is a multi-platform OCR (Optical Character Recognition) program. + . + It can read pnm, pbm, pgm, ppm, some pcx and tga image files. + . + It is a tlc/tk GUI to gocr (a command line program). + +Package: gocr-gtk +Architecture: any +Depends: gocr, ${shlibs:Depends} +Description: A GTK wrapper around gocr + gocr is a multi-platform OCR (Optical Character Recognition) program. + . + It can read pnm, pbm, pgm, ppm, some pcx and tga image files. + . + It is a GTK GUI to gocr (command line program). --- gocr-0.39.orig/debian/rules +++ gocr-0.39/debian/rules @@ -0,0 +1,154 @@ +#!/usr/bin/make -f + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This is the debhelper compatability version to use. +export DH_COMPAT=3 + +# set any of this variable to TRUE to install them, to FALSE to do not install +INSTALLDATABASE=FALSE + +configure: configure-stamp +configure-stamp: + dh_testdir + + ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + ( cd $(CURDIR)/frontend/gnome ; \ + ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info ; ) + + touch configure-stamp + + +build: build-stamp +build-stamp: configure-stamp + + if [ $(INSTALLDATABASE) = TRUE ]; \ + then \ + $(MAKE) database; \ + fi + + $(MAKE) + $(MAKE) examples + $(MAKE) doc + + ( cd $(CURDIR)/frontend/gnome && ./configure ) + $(MAKE) frontend + #$(MAKE) -C $(CURDIR)/frontend/gnome # I changed frontend/Makefile + + touch build-stamp + + +clean: + dh_testdir + rm -f build-stamp + + -$(MAKE) proper + -$(MAKE) -C $(CURDIR)/frontend/gnome distclean + + # and some other debian/autoconf tmp file + -find $(CURDIR) -name "*~" -exec rm -v {} \; + -find $(CURDIR) -type f -name config.log -or \ + -name config.cache -or \ + -name config.status \ + -exec rm -v {} \; + -find $(CURDIR) -type d \ + -name CVS \ + -exec rm -rfv {} \; + -rm -vrf debian/tmp debian/files* core debian/substvars + + dh_clean + + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp. +# $(MAKE) install exec_prefix=$(CURDIR)/debian/tmp/usr prefix=$(CURDIR)/debian/tmp/usr INSTALL=/usr/bin/install + install -D $(CURDIR)/bin/gocr $(CURDIR)/debian/gocr/usr/bin/gocr + install -D $(CURDIR)/bin/gocr.tcl $(CURDIR)/debian/gocr-tk/usr/bin/gocr.tcl + install -D $(CURDIR)/frontend/gnome/src/gtk-ocr $(CURDIR)/debian/gocr-gtk/usr/bin/gtk-ocr + +# install -D $(CURDIR)/doc/*ps $(CURDIR)/doc/*dvi $(CURDIR)/doc/*txt $(CURDIR)/debian/gocr-doc/usr/share/doc/gocr/doc + + +# Build architecture-independent +binary-indep: build install + dh_testdir + dh_testroot + + dh_installdocs -i + dh_installexamples -i + + dh_installmenu -i + dh_installman -i + + dh_installchangelogs -i + + dh_compress -i -Xusr/share/doc/gocr/examples/font21.pcx + + dh_fixperms -i + # dh_fixperms doesn't fix subdir perms +# find debian/gocr/usr/share/doc/$(package) -type d -exec chmod 0755 {} \; + + dh_makeshlibs -i + dh_installdeb -i + + dh_shlibdeps -i + dh_gencontrol -i + + dh_md5sums -i + dh_builddeb -i + + + +# Build architecture-dependent +binary-arch: build install + dh_testdir + dh_testroot + + dh_installdebconf -a + + dh_installdocs -a + dh_installexamples -a + + dh_installmenu -a + dh_installman -a + + dh_installchangelogs -a + + dh_strip -a + dh_compress -a -Xusr/share/doc/gocr/examples/font21.pcx + + dh_fixperms -a + # dh_fixperms doesn't fix subdir perms +# find debian/gocr/usr/share/doc/$(package) -type d -exec chmod 0755 {} \; + + dh_makeshlibs -a + dh_installdeb -a + + dh_shlibdeps -a + dh_gencontrol -a + + dh_md5sums -a + dh_builddeb -a + + +binary: binary-indep binary-arch + +.PHONY: build clean binary binary-indep binary-arch binary install configure --- gocr-0.39.orig/debian/gocr.examples +++ gocr-0.39/debian/gocr.examples @@ -0,0 +1,4 @@ +examples/*.tex +examples/*.fig +examples/*.pcx +examples/*.ps --- gocr-0.39.orig/debian/gocr.1 +++ gocr-0.39/debian/gocr.1 @@ -0,0 +1,125 @@ +.\" wing requests are required for all man pages. +.TH gocr 1 "Sun Sep 3 14:59:19 CEST 2000" "" "Gnu Optical Character Recognition" +.SH NAME +gocr - Gnu Optical Character Recognition +.SH SYNOPSIS +.B gocr +.RB [options] +.IR pnm_file_name +.SH OPTIONS +.TP +.B \-h +get this help +.TP +.BI \-i\ name +input image file (pnm,pgm,pbm,ppm,pcx,...) +.TP +.BI \-i\ \- +read PNM from stdin (djpeg -gray a.jpg | gocr -) +.TP +.BI \-o\ name +output file (redirection of stdout) +.TP +.BI \-e\ name +logging file (redirection of stderr) +.TP +.BI \-l\ num +grey level 0<160<=255 +.TP +.BI \-d\ num +dust_size (remove all smaller clusters, 10=default) +.TP +.BI \-s\ num +spacewidth/dots (0 = autodetect) +.TP +.BI \-v\ num +verbose [summed] + 1 print more info + 2 list chapes of boxes (see -c) + 4 list pattern of boxes (see -c) + 8 print pattern after recognition + 16 print line infos + 32 debug outXX.pgm +.TP +.BI \-c\ string +list of chars (_ = not recognized chars) +.TP +.BI \-m\ num +operation modes, ~ = switch off + 2 use database (early development) + 4 layout analysis, zoning (development) + 8 ~ compare non recognized chars + 16 ~ divide overlapping chars + 32 ~ context correction + 64 char packing (development) +.TP +.B \-n +1 only numbers + +.SH DESCRIPTION + +.B What is it? +.TP +OCR = optical character recognition +.TP +read pnm, pbm, pgm, ppm, some pcx and tga image files (or PNM from stdin) +.TP +if pnm-tools installed and running linux-like system you can also use pnm.gz, pnm.bz2, png, jpg, tiff, gif, bmp (see pnm.cc for full list) +.TP +output of text + +.TP +.B How to start? (QUICK START) +.TP +gocr -h +help +.TP +gocr file.pbm +minimum options +.TP +gocr -v 1 file.pbm >out.txt 2>out.log +generate text- and log file +.\" djpeg -pnm -gray text.jpg | gocr - # using JPEG-files +.TP +gzip -cd text.pbm.gz | gocr - +using gzipped PBM-files +.\" giftopnm text.gif | gocr - # using GIF-files +.TP +gocr -v 1 -v 32 -m 4 file.pbm +zoning and out30.bmp output +.\" xli -geometry 400x400 out30.bmp # see details using xli (recommanded viewer) +.TP +wish gocr.tcl +X11-tcl/tk-frontend (development version) + + + +.SH EXAMPLES +There is some examples in /usr/share/doc/gocr + +Try to something like: +.TP +.B gocr -i file.pbm -o file.txt -e file.log -v X -m Y +.TP +where X and Y are the sum of values you want. i.e.: +.B -v 15 +.B -m 24 + +.\" This next request is for sections 1, 6, 7 & 8 only +.\" (command return values (to shell) and +.\" fprintf/stderr type diagnostics) +.\" .Sh DIAGNOSTICS +.\" The next request is for sections 2 and 3 error +.\" and signal handling only. +.\" .Sh ERRORS +.\" .Sh SEE ALSO +.\" .Sh STANDARDS +.\" .Sh HISTORY +.SH SEE ALSO +gocr.tcl(1) gtk-ocr(1) +.SH AUTHORS +Joerg.Schulenburg@physik.uni-magdeburg.de, +jschulen@gmx.de +.SH BUGS +Send any bug to the Debian Bug Tracking System. + --- gocr-0.39.orig/debian/INSTALL.Debian +++ gocr-0.39/debian/INSTALL.Debian @@ -0,0 +1,14 @@ +gocr for Debian +---------------------- + +This is Debian package of gocr. +Please, read README* + +You can modify debian/rules choosing to compile or not database and examples + +Actually database is for developing purpouses only, so if you a user, you +don't need them. If you are a develper you know what do with them. + +Examples will be installed in /usr/share/gocr/examples if compiled. + + -- Cosimo Alfarano , Fri, 26 Aug 2000 17:44:00 +0200 --- gocr-0.39.orig/debian/changelog +++ gocr-0.39/debian/changelog @@ -0,0 +1,184 @@ +gocr (0.39-1) unstable; urgency=low + + * New upstream release + closes: Bug#244223 + + -- Cosimo Alfarano Sat, 17 Apr 2004 15:19:09 +0200 + +gocr (0.38-4) unstable; urgency=low + + * fixes the previous entry, that was upload by mistake without updating it + :( + * built against libnetpbm10 (Build-Depends updated) + closes: Bug#211258 + + -- Cosimo Alfarano Thu, 25 Mar 2004 22:27:14 +0100 + +gocr (0.38-3) unstable; urgency=low + + * libnetpbm10 + + -- Cosimo Alfarano Thu, 25 Mar 2004 21:44:35 +0100 + +gocr (0.38-2) unstable; urgency=low + + * removed tk8.4-dev from Build-Depends, thanks to Florent Rougon + closes: Bug#227533 + * suggesting xsane to goct-tk, since it can scan a document from GUI + + -- Cosimo Alfarano Tue, 23 Mar 2004 11:02:54 +0100 + +gocr (0.38-1) unstable; urgency=low + + * New Upstream Release + + -- Cosimo Alfarano Wed, 24 Dec 2003 19:37:25 +0100 + +gocr (0.37-3) unstable; urgency=low + + * debian/rules: ignore errorcode of find if CVS dir and some other files are + not found during clean target execution + closes: Bug#199933 + + -- Cosimo Alfarano Fri, 4 Jul 2003 16:06:26 +0200 + +gocr (0.37-2) unstable; urgency=low + + * added autoconf in Build-Depends + closes: Bug#199756 + * binary-arch target now depends on install target. it was forgot in some + way + closes: Bug#191633 + + -- Cosimo Alfarano Thu, 3 Jul 2003 21:16:34 +0200 + +gocr (0.37-1) unstable; urgency=low + + * reuploading the old debian 0.3.7-1 version with the real upstream version + fixed. it's 0.37! + * changed deps of gocr-tk to respect current sid's tk version. + (closes: Bug#194794) + + -- Cosimo Alfarano Tue, 27 May 2003 15:19:14 +0200 + +gocr (0.3.7-1) unstable; urgency=low + + * New Upstream Version (closes: #173595) + * Installed new gocr man page from sources (closes: Bug#174182,Bug#151736) + + -- Cosimo Alfarano Fri, 27 Dec 2002 19:29:24 +0100 + +gocr (0.3.4-10) unstable; urgency=low + + * fixed some typos in debian/control (closes: #142504,#142735) + + -- Cosimo Alfarano Tue, 16 Apr 2002 14:07:04 +0200 + +gocr (0.3.4-9) unstable; urgency=low + + * fixed gtk-ocr segfault during setting (closes: Bug#136913) + modified line are tagged "//KA" + + -- Cosimo Alfarano Tue, 5 Mar 2002 16:47:56 +0100 + +gocr (0.3.4-8) unstable; urgency=low + + * arch-dep and arch-indep packages splitted in debian/rules + + -- Cosimo Alfarano Fri, 22 Feb 2002 19:18:53 +0100 + +gocr (0.3.4-7) unstable; urgency=low + + * fixed a type in Description (closes: Bug#125619) + * added gsfonts and tk8.0-dev to Build-Depends: (closes: Bug#126284) + + -- Cosimo Alfarano Sun, 23 Dec 2001 22:55:20 +0100 + +gocr (0.3.4-6) unstable; urgency=low + + * fixed section of gocr-doc in debian/control (from graphic to doc) + * replaced gv with gs to Build-Depends: (closes: Bug#116882) + + -- Cosimo Alfarano Wed, 24 Oct 2001 21:40:22 +0000 + +gocr (0.3.4-5) unstable; urgency=low + + * Completly rewritten all Descriptions (closes: Bug#116796) + * patching frontend/gnome/src/function.c In saving file. + s/+1/+2/ allocing memory for filename $HOME/.gtk_ocr (closes: Bug#116670) + + -- Cosimo Alfarano Tue, 23 Oct 2001 22:38:30 +0000 + +gocr (0.3.4-4) unstable; urgency=low + + * patched frontend/gnome/src/functions.c (segfault) + * removed all config.{status,cache} (debian/rules clean) + * changed path to common-licenses in copyright file + * patched exaple/Makefile clean targed (more file removed) + + -- Cosimo Alfarano Tue, 22 Oct 2001 21:35:43 +0000 + +gocr (0.3.4-3) unstable; urgency=low + + * controlled and fixed all Descriptions (closes: #101781) + + -- Cosimo Alfarano Fri, 19 Oct 2001 17:09:37 +0200 + +gocr (0.3.4-2) unstable; urgency=low + + * orig.tgz created.... debian release 1 missing it + + -- Cosimo Alfarano Fri, 19 Oct 2001 00:25:03 +0000 + +gocr (0.3.4-1) unstable; urgency=low + + * New upstream release + * Patched examples/Makefile -> in target examples added text.ps font.ps + * Patched frontend/Makefile -> in target all added $(MAKE) -C src all + + -- Cosimo Alfarano Thu, 18 Oct 2001 23:29:03 +0000 + +gocr (0.3.3-1) unstable; urgency=low + + * new upstream version (closes: #87979) + * changed /usr/X11/bin/wish to /usr/bin/wish + * changed $(CURDIR)/frontend/Makefile to compile gnome frontend. + Now I can do make frontend from root dir. + * changed path of frontend/gnome/mkinstalldirs in frontend/gnome/Makefile.in + and frontend/gnome/src/Makefile.in, it pointed to a wrong dir + + -- Cosimo Alfarano Wed, 1 Aug 2001 01:12:23 +0100 + +gocr (0.3.2-1) unstable; urgency=low + + * new upstream version (never uploaded to ftp-master) + + -- Cosimo Alfarano Fri, 30 Mar 2001 18:22:23 +0100 + +gocr (0.2.7-4) unstable; urgency=low + + * indented list items in debian/control description field (closes: #79478) + + -- Cosimo Alfarano Fri, 15 Dec 2000 15:35:12 +0100 + +gocr (0.2.7-3) unstable; urgency=low + + * Written an initial manpages gocr.1 gocr.tcl.1 + + -- Cosimo Alfarano Wed, 6 Dec 2000 00:18:48 +0100 + +gocr (0.2.7-2) unstable; urgency=low + + * Changed wish dependece from Depend: to Recommends: + + -- Cosimo Alfarano Fri, 29 Aug 2000 22:20:00 +0200 + +gocr (0.2.7-1) unstable; urgency=low + + * Initial Release. + + -- Cosimo Alfarano Fri, 25 Aug 2000 00:21:56 +0200 + +Local variables: +mode: debian-changelog +End: --- gocr-0.39.orig/debian/gocr.tcl.1 +++ gocr-0.39/debian/gocr.tcl.1 @@ -0,0 +1,46 @@ +.\" wing requests are required for all man pages. +.TH gocr.tcl 1 "Sun Sep 3 14:59:19 CEST 2000" "" "Graphical frontend to gocr" +.SH NAME +gocr.tcl - Graphical frontend to gocr +.SH SYNOPSIS +.B gocr.tcl +.SH DESCRIPTION + +.B What is it? +.TP +OCR = optical character recognition +.TP +read pnm, pbm, pgm, ppm, some pcx and tga image files (or PNM from stdin) +.TP +if pnm-tools installed and running linux-like system you can also use pnm.gz, pnm.bz2, png, jpg, tiff, gif, bmp (see pnm.cc for full list) +.TP +output of text + +.SH EXAMPLES +There is some examples in /urs/share/doc/gocr.tcl + +Try to something like: +.TP +.B gocr -i file.pbm -o file.txt -e file.log -v X -m Y +.TP +where X and Y are the sum of values you want. i.e.: +.B -v 15 +.B -m 24 + +.\" This next request is for sections 1, 6, 7 & 8 only +.\" (command return values (to shell) and +.\" fprintf/stderr type diagnostics) +.\" .Sh DIAGNOSTICS +.\" The next request is for sections 2 and 3 error +.\" and signal handling only. +.\" .Sh ERRORS +.SH SEE ALSO +gocr(1) gtk-ocr(1) +.\" .Sh STANDARDS +.\" .Sh HISTORY +.SH AUTHORS +Joerg.Schulenburg@physik.uni-magdeburg.de, +jschulen@gmx.de +.SH BUGS +Send any bug to the Debian Bug Tracking System. + --- gocr-0.39.orig/debian/docs +++ gocr-0.39/debian/docs @@ -0,0 +1,3 @@ +README +READMEde.txt +REMARK.txt --- gocr-0.39.orig/debian/gocr.dirs +++ gocr-0.39/debian/gocr.dirs @@ -0,0 +1 @@ +usr/bin --- gocr-0.39.orig/debian/gocr-doc.docs +++ gocr-0.39/debian/gocr-doc.docs @@ -0,0 +1,3 @@ +doc/examples.txt +doc/unicode.txt +doc/gocr.html --- gocr-0.39.orig/debian/gocr-tk.dirs +++ gocr-0.39/debian/gocr-tk.dirs @@ -0,0 +1 @@ +usr/bin --- gocr-0.39.orig/debian/gocr-gtk.dirs +++ gocr-0.39/debian/gocr-gtk.dirs @@ -0,0 +1 @@ +usr/bin --- gocr-0.39.orig/debian/gocr.manpages +++ gocr-0.39/debian/gocr.manpages @@ -0,0 +1 @@ +man/man1/gocr.1 --- gocr-0.39.orig/debian/gtk-ocr.1 +++ gocr-0.39/debian/gtk-ocr.1 @@ -0,0 +1,30 @@ +.\" wing requests are required for all man pages. +.TH gtk-ocr 1 "Sun Sep 3 14:59:19 CEST 2000" "" "Graphical frontend to gocr" +.SH NAME +gtk-ocr - Graphical frontend to gocr +.SH SYNOPSIS +.B gtk-ocr +.SH DESCRIPTION + +.B What is it? +.TP +OCR = optical character recognition +.TP +read pnm, pbm, pgm, ppm, some pcx and tga image files (or PNM from stdin) +.TP +if pnm-tools installed and running linux-like system you can also use pnm.gz, pnm.bz2, png, jpg, tiff, gif, bmp (see pnm.cc for full list) +.TP +output of text + +.SH EXAMPLES +There is some examples in /urs/share/doc/gocr + +.SH SEE ALSO +gocr(1) goct.tlc(1) +.\" .Sh STANDARDS +.\" .Sh HISTORY +.SH AUTHORS +Joerg.Schulenburg@physik.uni-magdeburg.de, +jschulen@gmx.de +.SH BUGS +Send any bug to the Debian Bug Tracking System. --- gocr-0.39.orig/debian/gocr-gtk.manpages +++ gocr-0.39/debian/gocr-gtk.manpages @@ -0,0 +1 @@ +debian/gtk-ocr.1 --- gocr-0.39.orig/debian/gocr-tk.manpages +++ gocr-0.39/debian/gocr-tk.manpages @@ -0,0 +1 @@ +debian/gocr.tcl.1 --- gocr-0.39.orig/debian/gocr-doc.dirs +++ gocr-0.39/debian/gocr-doc.dirs @@ -0,0 +1 @@ +usr/share/doc/gocr --- gocr-0.39.orig/debian/copyright +++ gocr-0.39/debian/copyright @@ -0,0 +1,17 @@ +This package was debianized by Cosimo Alfarano +on Sun, 25 Jun 2000 17:52:35 +0200. + +Current maintainer is Cosimo Alfarano. +You can find this package at URL +http://altmark.nat.uni-magdeburg.de/~jschulen/ocr/index.html + +Authors: +Joerg.Schulenburg@physik.uni-magdeburg.de, jschulen@gmx.de + +Copyright (C) 2000 Joerg Schulenburg + +Copyright: +Gocr is under GNU GPL, the GNU General Public License. + +A copy of the GNU General Public License, version 2, can be found in +/usr/share/common-licenses/GPL --- gocr-0.39.orig/debian/gocr-tk.menu +++ gocr-0.39/debian/gocr-tk.menu @@ -0,0 +1,4 @@ +?package(gocr-tk):needs=X11 \ + section=Apps/Graphics \ + title="TK Gocr" \ + command="/usr/bin/gocr.tcl" --- gocr-0.39.orig/debian/gocr-gtk.menu +++ gocr-0.39/debian/gocr-gtk.menu @@ -0,0 +1,4 @@ +?package(gocr-gtk):needs=X11 \ + section=Apps/Graphics \ + title="GTK Gocr" \ + command="/usr/bin/gtk-ocr"