View | Details | Raw Unified | Return to bug 156234
Collapse All | Expand All

(-)Makefile (-3 / +8 lines)
Lines 185-190 Link Here
185
185
186
OPTIONS=	GUI "Enable building of GUI tools" off \
186
OPTIONS=	GUI "Enable building of GUI tools" off \
187
		SVN "Enable required dependencies for SVN tools" off \
187
		SVN "Enable required dependencies for SVN tools" off \
188
		SVN_FBSD "Use devel/subversion-freebsd for SVN dependency" off \
188
		GITWEB "Install gitweb" off \
189
		GITWEB "Install gitweb" off \
189
		CONTRIB "Install contributed scripts" on \
190
		CONTRIB "Install contributed scripts" on \
190
		P4 "Enable Perforce support" on \
191
		P4 "Enable Perforce support" on \
Lines 265-274 Link Here
265
MAKE_ARGS+=	NO_TCLTK=yes
266
MAKE_ARGS+=	NO_TCLTK=yes
266
.endif
267
.endif
267
268
268
.ifdef (WITH_SVN)
269
.ifdef (WITH_SVN) || defined(WITH_SVN_FBSD)
269
RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \
270
RUN_DEPENDS+=	${SITE_PERL}/${PERL_ARCH}/Term/ReadKey.pm:${PORTSDIR}/devel/p5-Term-ReadKey \
270
		${SITE_PERL}/${PERL_ARCH}/SVN/Core.pm:${PORTSDIR}/devel/p5-subversion \
271
		${SITE_PERL}/${PERL_ARCH}/SVN/Core.pm:${PORTSDIR}/devel/p5-subversion
271
		svn:${PORTSDIR}/devel/subversion
272
.ifdef (WITH_SVN_FBSD) 
273
RUN_DEPENDS+=	svn:${PORTSDIR}/devel/subversion-freebsd
274
.else
275
RUN_DEPENDS+=	svn:${PORTSDIR}/devel/subversion
276
.endif
272
PLIST_SUB+=	SVN=""
277
PLIST_SUB+=	SVN=""
273
MAN1+=		git-svn.1
278
MAN1+=		git-svn.1
274
.else
279
.else

Return to bug 156234