diff options
author | 2007-01-20 09:30:37 +0000 | |
---|---|---|
committer | 2007-01-20 09:30:37 +0000 | |
commit | 36e4a725220a3778627c40fbd83cce2a1afda6e4 (patch) | |
tree | e107d01617ca88d48f37f897405299114f02a351 /app-text/gocr/files | |
parent | version bump to fix a few issues (diff) | |
download | historical-36e4a725220a3778627c40fbd83cce2a1afda6e4.tar.gz historical-36e4a725220a3778627c40fbd83cce2a1afda6e4.tar.bz2 historical-36e4a725220a3778627c40fbd83cce2a1afda6e4.zip |
Version bump (#145624). Remove obsolete versions.
Package-Manager: portage-2.1.1-r2
Diffstat (limited to 'app-text/gocr/files')
-rw-r--r-- | app-text/gocr/files/digest-gocr-0.43 | 3 | ||||
-rw-r--r-- | app-text/gocr/files/gocr-0.43-makefile.patch | 32 |
2 files changed, 35 insertions, 0 deletions
diff --git a/app-text/gocr/files/digest-gocr-0.43 b/app-text/gocr/files/digest-gocr-0.43 new file mode 100644 index 000000000000..69c75eb878b7 --- /dev/null +++ b/app-text/gocr/files/digest-gocr-0.43 @@ -0,0 +1,3 @@ +MD5 f989fe8e24f82d19c8ce55df15784e15 gocr-0.43.tar.gz 820923 +RMD160 ee914cf5d0a14274d15b17c0c21b90a73f422283 gocr-0.43.tar.gz 820923 +SHA256 36e88624511dd8f366fa679beaf14afa7d11e71c2dd6947a43eab31c8bc27fe9 gocr-0.43.tar.gz 820923 diff --git a/app-text/gocr/files/gocr-0.43-makefile.patch b/app-text/gocr/files/gocr-0.43-makefile.patch new file mode 100644 index 000000000000..946f1ffdcf1a --- /dev/null +++ b/app-text/gocr/files/gocr-0.43-makefile.patch @@ -0,0 +1,32 @@ +diff -Nru gocr-0.43.orig/frontend/Makefile gocr-0.43/frontend/Makefile +--- gocr-0.43.orig/frontend/Makefile 2007-01-20 11:07:44.000000000 +0200 ++++ gocr-0.43/frontend/Makefile 2007-01-20 11:07:20.000000000 +0200 +@@ -11,5 +11,5 @@ + + + gnome/Makefile: gnome/configure +- (cd gnome;configure) ++ (cd gnome;./configure) + +diff -Nru gocr-0.43.orig/src/Makefile.in gocr-0.43/src/Makefile.in +--- gocr-0.43.orig/src/Makefile.in 2006-10-31 13:20:09.000000000 +0200 ++++ gocr-0.43/src/Makefile.in 2007-01-20 11:10:46.000000000 +0200 +@@ -43,7 +43,8 @@ + CPPFLAGS=@CPPFLAGS@ + # to see the config.h + CFLAGS=@CFLAGS@ $(CPPFLAGS) -I../include $(DEFS) +-LDFLAGS=@LDFLAGS@ @LIBS@ -L. ++LDFLAGS=@LDFLAGS@ ++LIBADD=@LIBS@ + DESTDIR=@prefix@ + + .c.o: $(INCLUDEFILES) +@@ -54,7 +55,7 @@ + all: $(PROGRAM) $(LIBPGMASCLIB) + + $(PROGRAM): $(LIBPGMASCLIB) gocr.o +- $(CC) -o $@ gocr.o $(LDFLAGS) ./lib$(PGMASCLIB).a ++ $(CC) $(LDFLAGS) gocr.o ./lib$(PGMASCLIB).a $(LIBADD) -o $@ + if test -r $(PROGRAM); then cp $@ ../bin; fi + + gocr.o: gocr.h Makefile |