Bug 177345 - [PATCH] graphics/gocr: update to 0.50, Convert to OptionsNG
Summary: [PATCH] graphics/gocr: update to 0.50, Convert to OptionsNG
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Dennis Herrmann
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-24 15:50 UTC by nemysis
Modified: 2013-12-17 20:50 UTC (History)
1 user (show)

See Also:


Attachments
gocr-0.50.patch (2.44 KB, patch)
2013-03-24 15:50 UTC, nemysis
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description nemysis 2013-03-24 15:50:00 UTC
- Update to 0.50
- Shorten header
- Convert to OptionsNG
- Add license
- Fix docs

Port maintainer (dhn@FreeBSD.org) is cc'd.

Generated and tested manually, tested with port test, sent with FreeBSD Port Tools 0.99_6 (mode: update, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-24 15:50:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->dhn

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-17 20:49:23 UTC
Author: dhn
Date: Tue Dec 17 20:49:16 2013
New Revision: 336766
URL: http://svnweb.freebsd.org/changeset/ports/336766

Log:
  - Update to 0.50
  - Shorten header
  - Convert to OptionsNG
  - Add license
  - Fix docs
  
  PR:		ports/177345
  Submitted by:	nemysis <nemysis@gmx.ch>

Modified:
  head/graphics/gocr/Makefile
  head/graphics/gocr/distinfo

Modified: head/graphics/gocr/Makefile
==============================================================================
--- head/graphics/gocr/Makefile	Tue Dec 17 20:42:26 2013	(r336765)
+++ head/graphics/gocr/Makefile	Tue Dec 17 20:49:16 2013	(r336766)
@@ -2,26 +2,40 @@
 # $FreeBSD$
 
 PORTNAME=	gocr
-PORTVERSION=	0.49
-PORTREVISION=	1
+PORTVERSION=	0.50
 CATEGORIES=	graphics
 MASTER_SITES=	http://www-e.uni-magdeburg.de/jschulen/ocr/
 
 MAINTAINER=	dhn@FreeBSD.org
-COMMENT=	An OCR (Optical Character Recognition) program
+COMMENT=	OCR (Optical Character Recognition) program
+
+LICENSE=	GPLv2
 
 LIB_DEPENDS=	netpbm.1:${PORTSDIR}/graphics/netpbm
 
-USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-netpbm=${LOCALBASE}
+USE_GMAKE=	yes
 MAKE_ARGS=	prefix=${PREFIX} exec_prefix=${PREFIX} DESTDIR=${DESTDIR}
 
-MAN1=		gocr.1
-PORTDOCS=	examples.txt gocr.html unicode.txt
 PLIST_FILES=	bin/gocr
 
-.if !defined(WITHOUT_X11)
+MAN1=	gocr.1
+PORTDOCS=	*
+
+DOCSRCDIR1=	${WRKSRC}
+DOC_FILES1=	AUTHORS BUGS CREDITS HISTORY README READMEde.txt TODO
+
+DOCSRCDIR2=	${WRKSRC}/doc
+DOCSDIR2=	${DOCSDIR}/doc
+DOC_FILES2=	*.dtd *.xml *.html *.txt *.fig *.png
+
+OPTIONS_DEFINE=	X11
+OPTIONS_DEFAULT=	X11
+
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MX11}
 USE_TK_WRAPPER=	yes
 PLIST_FILES+=	bin/gocr.tcl
 .endif
@@ -29,14 +43,16 @@ PLIST_FILES+=	bin/gocr.tcl
 NO_STAGE=	yes
 post-patch:
 	@${REINPLACE_CMD} -e 's|@LIBS@|-L${LOCALBASE}/lib @LIBS@|g' ${WRKSRC}/src/Makefile.in
-.if defined(WITHOUT_X11)
+.if !  ${PORT_OPTIONS:MX11}
 	@${REINPLACE_CMD} -e '/gocr.tcl/d' ${WRKSRC}/src/Makefile.in
 .endif
 
 post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	@${MKDIR} ${DOCSDIR}
-	@(cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR})
+	${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${DOCSDIR}
+	@${MKDIR} ${DOCSDIR2}
+	${INSTALL_DATA} ${DOC_FILES2:S|^|${DOCSRCDIR2}/|} ${DOCSDIR2}
 .endif
 
 .include <bsd.port.mk>

Modified: head/graphics/gocr/distinfo
==============================================================================
--- head/graphics/gocr/distinfo	Tue Dec 17 20:42:26 2013	(r336765)
+++ head/graphics/gocr/distinfo	Tue Dec 17 20:49:16 2013	(r336766)
@@ -1,2 +1,2 @@
-SHA256 (gocr-0.49.tar.gz) = cc29931d50b3be11608dc79d1c7d8a20919dbe6313b1ba5dc88ecf99cffd171a
-SIZE (gocr-0.49.tar.gz) = 392386
+SHA256 (gocr-0.50.tar.gz) = bc261244f887419cba6d962ec1ad58eefd77176885093c4a43061e7fd565f5b5
+SIZE (gocr-0.50.tar.gz) = 419209
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 3 Dennis Herrmann freebsd_committer freebsd_triage 2013-12-17 20:49:38 UTC
State Changed
From-To: open->closed

Committed. Thanks!