svn commit: r446364 - in head/devel: . dcd-client

Jose Alonso Cardenas Marquez acm at FreeBSD.org
Sat Jul 22 03:34:27 UTC 2017


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 at 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"


More information about the svn-ports-all mailing list