Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Feb 2013 10:31:10 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312094 - in head/devel: . libevtx
Message-ID:  <201302121031.r1CAVA9H088926@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Tue Feb 12 10:31:09 2013
New Revision: 312094
URL: http://svnweb.freebsd.org/changeset/ports/312094

Log:
  Library and tooling to access the Windows XML Event Log (EVTX) format
  
  WWW: http://code.google.com/p/libevtx/
  
  PR:		ports/176007
  Submitted by:	Antoine Brodin <antoine@FreeBSD.org>

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

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Feb 12 10:30:26 2013	(r312093)
+++ head/devel/Makefile	Tue Feb 12 10:31:09 2013	(r312094)
@@ -965,6 +965,7 @@
     SUBDIR += libevent-hiphop
     SUBDIR += libevent2
     SUBDIR += libevt
+    SUBDIR += libevtx
     SUBDIR += libewf
     SUBDIR += libexecinfo
     SUBDIR += libexplain

Added: head/devel/libevtx/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libevtx/Makefile	Tue Feb 12 10:31:09 2013	(r312094)
@@ -0,0 +1,46 @@
+# Created by: Antoine Brodin <antoine@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libevtx
+DISTVERSION=	alpha-20130209
+CATEGORIES=	devel
+MASTER_SITES=	GOOGLE_CODE
+
+MAINTAINER=	antoine@FreeBSD.org
+COMMENT=	Library and tooling to access the Windows XML Event Log (EVTX) format
+
+LICENSE=	LGPL3
+
+GNU_CONFIGURE=	yes
+CONFIGURE_ARGS=	--enable-python
+USE_GETTEXT=	yes
+USE_GNOME=	gnomehack
+USE_ICONV=	yes
+USE_PYTHON=	yes
+USE_LDCONFIG=	yes
+
+LDFLAGS+=	-L${LOCALBASE}/lib
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
+
+MAN1=		evtxinfo.1
+MAN3=		libevtx.3
+
+OPTIONS_DEFINE=	DOCS EXAMPLES
+
+PORTDOCS=	AUTHORS ChangeLog
+PORTEXAMPLES=	*
+
+.include <bsd.port.options.mk>
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+	@${MKDIR} ${DOCSDIR}
+	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+.endif
+.if ${PORT_OPTIONS:MEXAMPLES}
+	@${MKDIR} ${EXAMPLESDIR}
+	${INSTALL_DATA} ${WRKSRC}/examples/${PORTNAME}/* \
+		${WRKSRC}/examples/${PORTNAME:S,lib,py,}/* ${EXAMPLESDIR}
+.endif
+
+.include <bsd.port.mk>

Added: head/devel/libevtx/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libevtx/distinfo	Tue Feb 12 10:31:09 2013	(r312094)
@@ -0,0 +1,2 @@
+SHA256 (libevtx-alpha-20130209.tar.gz) = 777eedcee4c5104768feca7c6c2702742dbda9cd4579277d6ad8e920cb3d8329
+SIZE (libevtx-alpha-20130209.tar.gz) = 1640979

Added: head/devel/libevtx/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libevtx/pkg-descr	Tue Feb 12 10:31:09 2013	(r312094)
@@ -0,0 +1,3 @@
+Library and tooling to access the Windows XML Event Log (EVTX) format
+
+WWW: http://code.google.com/p/libevtx/

Added: head/devel/libevtx/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libevtx/pkg-plist	Tue Feb 12 10:31:09 2013	(r312094)
@@ -0,0 +1,18 @@
+bin/evtxexport
+bin/evtxinfo
+include/libevtx.h
+include/libevtx/codepage.h
+include/libevtx/definitions.h
+include/libevtx/error.h
+include/libevtx/extern.h
+include/libevtx/features.h
+include/libevtx/types.h
+lib/libevtx.a
+lib/libevtx.la
+lib/libevtx.so
+lib/libevtx.so.1
+%%PYTHON_SITELIBDIR%%/pyevtx.a
+%%PYTHON_SITELIBDIR%%/pyevtx.la
+%%PYTHON_SITELIBDIR%%/pyevtx.so
+libdata/pkgconfig/libevtx.pc
+@dirrm include/libevtx



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302121031.r1CAVA9H088926>