diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2005-10-14 22:07:51 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2005-10-14 22:07:51 +0000 |
commit | 8728dc34539a1156689e64b909266d096251c8ba (patch) | |
tree | c2c973cb41f2e7286f8a03378b956eadf2e61460 /graphics/ocrad | |
parent | a62bd50a6a73cb78dc4da7cba23019c6ffe4f809 (diff) |
- Update to 0.13
PR: ports/87442
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=145418
Diffstat (limited to 'graphics/ocrad')
-rw-r--r-- | graphics/ocrad/Makefile | 2 | ||||
-rw-r--r-- | graphics/ocrad/distinfo | 4 | ||||
-rw-r--r-- | graphics/ocrad/files/patch-main.cc | 11 |
3 files changed, 14 insertions, 3 deletions
diff --git a/graphics/ocrad/Makefile b/graphics/ocrad/Makefile index c953d04e1d00..da3ba51c9ed6 100644 --- a/graphics/ocrad/Makefile +++ b/graphics/ocrad/Makefile @@ -6,7 +6,7 @@ # PORTNAME= ocrad -PORTVERSION= 0.10 +PORTVERSION= 0.13 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} diff --git a/graphics/ocrad/distinfo b/graphics/ocrad/distinfo index 46d1d566b026..0cb1ba4f799d 100644 --- a/graphics/ocrad/distinfo +++ b/graphics/ocrad/distinfo @@ -1,2 +1,2 @@ -MD5 (ocrad-0.10.tar.bz2) = 84e0cc009bff0572a10772fbcd7101de -SIZE (ocrad-0.10.tar.bz2) = 58565 +MD5 (ocrad-0.13.tar.bz2) = bf09dbb433c1ecf9e9a3b7c0f838ce73 +SIZE (ocrad-0.13.tar.bz2) = 66654 diff --git a/graphics/ocrad/files/patch-main.cc b/graphics/ocrad/files/patch-main.cc new file mode 100644 index 000000000000..3a1b06e3454f --- /dev/null +++ b/graphics/ocrad/files/patch-main.cc @@ -0,0 +1,11 @@ +--- main.cc.orig Fri Oct 14 16:46:22 2005 ++++ main.cc Fri Oct 14 16:46:30 2005 +@@ -198,7 +198,7 @@ + void Ocrad::internal_error( const char * msg ) throw() + { + char buf[80]; +- std::snprintf( buf, sizeof( buf ), "internal error: %s.\n", msg ); ++ snprintf( buf, sizeof( buf ), "internal error: %s.\n", msg ); + show_error( buf ); + exit( 3 ); + } |