Date: Mon, 4 Feb 2013 04:24:55 +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: r311573 - in head/devel: . libevt Message-ID: <201302040424.r144Ots7079431@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@FreeBSD.org +# $FreeBSD$ + +PORTNAME= libevt +DISTVERSION= alpha-20130111 +CATEGORIES= devel +MASTER_SITES= GOOGLE_CODE + +MAINTAINER= antoine@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 +@dirrm include/libevt
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302040424.r144Ots7079431>