svn commit: r334650 - in head/devel: . libesedb

Antoine Brodin antoine at FreeBSD.org
Sat Nov 23 09:21:44 UTC 2013


Author: antoine
Date: Sat Nov 23 09:21:43 2013
New Revision: 334650
URL: http://svnweb.freebsd.org/changeset/ports/334650

Log:
  New port: devel/libesedb
  Library and tools to access the Extensible Storage Engine (ESE) Database File
  (EDB) format.  ESEDB is used in many different applications like Windows Search,
  Windows Mail, Exchange, Active Directory, etc.
  
  WWW: http://code.google.com/p/libesedb/

Added:
  head/devel/libesedb/
  head/devel/libesedb/Makefile   (contents, props changed)
  head/devel/libesedb/distinfo   (contents, props changed)
  head/devel/libesedb/pkg-descr   (contents, props changed)
  head/devel/libesedb/pkg-plist   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Nov 23 08:57:06 2013	(r334649)
+++ head/devel/Makefile	Sat Nov 23 09:21:43 2013	(r334650)
@@ -972,6 +972,7 @@
     SUBDIR += libeio
     SUBDIR += libelf
     SUBDIR += libepp-nicbr
+    SUBDIR += libesedb
     SUBDIR += libestr
     SUBDIR += libev
     SUBDIR += libevent

Added: head/devel/libesedb/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libesedb/Makefile	Sat Nov 23 09:21:43 2013	(r334650)
@@ -0,0 +1,33 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libesedb
+DISTVERSION=	alpha-20120102
+CATEGORIES=	devel
+MASTER_SITES=	https://googledrive.com/host/0B3fBvzttpiiSN082cmxsbHB0anc/ \
+		LOCAL/antoine
+
+MAINTAINER=	antoine at FreeBSD.org
+COMMENT=	Library and tools to access the ESEDB format
+
+LICENSE=	LGPL3
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--with-libintl-prefix=${LOCALBASE} ${ICONV_CONFIGURE_ARG}
+USES=		gettext iconv pathfix
+USE_LDCONFIG=	yes
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
+
+PORTDOCS=	AUTHORS ChangeLog
+
+OPTIONS_DEFINE=	DOCS
+
+.include <bsd.port.options.mk>
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/devel/libesedb/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libesedb/distinfo	Sat Nov 23 09:21:43 2013	(r334650)
@@ -0,0 +1,2 @@
+SHA256 (libesedb-alpha-20120102.tar.gz) = 068ab53f434376e2c0f4bfa56e98b324a8b2bee89b3588b524f3541112f40e26
+SIZE (libesedb-alpha-20120102.tar.gz) = 1097285

Added: head/devel/libesedb/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libesedb/pkg-descr	Sat Nov 23 09:21:43 2013	(r334650)
@@ -0,0 +1,5 @@
+Library and tools to access the Extensible Storage Engine (ESE) Database File
+(EDB) format.  ESEDB is used in many different applications like Windows Search,
+Windows Mail, Exchange, Active Directory, etc.
+
+WWW: http://code.google.com/p/libesedb/

Added: head/devel/libesedb/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libesedb/pkg-plist	Sat Nov 23 09:21:43 2013	(r334650)
@@ -0,0 +1,17 @@
+bin/esedbexport
+bin/esedbinfo
+include/libesedb.h
+include/libesedb/codepage.h
+include/libesedb/definitions.h
+include/libesedb/error.h
+include/libesedb/extern.h
+include/libesedb/features.h
+include/libesedb/types.h
+lib/libesedb.a
+lib/libesedb.la
+lib/libesedb.so
+lib/libesedb.so.1
+libdata/pkgconfig/libesedb.pc
+man/man1/esedbinfo.1.gz
+man/man3/libesedb.3.gz
+ at dirrm include/libesedb


More information about the svn-ports-all mailing list