From owner-svn-ports-head@freebsd.org Sat Jul 22 03:26:47 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 47CC6C7DE14; Sat, 22 Jul 2017 03:26:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 21E7E694D0; Sat, 22 Jul 2017 03:26:47 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6M3Qkc4078915; Sat, 22 Jul 2017 03:26:46 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6M3QjV5078910; Sat, 22 Jul 2017 03:26:45 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201707220326.v6M3QjV5078910@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sat, 22 Jul 2017 03:26:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446359 - in head/devel: . libddoc X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/devel: . libddoc X-SVN-Commit-Revision: 446359 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jul 2017 03:26:47 -0000 Author: acm Date: Sat Jul 22 03:26:45 2017 New Revision: 446359 URL: https://svnweb.freebsd.org/changeset/ports/446359 Log: - New port: devel/libddoc D implementation of the DDoc macro system WWW: https://github.com/economicmodeling/libddoc Added: head/devel/libddoc/ head/devel/libddoc/Makefile (contents, props changed) head/devel/libddoc/distinfo (contents, props changed) head/devel/libddoc/pkg-descr (contents, props changed) head/devel/libddoc/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jul 22 03:25:14 2017 (r446358) +++ head/devel/Makefile Sat Jul 22 03:26:45 2017 (r446359) @@ -1286,6 +1286,7 @@ SUBDIR += libdbusmenu SUBDIR += libdbusmenu-qt SUBDIR += libdbusmenu-qt5 + SUBDIR += libddoc SUBDIR += libdevq SUBDIR += libdfui SUBDIR += libdisasm Added: head/devel/libddoc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libddoc/Makefile Sat Jul 22 03:26:45 2017 (r446359) @@ -0,0 +1,33 @@ +# Created by: Alonso Cardenas Marquez +# $FreeBSD$ + +PORTNAME= libddoc +PORTVERSION= 0.2.0 +CATEGORIES= devel +MASTER_SITES= https://github.com/economicmodeling/libddoc/archive/ +DISTNAME= ${DISTVERSION:S/^/v/} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= acm@FreeBSD.org +COMMENT= D implementation of the DDoc macro system + +LICENSE= BSL + +BUILD_DEPENDS= ldmd2:lang/ldc \ + dub:devel/dub + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +DUB_CMD= ${LOCALBASE}/bin/dub build --build=release +D_INCLUDE_DIR= ${PREFIX}/include/d +D_LIB_DIR= ${PREFIX}/lib/d + +do-build: + @cd ${WRKSRC} && ${DUB_CMD} + +do-install: + @${MKDIR} ${STAGEDIR}${D_INCLUDE_DIR} + @${MKDIR} ${STAGEDIR}${D_LIB_DIR} + ${INSTALL_DATA} ${WRKSRC}/libddoc.a ${STAGEDIR}${D_LIB_DIR} + cd ${WRKSRC}/src && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d" + +.include Added: head/devel/libddoc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libddoc/distinfo Sat Jul 22 03:26:45 2017 (r446359) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500623954 +SHA256 (libddoc/v0.2.0.tar.gz) = 6249c3fe0e6d0057b1daab4f51282f9bf0c723d920c3a2f72af542f75f79ca24 +SIZE (libddoc/v0.2.0.tar.gz) = 19163 Added: head/devel/libddoc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libddoc/pkg-descr Sat Jul 22 03:26:45 2017 (r446359) @@ -0,0 +1,3 @@ +D implementation of the DDoc macro system + +WWW: https://github.com/economicmodeling/libddoc Added: head/devel/libddoc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libddoc/pkg-plist Sat Jul 22 03:26:45 2017 (r446359) @@ -0,0 +1,8 @@ +include/d/ddoc/comments.d +include/d/ddoc/highlight.d +include/d/ddoc/lexer.d +include/d/ddoc/macros.d +include/d/ddoc/package.d +include/d/ddoc/sections.d +include/d/ddoc/standalone.d +lib/d/libddoc.a