* Compilation of sha1_file.c on BSD platforms were broken due to our recent use of getrlimit() without including <sys/resource.h>. * "git config" did not diagnose incorrect configuration variable names. * "git format-patch" did not wrap a long subject line that resulted from rfc2047 encoding. * "git instaweb" should work better again with plackup. * "git log --max-count=4 -Sfoobar" now shows 4 commits that changes the number of occurrences of string "foobar"; it used to scan only for 4 commits and then emitted only matching ones. * "git log --first-parent --boundary $c^..$c" segfaulted on a merge. * "git pull" into an empty branch should have behaved as if fast-forwarding from emptiness to the version being pulled, with the usual protection against overwriting untracked files. * "git submodule" that is run while a merge in the superproject is in conflicted state tried to process each conflicted submodule up to three times. * "git status" spent all the effort to notice racily-clean index entries but didn't update the index file to help later operations go faster in some cases.
34 lines
914 B
Text
34 lines
914 B
Text
# $NetBSD: Makefile.common,v 1.18 2011/04/08 07:28:39 adam Exp $
|
|
#
|
|
# used by devel/scmgit-base/Makefile
|
|
# used by devel/scmgit-docs/Makefile
|
|
|
|
.include "../../devel/scmgit/Makefile.version"
|
|
|
|
DISTNAME= git-${GIT_VERSION}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES?= http://www.kernel.org/pub/software/scm/git/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE?= http://git.or.cz/
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
PATCHDIR= ${.CURDIR}/../../devel/scmgit-base/patches
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/scmgit-base/distinfo
|
|
|
|
USE_TOOLS+= gmake tar perl sh
|
|
EXTRACT_USING= gtar
|
|
|
|
PKG_SYSCONFSUBDIR= git
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-perl=${PERL5:Q}
|
|
CONFIGURE_ARGS+= --with-shell=${SH:Q}
|
|
CONFIGURE_ARGS+= --with-tar=${TAR:Q}
|
|
CONFIGURE_ARGS+= --mandir=${${PREFIX}/${PKGMANDIR}:L:Q}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|