From owner-svn-ports-all@FreeBSD.ORG Sun Jul 27 11:22:39 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0218663E; Sun, 27 Jul 2014 11:22:39 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 E2DFA217D; Sun, 27 Jul 2014 11:22:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6RBMcFC050469; Sun, 27 Jul 2014 11:22:38 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6RBMbDu050463; Sun, 27 Jul 2014 11:22:37 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201407271122.s6RBMbDu050463@svn.freebsd.org> From: Antoine Brodin Date: Sun, 27 Jul 2014 11:22:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r363047 - in head/devel: . libbde libbde/files X-SVN-Group: ports-head 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.18 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, 27 Jul 2014 11:22:39 -0000 Author: antoine Date: Sun Jul 27 11:22:37 2014 New Revision: 363047 URL: http://svnweb.freebsd.org/changeset/ports/363047 QAT: https://qat.redports.org/buildarchive/r363047/ Log: New port: devel/libbde Library and tools to access the BitLocker Drive Encryption (BDE) format. The BDE format is used by Windows, as of Vista, to encrypt data on a storage media volume. WWW: https://code.google.com/p/libbde/ Added: head/devel/libbde/ head/devel/libbde/Makefile (contents, props changed) head/devel/libbde/distinfo (contents, props changed) head/devel/libbde/files/ head/devel/libbde/files/patch-bdetools__bdeoutput.c (contents, props changed) head/devel/libbde/pkg-descr (contents, props changed) head/devel/libbde/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jul 27 11:19:16 2014 (r363046) +++ head/devel/Makefile Sun Jul 27 11:22:37 2014 (r363047) @@ -949,6 +949,7 @@ SUBDIR += libatomic_ops SUBDIR += libaura SUBDIR += libavl + SUBDIR += libbde SUBDIR += libbegemot SUBDIR += libbfd SUBDIR += libbinio Added: head/devel/libbde/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbde/Makefile Sun Jul 27 11:22:37 2014 (r363047) @@ -0,0 +1,32 @@ +# Created by: Antoine Brodin +# $FreeBSD$ + +PORTNAME= libbde +DISTVERSION= alpha-20140607 +CATEGORIES= devel +MASTER_SITES= https://googledrive.com/host/0B3fBvzttpiiSX2VCRk16TnpDd0U/ \ + LOCAL/antoine + +MAINTAINER= antoine@FreeBSD.org +COMMENT= Library and tools to access the BitLocker Drive Encryption volumes + +LICENSE= LGPL3 + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-python --with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG} +USES= fuse gettext iconv libtool pathfix pkgconfig +USE_OPENSSL= yes +USE_PYTHON= 2 +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E} + +PORTDOCS= AUTHORS ChangeLog + +OPTIONS_DEFINE= DOCS + +post-install: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + +.include Added: head/devel/libbde/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbde/distinfo Sun Jul 27 11:22:37 2014 (r363047) @@ -0,0 +1,2 @@ +SHA256 (libbde-alpha-20140607.tar.gz) = af1644e3f1a40df6fdec1eed9d96fa6652a7557c0244cd2ee38ad327cdfa15db +SIZE (libbde-alpha-20140607.tar.gz) = 1532802 Added: head/devel/libbde/files/patch-bdetools__bdeoutput.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbde/files/patch-bdetools__bdeoutput.c Sun Jul 27 11:22:37 2014 (r363047) @@ -0,0 +1,11 @@ +--- ./bdetools/bdeoutput.c.orig 2014-01-12 17:21:23.000000000 +0000 ++++ ./bdetools/bdeoutput.c 2014-07-27 11:10:47.000000000 +0000 +@@ -23,6 +23,8 @@ + #include + #include + ++#include ++ + #if defined( HAVE_LOCAL_LIBUNA ) + #include + #elif defined( HAVE_LIBUNA_H ) Added: head/devel/libbde/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbde/pkg-descr Sun Jul 27 11:22:37 2014 (r363047) @@ -0,0 +1,4 @@ +Library and tools to access the BitLocker Drive Encryption (BDE) encrypted +volumes. + +WWW: http://code.google.com/p/libbde/ Added: head/devel/libbde/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/libbde/pkg-plist Sun Jul 27 11:22:37 2014 (r363047) @@ -0,0 +1,20 @@ +bin/bdeinfo +bin/bdemount +include/libbde.h +include/libbde/codepage.h +include/libbde/definitions.h +include/libbde/error.h +include/libbde/extern.h +include/libbde/features.h +include/libbde/types.h +lib/libbde.a +lib/libbde.so +lib/libbde.so.1 +lib/libbde.so.1.0.0 +%%PYTHON_SITELIBDIR%%/pybde.a +%%PYTHON_SITELIBDIR%%/pybde.so +libdata/pkgconfig/libbde.pc +man/man1/bdeinfo.1.gz +man/man1/bdemount.1.gz +man/man3/libbde.3.gz +@dirrm include/libbde