Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Jul 2017 03:34:26 +0000 (UTC)
From:      Jose Alonso Cardenas Marquez <acm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r446364 - in head/devel: . dcd-client
Message-ID:  <201707220334.v6M3YQNC083567@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: acm
Date: Sat Jul 22 03:34:26 2017
New Revision: 446364
URL: https://svnweb.freebsd.org/changeset/ports/446364

Log:
  - New port: devel/dcd-client
  
  DCD is not an IDE. DCD is designed to provide autocompletion for your favorite
  text editor. If you are looking for an IDE, try one of these.
  
  DCD consists of a client and a server. The client (dcd-client) is almost always
  used through a text editor script or plugin, though it can be used from the
  command line. The server (dcd-server) is responsible for caching imported
  files, calculating autocomplete information, and sending it back to the client.
  
  WWW: https://github.com/dlang-community/DCD

Added:
  head/devel/dcd-client/
  head/devel/dcd-client/Makefile   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Jul 22 03:33:36 2017	(r446363)
+++ head/devel/Makefile	Sat Jul 22 03:34:26 2017	(r446364)
@@ -409,6 +409,7 @@
     SUBDIR += dbus-sharp
     SUBDIR += dbus-sharp-glib
     SUBDIR += dbus-tcl
+    SUBDIR += dcd-client
     SUBDIR += dcd-server
     SUBDIR += dcmtk
     SUBDIR += dconf

Added: head/devel/dcd-client/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/dcd-client/Makefile	Sat Jul 22 03:34:26 2017	(r446364)
@@ -0,0 +1,13 @@
+# Created by: Alonso Cardenas Marquez <acm@FreeBSD.org>
+# $FreeBSD$
+
+CATEGORIES=	devel
+PKGNAMESUFFIX=	-client
+
+COMMENT=	Auto-complete program for the D programming language (client)
+
+MASTERDIR=	${.CURDIR}/../../devel/dcd-server
+
+DUB_CONFIG=	client
+
+.include "${MASTERDIR}/Makefile"



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