Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 6 Oct 2013 21:14:55 +0000 (UTC)
From:      Danilo Egea Gondolfo <danilo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329629 - head/textproc/svn2cl
Message-ID:  <201310062114.r96LEtek009009@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: danilo
Date: Sun Oct  6 21:14:55 2013
New Revision: 329629
URL: http://svnweb.freebsd.org/changeset/ports/329629

Log:
  - Update from 0.13 to 0.14
  - Take maintainership
  - Simplify RUN_DEPENDS
  - Add stage support
  - Add DOCS option
  
  Changelog: http://arthurdejong.org/svn2cl/news.html#20130913
  
  Approved by:	wg/culot (mentors, implicit)

Modified:
  head/textproc/svn2cl/Makefile
  head/textproc/svn2cl/distinfo
  head/textproc/svn2cl/pkg-plist

Modified: head/textproc/svn2cl/Makefile
==============================================================================
--- head/textproc/svn2cl/Makefile	Sun Oct  6 20:55:20 2013	(r329628)
+++ head/textproc/svn2cl/Makefile	Sun Oct  6 21:14:55 2013	(r329629)
@@ -2,38 +2,35 @@
 # $FreeBSD$
 
 PORTNAME=	svn2cl
-PORTVERSION=	0.13
+PORTVERSION=	0.14
 CATEGORIES=	textproc
-MASTER_SITES=	http://arthurdejong.org/svn2cl/ \
-		LOCAL/avl
+MASTER_SITES=	http://arthurdejong.org/svn2cl/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	danilo@FreeBSD.org
 COMMENT=	Subversion ChangeLog generator
 
-RUN_DEPENDS=	${LOCALBASE}/bin/xsltproc:${PORTSDIR}/textproc/libxslt \
-		${LOCALBASE}/bin/svn:${PORTSDIR}/devel/subversion
+RUN_DEPENDS=	xsltproc:${PORTSDIR}/textproc/libxslt \
+		svn:${PORTSDIR}/devel/subversion
 
 NO_BUILD=	yes
-MAN1=		${PORTNAME}.1
 PORTDOCS=	ChangeLog NEWS README TODO
 DATAFILES=	authors.xml svn2cl.xsl svn2html.css svn2html.xsl
 
-NO_STAGE=	yes
+OPTIONS_DEFINE=	DOCS
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|XSL="$$dir|XSL="${DATADIR}|' ${WRKSRC}/${PORTNAME}.sh
 
 do-install:
-	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh ${PREFIX}/bin/${PORTNAME}
-	${INSTALL_MAN} ${WRKSRC}/${MAN1} ${MANPREFIX}/man/man1
-	@${MKDIR} ${DATADIR}
+	${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+	${INSTALL_MAN} ${WRKSRC}/svn2cl.1 ${STAGEDIR}${MANPREFIX}/man/man1
+	@${MKDIR} ${STAGEDIR}${DATADIR}
 .for i in ${DATAFILES}
-	${INSTALL_DATA} ${WRKSRC}/${i} ${DATADIR}
+	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}
 .endfor
-.if !defined(NOPORTDOCS)
-	@${MKDIR} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for i in ${PORTDOCS}
-	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
 .endfor
-.endif
 
 .include <bsd.port.mk>

Modified: head/textproc/svn2cl/distinfo
==============================================================================
--- head/textproc/svn2cl/distinfo	Sun Oct  6 20:55:20 2013	(r329628)
+++ head/textproc/svn2cl/distinfo	Sun Oct  6 21:14:55 2013	(r329629)
@@ -1,2 +1,2 @@
-SHA256 (svn2cl-0.13.tar.gz) = 504d7a2866866f8c675bfa7ce0a99768531256c824567306a4fd47f9ffd1b5a8
-SIZE (svn2cl-0.13.tar.gz) = 19187
+SHA256 (svn2cl-0.14.tar.gz) = a1beb1ee03c7247c2f89792ac5bf91cb4e5ee9bdee839e2208ec9f3aacd738f2
+SIZE (svn2cl-0.14.tar.gz) = 19399

Modified: head/textproc/svn2cl/pkg-plist
==============================================================================
--- head/textproc/svn2cl/pkg-plist	Sun Oct  6 20:55:20 2013	(r329628)
+++ head/textproc/svn2cl/pkg-plist	Sun Oct  6 21:14:55 2013	(r329629)
@@ -1,4 +1,5 @@
 bin/svn2cl
+man/man1/svn2cl.1.gz
 %%DATADIR%%/authors.xml
 %%DATADIR%%/svn2cl.xsl
 %%DATADIR%%/svn2html.css



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310062114.r96LEtek009009>