mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
2133f1c1d5
- Mark MAKE_JOBS_SAFE - Use FreeBSD's SHA1-implementation - Add TESTS option default to off Submitted by: Mikhail T. <mi+thun _at_ aldan.algebra.com> by email Approved by: tabthorpe@ (co-mentor)
69 lines
1.6 KiB
Makefile
69 lines
1.6 KiB
Makefile
# New ports collection makefile for: jbig2dec
|
|
# Date created: 2010-07-07
|
|
# Whom: Bapt <baptiste.daroussin@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jbig2dec
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= graphics devel
|
|
MASTER_SITES= SF \
|
|
http://ghostscript.com/~giles/jbig2/jbig2dec/
|
|
DISTFILES+= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Decoder implementation of the JBIG2 image compression format
|
|
|
|
USE_XZ= yes:src
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
OPTIONS= PNG "Enable png support" On \
|
|
TESTS "Download and use test-images for post-build testing" Off
|
|
|
|
MAN1= jbig2dec.1
|
|
|
|
MAKE_JOBS_SAFE= yes
|
|
EXTRACT_AFTER_ARGS+=|${TAR} -xpf - --exclude sha1.h --exclude 'getopt*'
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_PNG)
|
|
LIB_DEPENDS+= png:${PORTSDIR}/graphics/png
|
|
CONFIGURE_ARGS+=--with-libpng=${LOCALBASE}
|
|
.endif
|
|
|
|
.if defined(WITH_TESTS)
|
|
MASTER_SITES+= http://jbig2dec.sourceforge.net/ubc/:tests
|
|
DISTFILES+= jb2streams.zip:tests
|
|
EXTRACT_ONLY= ${DISTFILES:M*xz}
|
|
USE_PYTHON_BUILD=yes
|
|
KNOWN_BAD_JB2S= 042_11 042_13 042_14 042_24 042_25 amb_1 amb_2
|
|
|
|
post-extract:
|
|
${MKDIR} ${WRKDIR}/ubc
|
|
${TAR} -C ${WRKDIR}/ubc/ -xpf ${DISTDIR}/jb2streams.zip \
|
|
${KNOWN_BAD_JB2S:S/$/.jb2/:S/^/--exclude /}
|
|
.else
|
|
EXTRA_PATCHES= ${FILESDIR}/simpler-test-patch
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(WITH_PNG)
|
|
@${REINPLACE_CMD} 's/png_check_sig/png_sig_cmp/g' ${WRKSRC}/configure
|
|
.endif
|
|
${REINPLACE_CMD} -E 's|SHA1_Final\( *([^,]+), *([^\)]+)\)|SHA1_Final(\2, \1)|' \
|
|
${WRKSRC}/jbig2dec.c ${WRKSRC}/sha1.c
|
|
|
|
test check regression-test:
|
|
${MAKE} -C ${WRKSRC} check-TESTS
|
|
|
|
post-build: test
|
|
|
|
.include <bsd.port.mk>
|