a194e4a6e8
The goal is to provide a production-quality JPEG encoder that improves compression while maintaining compatibility with the vast majority of deployed decoders. The 'jpgcrush' feature finds the progressive coding configuration which uses the fewest bits. This most frequently reduces file size by 2-10%, but those are not hard limits. Significantly greater reductions have been observed. Library configuration defaults are the same as for libjpeg-turbo, in order to make transitions as painless as possible. There are new configuration options for new features, but they are not enabled by default. The 'cjpeg' program defaults are not the same as for the equivalent program in libjpeg-turbo. The 'cjpeg' defaults for mozjpeg are set to aggressively optimize for smaller file sizes. WWW: https://github.com/mozilla/mozjpeg/ PR: ports/187398 Submitted by: Horia Racoviceanu <horia@racoviceanu.com>
120 lines
3.1 KiB
Makefile
120 lines
3.1 KiB
Makefile
# Created by: Horia Racoviceanu <horia@racoviceanu.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mozjpeg
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= horia@racoviceanu.com
|
|
COMMENT= Fork of libjpeg-turbo with 'jpgcrush' functionality
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
BUILD_DEPENDS= nasm:${PORTSDIR}/devel/nasm
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= mozilla
|
|
GH_TAGNAME= ${GH_COMMIT}
|
|
GH_COMMIT= febf346
|
|
|
|
USE_AUTOTOOLS= aclocal:env autoconf automake libtool
|
|
USE_LDCONFIG= ${PREFIX}/include/${PORTNAME} ${PREFIX}/lib/${PORTNAME}
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --docdir=${PREFIX}/share/doc/${PORTNAME} \
|
|
--includedir=${PREFIX}/include/${PORTNAME} \
|
|
--libdir=${PREFIX}/lib/${PORTNAME}
|
|
LIBTOOL_ARGS+= --finish ${PREFIX}/lib/${PORTNAME}
|
|
LDFLAGS+= -L${PREFIX}/lib/${PORTNAME}
|
|
|
|
PLIST_SUB= PORTNAME=${PORTNAME} \
|
|
SOMAJORVERSION=${SOMAJORVERSION}
|
|
|
|
PORTDOCS= *
|
|
|
|
DOCSRCDIR1= ${WRKSRC}/doc/html
|
|
DOCSDIR1= ${DOCSDIR}/html
|
|
|
|
DOCSRCDIR2= ${DOCSRCDIR1}/search
|
|
DOCSDIR2= ${DOCSDIR1}/search
|
|
|
|
DOC_FILES= *.css *.html *.js *.png
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES GCC SIMD TURBOJPEG
|
|
|
|
OPTIONS_GROUP= ARITHMETIC_CODING
|
|
OPTIONS_GROUP_ARITHMETIC_CODING= DECODING ENCODING
|
|
|
|
OPTIONS_MULTI= LIBRARIES
|
|
OPTIONS_MULTI_LIBRARIES= SHARED STATIC
|
|
|
|
OPTIONS_SINGLE= API_ABI_EMULATION
|
|
OPTIONS_SINGLE_API_ABI_EMULATION= JPEG6B JPEG7 JPEG8
|
|
|
|
OPTIONS_DEFAULT= DECODING ENCODING GCC JPEG6B SHARED SIMD STATIC TURBOJPEG
|
|
|
|
OPTIONS_SUB= yes
|
|
|
|
GCC_DESC= Use the GNU Compiler Collection (GCC) for best performance
|
|
SIMD_DESC= Include SIMD extensions (MMX, SSE2, NEON)
|
|
TURBOJPEG_DESC= Include the TurboJPEG wrapper library and associated tests
|
|
|
|
ENCODING_DESC= Enable arithmetic encoding
|
|
DECODING_DESC= Enable arithmetic decoding
|
|
|
|
STATIC_DESC= Build static libraries
|
|
SHARED_DESC= Build shared libraries
|
|
|
|
JPEG6B_DESC= API/ABI-compatible with libjpeg v6b
|
|
JPEG7_DESC= API/ABI-compatible with libjpeg v7 (implies arith-coding)
|
|
JPEG8_DESC= API/ABI-compatible with libjpeg v8 (implies arith-coding)
|
|
|
|
GCC_USE= GCC=any
|
|
SIMD_CONFIGURE_WITH= simd
|
|
TURBOJPEG_CONFIGURE_WITH= turbojpeg
|
|
|
|
JPEG7_CONFIGURE_WITH= jpeg7
|
|
JPEG8_CONFIGURE_WITH= jpeg8
|
|
|
|
STATIC_CONFIGURE_ENABLE= static
|
|
SHARED_CONFIGURE_ENABLE= shared
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MJPEG6B}
|
|
. if ! ${PORT_OPTIONS:MENCODING}
|
|
CONFIGURE_ARGS+= --without-arith-enc
|
|
. endif
|
|
. if ! ${PORT_OPTIONS:MDECODING}
|
|
CONFIGURE_ARGS+= --without-arith-dec
|
|
. endif
|
|
SOMAJORVERSION= 63
|
|
.else
|
|
SOMAJORVERSION= 8
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|docdir = \$$(datadir)/doc|&/mozjpeg|; \
|
|
s|exampledir = \$$(datadir)/doc|exampledir = ${EXAMPLESDIR}|" \
|
|
${WRKSRC}/Makefile.am
|
|
|
|
run-autotools: run-autotools-autoreconf
|
|
|
|
run-autotools-autoreconf:
|
|
cd ${CONFIGURE_WRKSRC} && ${SETENV} ${AUTOTOOLS_ENV} ${AUTORECONF} -fiv
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR2}
|
|
${INSTALL_DATA} ${DOC_FILES:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR1}
|
|
${INSTALL_DATA} ${DOC_FILES:S|^|${DOCSRCDIR2}/|} ${STAGEDIR}${DOCSDIR2}
|
|
|
|
.if ${PORT_OPTIONS:MSHARED}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/libjpeg.so.${SOMAJORVERSION}
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSHARED} && ${PORT_OPTIONS:MTURBOJPEG}
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/libturbojpeg.so.1
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|