svn commit: r311573 - in head/devel: . libevt
Martin Wilke
miwi at FreeBSD.org
Mon Feb 4 04:24:56 UTC 2013
Author: miwi
Date: Mon Feb 4 04:24:54 2013
New Revision: 311573
URL: http://svnweb.freebsd.org/changeset/ports/311573
Log:
Library and tooling to access the Windows Event Log (EVT) format
WWW: http://code.google.com/p/libevt/
PR: ports/175416
Submitted by: antoine at FreeBSD.org
Added:
head/devel/libevt/
head/devel/libevt/Makefile (contents, props changed)
head/devel/libevt/distinfo (contents, props changed)
head/devel/libevt/pkg-descr (contents, props changed)
head/devel/libevt/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Mon Feb 4 03:40:57 2013 (r311572)
+++ head/devel/Makefile Mon Feb 4 04:24:54 2013 (r311573)
@@ -949,6 +949,7 @@
SUBDIR += libevent
SUBDIR += libevent-hiphop
SUBDIR += libevent2
+ SUBDIR += libevt
SUBDIR += libewf
SUBDIR += libexecinfo
SUBDIR += libexplain
Added: head/devel/libevt/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libevt/Makefile Mon Feb 4 04:24:54 2013 (r311573)
@@ -0,0 +1,45 @@
+# Created by: antoine at FreeBSD.org
+# $FreeBSD$
+
+PORTNAME= libevt
+DISTVERSION= alpha-20130111
+CATEGORIES= devel
+MASTER_SITES= GOOGLE_CODE
+
+MAINTAINER= antoine at FreeBSD.org
+COMMENT= Library and tooling to access the Windows Event Log (EVT) 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= evtexport.1 evtinfo.1
+MAN3= libevt.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}/* ${EXAMPLESDIR}
+.endif
+
+.include <bsd.port.mk>
Added: head/devel/libevt/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libevt/distinfo Mon Feb 4 04:24:54 2013 (r311573)
@@ -0,0 +1,2 @@
+SHA256 (libevt-alpha-20130111.tar.gz) = 834d6dc2353777e870f17c7d89dadada403451a26e9325b54fe4c509b81f259e
+SIZE (libevt-alpha-20130111.tar.gz) = 1619568
Added: head/devel/libevt/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libevt/pkg-descr Mon Feb 4 04:24:54 2013 (r311573)
@@ -0,0 +1,3 @@
+Library and tooling to access the Windows Event Log (EVT) format
+
+WWW: http://code.google.com/p/libevt/
Added: head/devel/libevt/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libevt/pkg-plist Mon Feb 4 04:24:54 2013 (r311573)
@@ -0,0 +1,18 @@
+bin/evtexport
+bin/evtinfo
+include/libevt.h
+include/libevt/codepage.h
+include/libevt/definitions.h
+include/libevt/error.h
+include/libevt/extern.h
+include/libevt/features.h
+include/libevt/types.h
+lib/libevt.a
+lib/libevt.la
+lib/libevt.so
+lib/libevt.so.1
+%%PYTHON_SITELIBDIR%%/pyevt.a
+%%PYTHON_SITELIBDIR%%/pyevt.la
+%%PYTHON_SITELIBDIR%%/pyevt.so
+libdata/pkgconfig/libevt.pc
+ at dirrm include/libevt
More information about the svn-ports-head
mailing list