Bug 177116 - [new port] devel/libpff Library and tools to access the Personal Folder File (PFF) and the Offline Folder File (OFF) formats
Summary: [new port] devel/libpff Library and tools to access the Personal Folder File ...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Pawel Pekala
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-03-19 17:00 UTC by Antoine Brodin
Modified: 2013-03-20 21:30 UTC (History)
0 users

See Also:


Attachments
libpff.shar (2.72 KB, text/plain)
2013-03-19 17:00 UTC, Antoine Brodin
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Antoine Brodin freebsd_committer freebsd_triage 2013-03-19 17:00:00 UTC
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/
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-03-19 17:00:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->antoine

Submitter has GNATS access (via the GNATS Auto Assign Tool)
Comment 2 Antoine Brodin freebsd_committer freebsd_triage 2013-03-19 17:01:19 UTC
Responsible Changed
From-To: antoine->freebsd-ports-bugs

Back to freebsd-ports-bugs.
Comment 3 Pawel Pekala freebsd_committer freebsd_triage 2013-03-20 21:12:47 UTC
Responsible Changed
From-To: freebsd-ports-bugs->pawel

I'll take it.
Comment 4 dfilter service freebsd_committer freebsd_triage 2013-03-20 21:22:20 UTC
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@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@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	libpff
+DISTVERSION=	alpha-20120802
+CATEGORIES=	devel
+MASTER_SITES=	GOOGLE_CODE
+
+MAINTAINER=	antoine@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
+@dirrm include/libpff
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Comment 5 Pawel Pekala freebsd_committer freebsd_triage 2013-03-20 21:23:24 UTC
State Changed
From-To: open->closed

New port added. Thanks!