Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Nov 2015 11:30:33 +0000 (UTC)
From:      William Grzybowski <wg@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r400736 - in head/devel: . ds2
Message-ID:  <201511041130.tA4BUXkR070718@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: wg
Date: Wed Nov  4 11:30:33 2015
New Revision: 400736
URL: https://svnweb.freebsd.org/changeset/ports/400736

Log:
  devel/ds2: Debug server for lldb
  
  ds2 is a debug server designed to be used with LLDB to perform remote debugging
  of Linux, Android, FreeBSD and Windows targets.
  
  WWW: https://github.com/facebook/ds2

Added:
  head/devel/ds2/
  head/devel/ds2/Makefile   (contents, props changed)
  head/devel/ds2/distinfo   (contents, props changed)
  head/devel/ds2/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Wed Nov  4 11:19:30 2015	(r400735)
+++ head/devel/Makefile	Wed Nov  4 11:30:33 2015	(r400736)
@@ -396,6 +396,7 @@
     SUBDIR += dragon
     SUBDIR += dreampie
     SUBDIR += drpython
+    SUBDIR += ds2
     SUBDIR += dulwich
     SUBDIR += duplo
     SUBDIR += dwarfdump

Added: head/devel/ds2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ds2/Makefile	Wed Nov  4 11:30:33 2015	(r400736)
@@ -0,0 +1,32 @@
+# $FreeBSD$
+
+PORTNAME=	ds2
+PORTVERSION=	20151028
+CATEGORIES=	devel
+
+MAINTAINER=	wg@FreeBSD.org
+COMMENT=	Debug server for lldb
+
+LICENSE=	NCSA
+LICENSE_NAME=	University of Illinois/NCSA Open Source License
+LICENSE_FILE=	${WRKSRC}/LICENSE
+LICENSE_PERMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	facebook
+GH_TAGNAME=	52c45f3
+
+USES=		cmake compiler
+
+PLIST_FILES=	bin/ds2
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/ds2 ${STAGEDIR}${PREFIX}/bin/
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 1002000 || ${COMPILER_TYPE} == "gcc"
+IGNORE=	builds only on greater than 10.1 and with clang
+.endif
+
+.include <bsd.port.post.mk>

Added: head/devel/ds2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ds2/distinfo	Wed Nov  4 11:30:33 2015	(r400736)
@@ -0,0 +1,2 @@
+SHA256 (facebook-ds2-20151028-52c45f3_GH0.tar.gz) = 9f14200a2cedb946429021cec37337442d02158ca25c530cca15f8a42fb6d9fa
+SIZE (facebook-ds2-20151028-52c45f3_GH0.tar.gz) = 218024

Added: head/devel/ds2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ds2/pkg-descr	Wed Nov  4 11:30:33 2015	(r400736)
@@ -0,0 +1,4 @@
+ds2 is a debug server designed to be used with LLDB to perform remote debugging
+of Linux, Android, FreeBSD and Windows targets.
+
+WWW: https://github.com/facebook/ds2



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511041130.tA4BUXkR070718>