pkgsrc/converters/mpack/Makefile
is 60a61d99a7 Fix decoding of message/partial. Explanation:
mpack-1.6 introduced more security on Unix-like systems by creating
and using a helper function, os_createnewfile, that uses O_CREAT|O_EXCL.
Unfortunately, it also uses it to write the total number of parts
temporary file, which fails if more than one part contains the
total number (as mpack creates them!)

The new code compares old and new totals, if both exist, and only
writes the new total, if the old didn't exist. Problem solved and
one sanity check more at the same time.
2010-11-17 22:24:40 +00:00

15 lines
339 B
Makefile

# $NetBSD: Makefile,v 1.21 2010/11/17 22:24:40 is Exp $
DISTNAME= mpack-1.6
PKGREVISION= 2
CATEGORIES= converters mail news
MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/mpack/
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= External MIME packer/unpacker
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
.include "../../mk/bsd.pkg.mk"