c756d91684
* Use system byte-swapping functions. PR: 139205, 139206 Submitted by: swell.k@gmail.com (idea) Feature safe: yes
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# New ports collection makefile for: xz
|
|
# Date created: 2009-09-16
|
|
# Whom: naddy
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xz
|
|
PORTVERSION= 4.999.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://tukaani.org/xz/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}beta
|
|
|
|
MAINTAINER= naddy@FreeBSD.org
|
|
COMMENT= LZMA compression and decompression tools
|
|
|
|
CONFLICTS= lzma-[0-9]* lzmautils-[0-9]* lzmalib-[0-9]*
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
USE_AUTOTOOLS= autoheader:262 autoconf:262
|
|
USE_LDCONFIG= yes
|
|
USE_GNOME= gnomehack
|
|
|
|
CONFIGURE_ARGS= --enable-dynamic=yes
|
|
CONFIGURE_ARGS+=--disable-nls # no translations available
|
|
|
|
# pick up assembly language optimizations
|
|
CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-portbld-freebsd${OSREL}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET= install install-dist_docDATA
|
|
.endif
|
|
|
|
MAN1= lzmainfo.1 xz.1 xzdec.1 xzdiff.1 xzgrep.1 xzless.1 xzmore.1
|
|
|
|
MLINKS= xz.1 lzcat.1 xzdiff.1 lzcmp.1 \
|
|
xzdiff.1 lzdiff.1 xzgrep.1 lzegrep.1 \
|
|
xzgrep.1 lzfgrep.1 xzgrep.1 lzgrep.1 \
|
|
xzless.1 lzless.1 xz.1 lzma.1 \
|
|
xzdec.1 lzmadec.1 xzmore.1 lzmore.1 \
|
|
xz.1 unlzma.1 xz.1 unxz.1 \
|
|
xz.1 xzcat.1 xzdiff.1 xzcmp.1 \
|
|
xzgrep.1 xzegrep.1 xzgrep.1 xzfgrep.1
|
|
|
|
PORTDOCS= AUTHORS COPYING COPYING.GPLv2 NEWS README THANKS TODO \
|
|
faq.txt history.txt lzma-file-format.txt xz-file-format.txt
|
|
|
|
# no need to (attempt to) run aclocal
|
|
pre-build:
|
|
@touch -r ${WRKSRC}/configure.ac ${WRKSRC}/aclocal.m4
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} check
|
|
|
|
.include <bsd.port.mk>
|