diff options
author | reed <reed@pkgsrc.org> | 2003-10-01 20:45:55 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2003-10-01 20:45:55 +0000 |
commit | e3a415fc8302661350941150a1227618f18ed796 (patch) | |
tree | d2b52aec0defea7dbfe9732a212062553cf9d9c4 /mail/ripmime | |
parent | 4ce08458cb18332e4458d5f109112286047fc3ca (diff) | |
download | pkgsrc-e3a415fc8302661350941150a1227618f18ed796.tar.gz |
ripmime-1.3.0.4 Extract the attached files out of a MIME encoded email package
Diffstat (limited to 'mail/ripmime')
-rw-r--r-- | mail/ripmime/DESCR | 4 | ||||
-rw-r--r-- | mail/ripmime/Makefile | 12 | ||||
-rw-r--r-- | mail/ripmime/PLIST | 2 | ||||
-rw-r--r-- | mail/ripmime/distinfo | 5 | ||||
-rw-r--r-- | mail/ripmime/patches/patch-aa | 21 |
5 files changed, 44 insertions, 0 deletions
diff --git a/mail/ripmime/DESCR b/mail/ripmime/DESCR new file mode 100644 index 00000000000..aae5ae32956 --- /dev/null +++ b/mail/ripmime/DESCR @@ -0,0 +1,4 @@ +RipMIME is designed to extract the attached files out of a MIME +package (as say produced by programs such as AMaViS, Inflex and +Xamime). It can decode BASE64, Apple-double, UUENCODED, TNEF, +QuotedPrintable, nested and MS MHT attachments out of mailpacks. diff --git a/mail/ripmime/Makefile b/mail/ripmime/Makefile new file mode 100644 index 00000000000..60eb4926883 --- /dev/null +++ b/mail/ripmime/Makefile @@ -0,0 +1,12 @@ +# $NetBSD: Makefile,v 1.1.1.1 2003/10/01 20:45:55 reed Exp $ +# + +DISTNAME= ripmime-1.3.0.4 +CATEGORIES= mail +MASTER_SITES= http://www.pldaniels.com/ripmime/ + +MAINTAINER= reed@reedmedia.net +HOMEPAGE= http://www.pldaniels.com/ripmime/ +COMMENT= Extract the attached files out of a MIME encoded email package + +.include "../../mk/bsd.pkg.mk" diff --git a/mail/ripmime/PLIST b/mail/ripmime/PLIST new file mode 100644 index 00000000000..182d726873b --- /dev/null +++ b/mail/ripmime/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2003/10/01 20:45:55 reed Exp $ +bin/ripmime diff --git a/mail/ripmime/distinfo b/mail/ripmime/distinfo new file mode 100644 index 00000000000..4561019f4bb --- /dev/null +++ b/mail/ripmime/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2003/10/01 20:45:55 reed Exp $ + +SHA1 (ripmime-1.3.0.4.tar.gz) = e7000b118a185ea4bbc18e56345f0cc494290d29 +Size (ripmime-1.3.0.4.tar.gz) = 96277 bytes +SHA1 (patch-aa) = 2095916db402b732e999d1b24637d5a65862edba diff --git a/mail/ripmime/patches/patch-aa b/mail/ripmime/patches/patch-aa new file mode 100644 index 00000000000..17d615d0050 --- /dev/null +++ b/mail/ripmime/patches/patch-aa @@ -0,0 +1,21 @@ +$NetBSD: patch-aa,v 1.1.1.1 2003/10/01 20:45:55 reed Exp $ + +--- Makefile.orig Sat Jun 14 18:35:38 2003 ++++ Makefile +@@ -1,13 +1,13 @@ +-LOCATION=/usr/local ++LOCATION=$(PREFIX) + VERSION=0.1.11 +-CC=gcc ++CC?=gcc + #CC=tcc + #CC= ccmalloc gcc + + # PERFORMANCE RELATED FLAG SETS + #CFLAGS=-Wall -O3 -march=i686 + #CFLAGS= -Wall -O3 -march=k6 +-CFLAGS= -Wall -O2 ++CFLAGS?= -Wall -O2 + + # DEBUGGING Related Flags + #CFLAGS= -Wall -ggdb |