ad0f4e2744
* "git p4" dealing with changes in binary files were broken by a change in 1.9 release. * The shell prompt script (in contrib/), when using the PROMPT_COMMAND interface, used an unsafe construct when showing the branch name in $PS1. * "git rebase" used a POSIX shell construct FreeBSD /bin/sh does not work well with. * Some more Unicode codepoints defined in Unicode 6.3 as having zero width have been taught to our display column counting logic. * Some tests used shell constructs that did not work well on FreeBSD.
32 lines
856 B
Text
32 lines
856 B
Text
# $NetBSD: Makefile.common,v 1.2 2014/05/10 11:43:30 adam Exp $
|
|
#
|
|
# used by devel/git-base/Makefile
|
|
# used by devel/git-docs/Makefile
|
|
# used by devel/git-gitk/Makefile
|
|
# used by www/gitweb/Makefile
|
|
|
|
.include "../../devel/git/Makefile.version"
|
|
|
|
DISTNAME= git-${GIT_VERSION}
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES?= https://www.kernel.org/pub/software/scm/git/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER?= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE?= http://git-scm.com/
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
PATCHDIR= ${.CURDIR}/../../devel/git-base/patches
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/git-base/distinfo
|
|
|
|
USE_TOOLS+= gmake tar sh
|
|
|
|
PKG_SYSCONFSUBDIR= git
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-shell=${SH:Q}
|
|
CONFIGURE_ARGS+= TAR=${TAR:Q}
|
|
CONFIGURE_ARGS+= --mandir=${${PREFIX}/${PKGMANDIR}:L:Q}
|
|
CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
|