svn commit: r400148 - head/deskutils/owncloudclient

Kubilay Kocak koobs at FreeBSD.org
Sun Oct 25 10:38:29 UTC 2015


Author: koobs
Date: Sun Oct 25 10:38:27 2015
New Revision: 400148
URL: https://svnweb.freebsd.org/changeset/ports/400148

Log:
  deskutils/owncloudclient: Add DEBUG option
  
  Add a debug option allowing users to easily enable debug builds. This can help
  isolation of particular bugs (like crashes) [1]
  
  [1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203885
  
  PR:		203919
  Submitted by:	Yonas Yanfa <yonas fizk net> (maintainer)

Modified:
  head/deskutils/owncloudclient/Makefile

Modified: head/deskutils/owncloudclient/Makefile
==============================================================================
--- head/deskutils/owncloudclient/Makefile	Sun Oct 25 08:16:49 2015	(r400147)
+++ head/deskutils/owncloudclient/Makefile	Sun Oct 25 10:38:27 2015	(r400148)
@@ -28,12 +28,14 @@ INSTALLS_ICONS=	yes
 
 LDFLAGS+=	-L${LOCALBASE}/lib
 
-OPTIONS_DEFINE=		DOCS
+OPTIONS_DEFINE=		DEBUG DOCS
 
 DOCS_BUILD_DEPENDS=	sphinx-build:${PORTSDIR}/textproc/py-sphinx
 DOCS_USE=		tex=dvipsk:build,latex:build
 DOCS_CMAKE_ON=		-DWITH_DOC:BOOL=ON
 
+DEBUG_CMAKE_ON=		-DCMAKE_BUILD_TYPE:STRING=Debug
+
 PLIST_SUB=	VERSION=${PORTVERSION}
 
 .include <bsd.port.options.mk>


More information about the svn-ports-all mailing list