svn commit: r361895 - in head/devel/cvs: . files

Andrey A. Chernov ache at FreeBSD.org
Tue Jul 15 08:25:45 UTC 2014


Author: ache
Date: Tue Jul 15 08:25:44 2014
New Revision: 361895
URL: http://svnweb.freebsd.org/changeset/ports/361895
QAT: https://qat.redports.org/buildarchive/r361895/

Log:
  Fix build on systems without kerberos installed by adding
  KERBEROS option (default on, so unchanged from previous state)

Deleted:
  head/devel/cvs/files/
Modified:
  head/devel/cvs/Makefile

Modified: head/devel/cvs/Makefile
==============================================================================
--- head/devel/cvs/Makefile	Tue Jul 15 08:10:27 2014	(r361894)
+++ head/devel/cvs/Makefile	Tue Jul 15 08:25:44 2014	(r361895)
@@ -11,6 +11,9 @@ COMMENT=	Version control system
 
 LICENSE=	GPLv2
 
+OPTIONS_DEFINE=		KERBEROS
+OPTIONS_DEFAULT=	KERBEROS
+
 USES=		makeinfo tar:xz uidfix
 WRKSRC=		${WRKDIR}/call/cvs-build
 INFO=		cvs cvsclient
@@ -19,6 +22,12 @@ INFO=		cvs cvsclient
 DESTDIRNAME=	NADA
 MAKE_ARGS=	DESTDIR=${STAGEDIR}${PREFIX}
 
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MKERBEROS}
+MAKE_ARGS+=	MK_KERBEROS_SUPPORT=yes
+.endif
+
 .include <bsd.port.pre.mk>
 
 .if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000


More information about the svn-ports-all mailing list