diff options
author | heinz <heinz@pkgsrc.org> | 2006-02-09 22:38:12 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2006-02-09 22:38:12 +0000 |
commit | 64524db8a57d567dcb2ee95b08a2b819b43aea68 (patch) | |
tree | 62763de70cd115057074d71246f309930e9533ce /mail/tnef/Makefile | |
parent | 6ab6e26e8eb9a2a63c3a8bd8c730dfd0d7e44e3c (diff) | |
download | pkgsrc-64524db8a57d567dcb2ee95b08a2b819b43aea68.tar.gz |
Updated to version 1.3.4.
Relevant changes since version 1.3.2:
=====================================
* 1.3.4:
** Fixing RTF message body saving [Bug# 1318728]. Fix courtesy of
Eduardo Subelman.
* 1.3.3:
** Fixing memory leak bug [Bug# 1168062]. GUIDs not being freed corrrectly.
** Now saving message body data [RFE# 1033855]. Now optionally saves message
body data, generalizing the previous --save-rtf feature.
** Implementing Unicode handling [Patch# 666561]. Implementing code to
translate Unicode strings to utf8 as best as can be.
Diffstat (limited to 'mail/tnef/Makefile')
-rw-r--r-- | mail/tnef/Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/mail/tnef/Makefile b/mail/tnef/Makefile index 5f245c22123..2cb06562004 100644 --- a/mail/tnef/Makefile +++ b/mail/tnef/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.19 2006/02/05 23:09:59 joerg Exp $ +# $NetBSD: Makefile,v 1.20 2006/02/09 22:38:12 heinz Exp $ # -DISTNAME= tnef-1.3.2 -PKGREVISION= 1 +DISTNAME= tnef-1.3.4 CATEGORIES= mail MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tnef/} @@ -15,5 +14,16 @@ PKG_INSTALLATION_TYPES= overwrite pkgviews GNU_CONFIGURE= YES TEST_TARGET= check +PKG_OPTIONS_VAR= PKG_OPTIONS.tnef +PKG_SUPPORTED_OPTIONS= debug + +.include "../../mk/bsd.options.mk" + +.if !empty(PKG_OPTIONS:Mdebug) +CONFIGURE_ARGS+= --enable-debug +.else +CONFIGURE_ARGS+= --disable-debug +.endif + .include "../../devel/gettext-lib/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |