freebsd-ports/devel/fossil/Makefile
Baptiste Daroussin 4c58109950 Update to 20121022124804 (aka 1.24)
Changes:
  * Added support for WYSIWYG editing of wiki pages.
  * Allow style= attribute to occur in HTML markup on wiki pages.
  * Added the --tk option to the "fossi diff" and "fossil stash diff" commands,
  * Update the "fossil stash" command so that it always prompts for a comment if the -m option is omitted.
  * Added the "fossil stash show" command.
  * Added --age and -t options to the "fossil ls" command.
  * Add the --baseurl option to "fossil server" and "fossil http" commands, so that those commands can be used with reverse proxies.
  * Add the --template option to the "fossil init" command
  * Add the diff-binary setting

Many more see:
http://www.fossil-scm.org/fossil/doc/trunk/www/changes.wiki

Feature safe:	yes
2012-10-23 11:03:40 +00:00

38 lines
664 B
Makefile

# $FreeBSD$
PORTNAME= fossil
PORTVERSION= 20121022124804
PORTEPOCH= 1
CATEGORIES= devel www
MASTER_SITES= http://www.fossil-scm.org/download/
DISTNAME= ${PORTNAME}-src-${PORTVERSION}
MAINTAINER= bapt@FreeBSD.org
COMMENT= DSCM with built-in wiki, http interface and server, tickets database
LICENSE= BSD
MAKE_JOBS_UNSAFE= yes
PLIST_FILES= bin/fossil
HAS_CONFIGURE= yes
USE_GMAKE= yes
OPTIONS_DEFINE= JSON
JSON_DESC= JSON API support
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MJSON}
CONFIGURE_ARGS+= --json
.endif
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/fossil ${PREFIX}/bin/fossil
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>