pkgsrc/archivers/xz/Makefile
adam 3c48eea213 Changes 5.0.3:
* liblzma fixes:
  - A memory leak was fixed.
  - lzma_stream_buffer_encode() no longer creates an empty .xz
    Block if encoding an empty buffer. Such an empty Block with
    LZMA2 data would trigger a bug in 5.0.1 and older (see the
    first bullet point in 5.0.2 notes). When releasing 5.0.2,
    I thought that no encoder creates this kind of files but
    I was wrong.
  - Validate function arguments better in a few functions. Most
    importantly, specifying an unsupported integrity check to
    lzma_stream_buffer_encode() no longer creates a corrupt .xz
    file. Probably no application tries to do that, so this
    shouldn't be a big problem in practice.
  - Document that lzma_block_buffer_encode(),
    lzma_easy_buffer_encode(), lzma_stream_encoder(), and
    lzma_stream_buffer_encode() may return LZMA_UNSUPPORTED_CHECK.
  - The return values of the _memusage() functions are now
    documented better.
* Fix command name detection in xzgrep. xzegrep and xzfgrep now
  correctly use egrep and fgrep instead of grep.
* French translation was added.
2011-06-15 11:43:12 +00:00

31 lines
720 B
Makefile

# $NetBSD: Makefile,v 1.10 2011/06/15 11:43:12 adam Exp $
DISTNAME= xz-5.0.3
CATEGORIES= archivers
MASTER_SITES= http://tukaani.org/xz/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://tukaani.org/xz/
COMMENT= XZ utilities
LICENSE= public-domain AND gnu-gpl-v2
PKG_DESTDIR_SUPPORT= user-destdir
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
PKGCONFIG_OVERRIDE= src/liblzma/liblzma.pc.in
GCC_REQD= 3.4
CONFLICTS= lzma-[0-9]* lzma-utils-[0-9]* lzmalib-[0-9]*
.include "../../mk/compiler.mk"
.if !empty(PKGSRC_COMPILER:Msunpro)
CONFIGURE_ARGS+= --disable-assembler
.endif
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"