9e622a0dc2
Changes for version 2.18 (2022-02-23) * Added support for [./ssl-server.md|SSL/TLS server mode] for commands like "[/help?cmd=server|fossil server]" and "[/help?cmd=http|fossil http]" * The new [/help?cmd=cherry-pick|cherry-pick command] is an alias for [/help?cmd=merge|merge --cherrypick]. * Add new setting "[/help?cmd=large-file-size|large-file-size]". If the size of any file in a commit exceeds this size, a warning is issued. * Query parameter "year=YYYY" is now accepted by [/help?cmd=/timeline|/timeline]. * The [/help?cmd=tar|tar] and [/help?cmd=zip|zip commands] no longer sterilize the manifest file. * Futher improvement to diff alignment in cases that involve both edits and indentation changes. * [/doc/trunk/www/chat.md|Chat] improvements:<ul> <li> [/help?cmd=/chat|The /chat page] input options have been reworked again for better cross-browser portability. <li> When sending a [/help?cmd=/chat|/chat] message fails, it is no longer immediately lost and sending may optionally be retried. <li> [/help?cmd=/chat|/chat] can now optionally embed attachments of certain types directly into message bodies via an iframe. <li> Add the "--as FILENAME" option to the "[/help?cmd=chat|fossil chat send]" command. <li> Added the "[/help?cmd=chat|fossil chat pull]" command, available to administrators only, for backing up the chat conversation. </ul> * Promote the test-detach command into the [/help?cmd=detach|detach command]. * For "[/help?cmd=pull|fossil pull]" with the --from-parent-project option, if no URL is specified then use the last URL from the most recent prior "fossil pull --from-parent-project". * Add options --project-name and --project-desc to the "[/help?cmd=init|fossil init]" command. * The [/help?cmd=/ext|/ext page] generates the SERVER_SOFTWARE environment variable for clients. * Fix the REQUEST_URI [/doc/trunk/www/aboutcgi.wiki#cgivar|CGI variable] such that it includes the query string. This is how most other systems understand REQUEST_URI. * Added the --transport-command option to [/help?cmd=sync|fossil sync] and similar.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
# $NetBSD: Makefile,v 1.73 2022/02/24 11:03:13 js Exp $
|
|
|
|
DISTNAME= fossil-src-2.18
|
|
PKGNAME= ${DISTNAME:S/-src//}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= https://fossil-scm.org/home/tarball/version-${PKGVERSION_NOREV}/
|
|
|
|
MAINTAINER= js@pkgsrc.org
|
|
HOMEPAGE= https://www.fossil-scm.org/
|
|
COMMENT= High-reliability, distributed software configuration management
|
|
LICENSE= 2-clause-bsd
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl:Q}
|
|
CONFIGURE_ARGS+= --with-zlib=${BUILDLINK_PREFIX.zlib:Q}
|
|
|
|
INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 share/doc/${PKGBASE}
|
|
|
|
LDFLAGS.Darwin+= -liconv
|
|
|
|
.include "options.mk"
|
|
|
|
pre-configure:
|
|
${MKDIR} ${WRKSRC}/bld
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fossil ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/fossil.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_DATA} ${WRKSRC}/COPYRIGHT-BSD2.txt \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
${INSTALL_DATA} ${WRKSRC}/extsrc/linenoise.h \
|
|
${DESTDIR}${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.if ${OPSYS} == "Darwin"
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.endif
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|