1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-11 02:50:24 +00:00

- 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
This commit is contained in:
Jose Alonso Cardenas Marquez 2017-07-22 03:34:26 +00:00
parent 42165ccd39
commit 5a1f9a7f29
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=446364
2 changed files with 14 additions and 0 deletions

View File

@ -409,6 +409,7 @@
SUBDIR += dbus-sharp
SUBDIR += dbus-sharp-glib
SUBDIR += dbus-tcl
SUBDIR += dcd-client
SUBDIR += dcd-server
SUBDIR += dcmtk
SUBDIR += dconf

13
devel/dcd-client/Makefile Normal file
View File

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