From owner-svn-ports-all@freebsd.org Sun Jul 23 02:33:05 2017 Return-Path: Delivered-To: svn-ports-all@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 D37A1C31D12; Sun, 23 Jul 2017 02:33:05 +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 B00B66F1B5; Sun, 23 Jul 2017 02:33:05 +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 v6N2X4K0049527; Sun, 23 Jul 2017 02:33:04 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6N2X4bH049521; Sun, 23 Jul 2017 02:33:04 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201707230233.v6N2X4bH049521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Sun, 23 Jul 2017 02:33:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446437 - in head/devel: . derelict-util X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/devel: . derelict-util X-SVN-Commit-Revision: 446437 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 23 Jul 2017 02:33:05 -0000 Author: acm Date: Sun Jul 23 02:33:04 2017 New Revision: 446437 URL: https://svnweb.freebsd.org/changeset/ports/446437 Log: - New port: devel/derelict-util The base library for all Derelict packages WWW: https://github.com/DerelictOrg/DerelictUtil Added: head/devel/derelict-util/ head/devel/derelict-util/Makefile (contents, props changed) head/devel/derelict-util/distinfo (contents, props changed) head/devel/derelict-util/pkg-descr (contents, props changed) head/devel/derelict-util/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 23 02:31:33 2017 (r446436) +++ head/devel/Makefile Sun Jul 23 02:33:04 2017 (r446437) @@ -420,6 +420,7 @@ SUBDIR += deforaos-libsystem SUBDIR += deheader SUBDIR += delta + SUBDIR += derelict-util SUBDIR += desktop-file-utils SUBDIR += dev86 SUBDIR += devhelp Added: head/devel/derelict-util/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/derelict-util/Makefile Sun Jul 23 02:33:04 2017 (r446437) @@ -0,0 +1,33 @@ +# Created by: Alonso Cardenas Marquez +# $FreeBSD$ + +PORTNAME= derelict-util +PORTVERSION= 2.1.0 +CATEGORIES= devel +MASTER_SITES= https://github.com/DerelictOrg/DerelictUtil/archive/ +DISTNAME= ${PORTVERSION:S/^/v/} +DIST_SUBDIR= ${PORTNAME} + +MAINTAINER= acm@FreeBSD.org +COMMENT= The base library for all Derelict packages + +LICENSE= BSL + +BUILD_DEPENDS= ldmd2:lang/ldc \ + dub:devel/dub + +WRKSRC= ${WRKDIR}/DerelictUtil-${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}/lib/libDerelictUtil.a ${STAGEDIR}${D_LIB_DIR} + cd ${WRKSRC}/source && ${COPYTREE_SHARE} . ${STAGEDIR}${D_INCLUDE_DIR} "-name *\.d" + +.include Added: head/devel/derelict-util/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/derelict-util/distinfo Sun Jul 23 02:33:04 2017 (r446437) @@ -0,0 +1,3 @@ +TIMESTAMP = 1500697187 +SHA256 (derelict-util/v2.1.0.tar.gz) = b444b023a03a40e01a79f2e4f658961dcf7725640b79ee9ff63dfb8a2643d3f4 +SIZE (derelict-util/v2.1.0.tar.gz) = 8172 Added: head/devel/derelict-util/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/derelict-util/pkg-descr Sun Jul 23 02:33:04 2017 (r446437) @@ -0,0 +1,3 @@ +The base library for all Derelict packages + +WWW: https://github.com/DerelictOrg/DerelictUtil Added: head/devel/derelict-util/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/derelict-util/pkg-plist Sun Jul 23 02:33:04 2017 (r446437) @@ -0,0 +1,7 @@ +include/d/derelict/util/exception.d +include/d/derelict/util/loader.d +include/d/derelict/util/sharedlib.d +include/d/derelict/util/system.d +include/d/derelict/util/wintypes.d +include/d/derelict/util/xtypes.d +lib/d/libDerelictUtil.a