svn commit: r312534 - head/devel/fossil

Baptiste Daroussin bapt at FreeBSD.org
Mon Feb 18 22:08:10 UTC 2013


Author: bapt
Date: Mon Feb 18 22:08:09 2013
New Revision: 312534
URL: http://svnweb.freebsd.org/changeset/ports/312534

Log:
  Update to 20130216000435 aka 1.25
  Add 2 new options:
    - static: enable to build a static version of the binary
    - markdown: enable the markdown wiki format for embedded documentation
  
  Changes: http://www.fossil-scm.org/xfer/doc/trunk/www/changes.wiki

Modified:
  head/devel/fossil/Makefile
  head/devel/fossil/distinfo

Modified: head/devel/fossil/Makefile
==============================================================================
--- head/devel/fossil/Makefile	Mon Feb 18 21:59:56 2013	(r312533)
+++ head/devel/fossil/Makefile	Mon Feb 18 22:08:09 2013	(r312534)
@@ -1,7 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	fossil
-PORTVERSION=	20121022124804
+PORTVERSION=	20130216000435
 PORTEPOCH=	1
 CATEGORIES=	devel www
 MASTER_SITES=	http://www.fossil-scm.org/download/
@@ -20,8 +20,9 @@ HAS_CONFIGURE=	yes
 
 USE_GMAKE=	yes
 
-OPTIONS_DEFINE=	JSON
+OPTIONS_DEFINE=	JSON MARKDOWN STATIC
 JSON_DESC=	JSON API support
+MARKDOWN_DESC=	Markdown format support
 
 .include <bsd.port.options.mk>
 
@@ -29,6 +30,14 @@ JSON_DESC=	JSON API support
 CONFIGURE_ARGS+=	--json
 .endif
 
+.if ${PORT_OPTIONS:MMARKDOWN}
+CONFIGURE_ARGS+=	--markdown
+.endif
+
+.if ${PORT_OPTIONS:MSTATIC}
+CONFIGURE_ARGS+=	--static
+.endif
+
 do-install:
 	@${INSTALL_PROGRAM} ${WRKSRC}/fossil ${PREFIX}/bin/fossil
 

Modified: head/devel/fossil/distinfo
==============================================================================
--- head/devel/fossil/distinfo	Mon Feb 18 21:59:56 2013	(r312533)
+++ head/devel/fossil/distinfo	Mon Feb 18 22:08:09 2013	(r312534)
@@ -1,2 +1,2 @@
-SHA256 (fossil-src-20121022124804.tar.gz) = 35a6bf235ae3d5615c1411587380030d3f16153bf7c0974eeb4c21335a669b3d
-SIZE (fossil-src-20121022124804.tar.gz) = 2843987
+SHA256 (fossil-src-20130216000435.tar.gz) = 6fc0068a9174fc24ec9323cf7fddd771320248d9befc4a417746839a442c8de1
+SIZE (fossil-src-20130216000435.tar.gz) = 3541732


More information about the svn-ports-head mailing list