diff options
author | Michael Johnson <ahze@FreeBSD.org> | 2005-06-24 00:44:12 +0000 |
---|---|---|
committer | Michael Johnson <ahze@FreeBSD.org> | 2005-06-24 00:44:12 +0000 |
commit | 1cc50ba85314c6ddffa3d8e27dfda8f18bddcc4c (patch) | |
tree | ab4effa440964eb30af37ca7e4f7fc19a53b05a1 | |
parent | - Update to 0.89 (diff) |
Add ripole 0.1.4, a small program designed to pull attachments out of
OLE2 documents.
PR: ports/82492
Submitted by: Freddie Cash <fcash@sd73.bc.ca>
Notes
Notes:
svn path=/head/; revision=137949
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/ripole/Makefile | 27 | ||||
-rw-r--r-- | textproc/ripole/distinfo | 2 | ||||
-rw-r--r-- | textproc/ripole/pkg-descr | 11 |
4 files changed, 41 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 0dd3ea7c90ad..6bbcfba9fedb 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -580,6 +580,7 @@ SUBDIR += resume SUBDIR += resume-extensions SUBDIR += rfcdiff + SUBDIR += ripole SUBDIR += rl SUBDIR += rman SUBDIR += ro-aspell diff --git a/textproc/ripole/Makefile b/textproc/ripole/Makefile new file mode 100644 index 000000000000..f578c7c15153 --- /dev/null +++ b/textproc/ripole/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: ripole +# Date created: June 21, 2005 +# Whom: Freddie Cash <fcash@sd73.bc.ca> +# +# $FreeBSD$ + +PORTNAME= ripole +PORTVERSION= 0.1.4 +CATEGORIES= textproc +MASTER_SITES= http://www.pldaniels.com/ripole/ +#DISTNAME= ${PORTNAME}-${PORTVERSION} + +MAINTAINER= fcash@sd73.bc.ca +COMMENT= A small program designed to pull attachments out of OLE2 documents + +CONFLICTS= ripole-devel-* +LATEST_LINK= ripole +ALL_TARGET= default + +PLIST_FILES= bin/ripole + +.include <bsd.port.pre.mk> + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ripole ${PREFIX}/bin/ripole + +.include <bsd.port.post.mk> diff --git a/textproc/ripole/distinfo b/textproc/ripole/distinfo new file mode 100644 index 000000000000..83adbdd74b4b --- /dev/null +++ b/textproc/ripole/distinfo @@ -0,0 +1,2 @@ +MD5 (ripole-0.1.4.tar.gz) = 0db3547a509eec5e290c47f855a25c87 +SIZE (ripole-0.1.4.tar.gz) = 25386 diff --git a/textproc/ripole/pkg-descr b/textproc/ripole/pkg-descr new file mode 100644 index 000000000000..beebb4832bf0 --- /dev/null +++ b/textproc/ripole/pkg-descr @@ -0,0 +1,11 @@ +ripOLE is a small program/library designed to pull out attachments from OLE2 +data files (ie, MS Office documents). ripOLE is BSD licenced meaning that +commercial projects can also use the code without worrying about licence costs +or legal liabilities. + +Currently, ripOLE is in a development phase. It can extract some files from +Microsoft Office documents. Ultimately, what ripOLE should be able to do is +convert any embedded content in MS Office files back into its original format +(JPEG, arbitary files, movies etc). + +WWW: http://www.pldaniels.com/ripole/ |