aboutsummaryrefslogtreecommitdiffstats
path: root/devel/libytnef
diff options
context:
space:
mode:
authorpawel <pawel@FreeBSD.org>2017-03-30 02:30:43 +0800
committerpawel <pawel@FreeBSD.org>2017-03-30 02:30:43 +0800
commit78a4bb0b0ce3f4da5c1f747d5acfc7d4834d836a (patch)
tree06d8f4673babe655b06a93b8188e180cf1abfdfc /devel/libytnef
parent81c195e96f51d28eefd71f6be4ac59c160e879c4 (diff)
downloadfreebsd-ports-gnome-78a4bb0b0ce3f4da5c1f747d5acfc7d4834d836a.tar.gz
freebsd-ports-gnome-78a4bb0b0ce3f4da5c1f747d5acfc7d4834d836a.tar.zst
freebsd-ports-gnome-78a4bb0b0ce3f4da5c1f747d5acfc7d4834d836a.zip
- Update converters/ytnef to version 1.9.2, now hosted on GitHub
- Add PORTEPOCH, version is going backwards due to using versioning scheme of library distribution - Remove devel/libytnef port, both packages are now developed in one repo
Diffstat (limited to 'devel/libytnef')
-rw-r--r--devel/libytnef/Makefile18
-rw-r--r--devel/libytnef/distinfo2
-rw-r--r--devel/libytnef/files/patch-ytnef.c58
-rw-r--r--devel/libytnef/pkg-descr16
-rw-r--r--devel/libytnef/pkg-plist10
5 files changed, 0 insertions, 104 deletions
diff --git a/devel/libytnef/Makefile b/devel/libytnef/Makefile
deleted file mode 100644
index 87e4bc0aed69..000000000000
--- a/devel/libytnef/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# Created by: Rodrigo Graeff <delphus@gmail.com>
-# $FreeBSD$
-
-PORTNAME= libytnef
-PORTVERSION= 1.5
-PORTREVISION= 3
-CATEGORIES= devel mail
-MASTER_SITES= SF/ytnef/${PORTNAME}/${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Unpack data in MS Outlook TNEF format
-
-GNU_CONFIGURE= yes
-INSTALL_TARGET= install-strip
-USES= libtool
-USE_LDCONFIG= yes
-
-.include <bsd.port.mk>
diff --git a/devel/libytnef/distinfo b/devel/libytnef/distinfo
deleted file mode 100644
index 09045fdac33e..000000000000
--- a/devel/libytnef/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (libytnef-1.5.tar.gz) = 1b22a1e42e047c41a41917e89544992c33d30e9bd798b5b8ca7ef1eb75e1752e
-SIZE (libytnef-1.5.tar.gz) = 212412
diff --git a/devel/libytnef/files/patch-ytnef.c b/devel/libytnef/files/patch-ytnef.c
deleted file mode 100644
index 31a054a83c24..000000000000
--- a/devel/libytnef/files/patch-ytnef.c
+++ /dev/null
@@ -1,58 +0,0 @@
---- ytnef.c.orig 2004-08-26 19:09:05.000000000 +0200
-+++ ytnef.c 2013-05-27 14:30:52.142061290 +0200
-@@ -426,6 +426,13 @@ void TNEFFillMapi(TNEFStruct *TNEF, BYTE
- d += num + ((num % 4) ? (4 - num%4) : 0);
- break;
-
-+ case PT_CLSID:
-+ vl->size = 16; /* Size of struct GUID */
-+ vl->data = calloc(vl->size, sizeof(WORD));
-+ memcpy(vl->data, &d, vl->size);
-+ d += 16; /* Size of struct GUID */
-+ break;
-+
- case PT_I2:
- // Read in 2 bytes, but proceed by 4 bytes
- vl->size = 2;
-@@ -455,6 +462,8 @@ void TNEFFillMapi(TNEFStruct *TNEF, BYTE
- memcpy(vl->data, &temp_ddword, vl->size);
- d+=8;
- break;
-+ default:
-+ fprintf(stderr, "%s: Fatal BUG: unknown MAPI ID type (%u), (%u)\n", __func__, PROP_TYPE(mp->id), mp->id);
- }
- if (count == (mp->count-1)) {
- count = -1;
-@@ -565,7 +574,7 @@ void TNEFPrintDate(dtr Date) {
- int TNEFHexBreakdown STD_ARGLIST {
- int i;
- if (TNEF->Debug == 0)
-- return;
-+ return 0;
-
- printf("%s: [%i bytes] \n", TNEFList[id].name, size);
-
-@@ -574,13 +583,14 @@ int TNEFHexBreakdown STD_ARGLIST {
- if ((i+1)%16 == 0) printf("\n");
- }
- printf("\n");
-+ return 0;
- }
-
- // -----------------------------------------------------------------------------
- int TNEFDetailedPrint STD_ARGLIST {
- int i;
- if (TNEF->Debug == 0)
-- return;
-+ return 0;
-
- printf("%s: [%i bytes] \n", TNEFList[id].name, size);
-
-@@ -588,6 +598,7 @@ int TNEFDetailedPrint STD_ARGLIST {
- printf("%c", data[i]);
- }
- printf("\n");
-+ return 0;
- }
-
- // -----------------------------------------------------------------------------
diff --git a/devel/libytnef/pkg-descr b/devel/libytnef/pkg-descr
deleted file mode 100644
index 6acae59fe950..000000000000
--- a/devel/libytnef/pkg-descr
+++ /dev/null
@@ -1,16 +0,0 @@
-This is the library needed to YTNEF application
-
-This program decodes those annoying application/ms-tnef MIME attachments that
-Microsoft mail servers helpfully use to encapsulate your already MIME encoded
-attachments.
-
-Due to the proliferation of Microsoft Outlook and Exchange mail servers,
-more and more mail is encapsulated into this format.
-
-The YTNEF program allows one to unpack the attachments which were encapsulated
-into the YTNEF attachment. Thus alleviating the need to use Microsoft Outlook
-to view them.
-
-Now supports winmail.dat Outlook files
-
-WWW: http://ytnef.sourceforge.net/
diff --git a/devel/libytnef/pkg-plist b/devel/libytnef/pkg-plist
deleted file mode 100644
index 42987e987d93..000000000000
--- a/devel/libytnef/pkg-plist
+++ /dev/null
@@ -1,10 +0,0 @@
-include/mapi.h
-include/mapidefs.h
-include/mapitags.h
-include/tnef-errors.h
-include/tnef-types.h
-include/ytnef.h
-lib/libytnef.a
-lib/libytnef.so
-lib/libytnef.so.0
-lib/libytnef.so.0.0.0