svn commit: r314764 - in head/devel: . libpff
Pawel Pekala
pawel at FreeBSD.org
Wed Mar 20 21:22:12 UTC 2013
Author: pawel
Date: Wed Mar 20 21:22:11 2013
New Revision: 314764
URL: http://svnweb.freebsd.org/changeset/ports/314764
Log:
Library and tools to access the Personal Folder File (PFF) and the Offline
Folder File (OFF) formats.
PFF/OFF is used in several file types:
PAB (Personal Address Book)
PST (Personal Storage Table)
OST (Offline Storage Table)
WWW: http://code.google.com/p/libpff/
PR: ports/177116
Submitted by: Antoine Brodin <antoine at FreeBSD.org>
Added:
head/devel/libpff/
head/devel/libpff/Makefile (contents, props changed)
head/devel/libpff/distinfo (contents, props changed)
head/devel/libpff/pkg-descr (contents, props changed)
head/devel/libpff/pkg-plist (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Wed Mar 20 21:18:27 2013 (r314763)
+++ head/devel/Makefile Wed Mar 20 21:22:11 2013 (r314764)
@@ -1054,6 +1054,7 @@
SUBDIR += libpciaccess
SUBDIR += libpdel
SUBDIR += libpeak
+ SUBDIR += libpff
SUBDIR += libphish
SUBDIR += libphk
SUBDIR += libplist
Added: head/devel/libpff/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libpff/Makefile Wed Mar 20 21:22:11 2013 (r314764)
@@ -0,0 +1,46 @@
+# Created by: Antoine Brodin <antoine at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= libpff
+DISTVERSION= alpha-20120802
+CATEGORIES= devel
+MASTER_SITES= GOOGLE_CODE
+
+MAINTAINER= antoine at FreeBSD.org
+COMMENT= Library and tools to access the PFF and the OFF formats
+
+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= pffexport.1 pffinfo.1
+MAN3= libpff.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/libpff/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libpff/distinfo Wed Mar 20 21:22:11 2013 (r314764)
@@ -0,0 +1,2 @@
+SHA256 (libpff-alpha-20120802.tar.gz) = 4b78464200d04c77e182e09dc2af8d6f6c5519af12994e1ce96cd3b0e7a2ea62
+SIZE (libpff-alpha-20120802.tar.gz) = 1665471
Added: head/devel/libpff/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libpff/pkg-descr Wed Mar 20 21:22:11 2013 (r314764)
@@ -0,0 +1,8 @@
+Library and tools to access the Personal Folder File (PFF) and the Offline
+Folder File (OFF) formats.
+PFF/OFF is used in several file types:
+ PAB (Personal Address Book)
+ PST (Personal Storage Table)
+ OST (Offline Storage Table)
+
+WWW: http://code.google.com/p/libpff/
Added: head/devel/libpff/pkg-plist
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/libpff/pkg-plist Wed Mar 20 21:22:11 2013 (r314764)
@@ -0,0 +1,19 @@
+bin/pffexport
+bin/pffinfo
+include/libpff.h
+include/libpff/codepage.h
+include/libpff/definitions.h
+include/libpff/error.h
+include/libpff/extern.h
+include/libpff/features.h
+include/libpff/mapi.h
+include/libpff/types.h
+lib/libpff.a
+lib/libpff.la
+lib/libpff.so
+lib/libpff.so.1
+%%PYTHON_SITELIBDIR%%/pypff.a
+%%PYTHON_SITELIBDIR%%/pypff.la
+%%PYTHON_SITELIBDIR%%/pypff.so
+libdata/pkgconfig/libpff.pc
+ at dirrm include/libpff
More information about the svn-ports-all
mailing list