There are quite a few changes and (welcomed) fixes: please see the release notes in ${WRKSRC}/Documentation/RelNotes-1.5.4. A small subset of the changes are included here. Added ----- * i18n support for gitk. Removal ------- * "git svnimport" was removed in favor of "git svn". It is still there in the source tree (contrib/examples) but unsupported. * As git-commit and git-status have been rewritten, "git runstatus" helper script lost all its users and has been removed. Fixes since v1.5.3 (unique to the 1.5.4 branch) ------------------ These fixes are only in v1.5.4 and not backported to v1.5.3 maintenance series. * The way "git diff --check" behaves is much more consistent with the way "git apply --whitespace=warn" works. * "git svn" talking with the SVN over HTTP will correctly quote branch and project names. * "git config" did not work correctly on platforms that define REG_NOMATCH to an even number. * Recent versions of AsciiDoc 8 has a change to break our documentation; a workaround has been implemented. * "git diff --color-words" colored context lines in a wrong color.
35 lines
831 B
Makefile
35 lines
831 B
Makefile
# $NetBSD: Makefile,v 1.3 2008/02/06 07:53:32 bjs Exp $
|
|
#
|
|
|
|
PKGNAME= scmgit-docs-${GIT_VERSION}
|
|
COMMENT= GIT Tree History Storage Tool (documentation)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../scmgit-base/distinfo
|
|
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
|
|
BUILD_TARGET= doc
|
|
|
|
USE_LANGUAGES= # none
|
|
INSTALL_TARGET= install-doc
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.for d in asciidoc docbook-xsl
|
|
GITDOCDEP.${d}= ${${${PKG_INFO} -E ${d} || echo:L:sh}:L:C/[^[0-9]]*/ /g:[1..3]:ts.}
|
|
.endfor
|
|
|
|
.if !empty(GITDOCDEP.asciidoc:M[8]*)
|
|
MAKE_ENV+= AsciiDoc8=YesPlease
|
|
.endif
|
|
|
|
.if !empty(GITDOCDEP.docbook-xsl:M1.7[2-9]*)
|
|
MAKE_ENV+= DOCBOOK_XSL_172=YesPlease
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../scmgit/Makefile.common"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|