svn commit: r313725 - in head/devel: . libmsiecf
Ruslan Mahmatkhanov
rm at FreeBSD.org
Sat Mar 9 16:30:12 UTC 2013
Author: rm
Date: Sat Mar 9 16:30:10 2013
New Revision: 313725
URL: http://svnweb.freebsd.org/changeset/ports/313725
Log:
Library and tools to access the Microsoft Internet Explorer (MSIE) Cache File
(index.dat) files
WWW: http://code.google.com/p/libmsiecf/
PR: 176753
Submitted by: Antoine Brodin <antoine at FreeBSD.org>
Added:
head/devel/libmsiecf/
head/devel/libmsiecf/Makefile (contents, props changed)
head/devel/libmsiecf/distinfo (contents, props changed)
head/devel/libmsiecf/pkg-descr (contents, props changed)
head/devel/libmsiecf/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sat Mar 9 16:10:57 2013 (r313724)
+++ head/devel/Makefile Sat Mar 9 16:30:10 2013 (r313725)
@@ -1028,6 +1028,7 @@
SUBDIR += libmonetra
SUBDIR += libmowgli
SUBDIR += libmpcbdm
+ SUBDIR += libmsiecf
SUBDIR += libmsocket
SUBDIR += libmtrie
SUBDIR += libnaji
Added: head/devel/libmsiecf/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libmsiecf/Makefile Sat Mar 9 16:30:10 2013 (r313725)
@@ -0,0 +1,40 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= libmsiecf
+DISTVERSION= alpha-20130305
+CATEGORIES= devel
+MASTER_SITES= GOOGLE_CODE
+
+MAINTAINER= antoine at FreeBSD.org
+COMMENT= Library and tools to access the MSIE index.dat files
+
+LICENSE= LGPL3
+
+GNU_CONFIGURE= yes
+CONFIGURE_ARGS= --enable-python
+USE_GETTEXT= yes
+USES= pathfix
+USE_ICONV= yes
+USE_PYTHON= yes
+USE_LDCONFIG= yes
+
+LDFLAGS+= -L${LOCALBASE}/lib
+WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:E}
+
+MAN1= msiecfexport.1 msiecfinfo.1
+MAN3= libmsiecf.3
+
+OPTIONS_DEFINE= DOCS
+
+PORTDOCS= AUTHORS ChangeLog
+
+.include <bsd.port.options.mk>
+
+post-install:
+.if ${PORT_OPTIONS:MDOCS}
+ @${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
+.endif
+
+.include <bsd.port.mk>
Added: head/devel/libmsiecf/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libmsiecf/distinfo Sat Mar 9 16:30:10 2013 (r313725)
@@ -0,0 +1,2 @@
+SHA256 (libmsiecf-alpha-20130305.tar.gz) = 801cc90ed8414714930a3f6b95498edcb5da3137408431da80d2dac506770b38
+SIZE (libmsiecf-alpha-20130305.tar.gz) = 1290626
Added: head/devel/libmsiecf/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libmsiecf/pkg-descr Sat Mar 9 16:30:10 2013 (r313725)
@@ -0,0 +1,4 @@
+Library and tools to access the Microsoft Internet Explorer (MSIE) Cache File
+(index.dat) files
+
+WWW: http://code.google.com/p/libmsiecf/
Added: head/devel/libmsiecf/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libmsiecf/pkg-plist Sat Mar 9 16:30:10 2013 (r313725)
@@ -0,0 +1,18 @@
+bin/msiecfexport
+bin/msiecfinfo
+include/libmsiecf.h
+include/libmsiecf/codepage.h
+include/libmsiecf/definitions.h
+include/libmsiecf/error.h
+include/libmsiecf/extern.h
+include/libmsiecf/features.h
+include/libmsiecf/types.h
+lib/libmsiecf.a
+lib/libmsiecf.la
+lib/libmsiecf.so
+lib/libmsiecf.so.1
+%%PYTHON_SITELIBDIR%%/pymsiecf.a
+%%PYTHON_SITELIBDIR%%/pymsiecf.la
+%%PYTHON_SITELIBDIR%%/pymsiecf.so
+libdata/pkgconfig/libmsiecf.pc
+ at dirrm include/libmsiecf
More information about the svn-ports-head
mailing list