a0fff77c24
Version 8d 15-Jan-2012 ----------------------- Add cjpeg -rgb option to create RGB JPEG files. Using this switch suppresses the conversion from RGB colorspace input to the default YCbCr JPEG colorspace. This feature allows true lossless JPEG coding of RGB color images. The recommended command for this purpose is currently cjpeg -rgb -block 1 -arithmetic. SmartScale capable decoder (introduced with IJG JPEG 8) required. Thank to Michael Koch for the initial suggestion. Add option to disable the region adjustment in the transupp crop code. Thank to Jeffrey Friedl for the suggestion. Thank to Richard Jones and Edd Dawson for various minor corrections. Thank to Akim Demaille for configure.ac cleanup.
34 lines
891 B
Makefile
34 lines
891 B
Makefile
# $NetBSD: Makefile,v 1.45 2012/01/20 12:33:07 wiz Exp $
|
|
|
|
DISTNAME= jpegsrc.v8d
|
|
PKGNAME= ${DISTNAME:S/src.v/-/}
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.ijg.org/files/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.ijg.org/
|
|
COMMENT= IJG's jpeg compression utilities
|
|
|
|
CONFLICTS= libjpeg-turbo-[0-9]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --disable-ld-version-script
|
|
|
|
INSTALLATION_DIRS= bin include share/doc/jpeg
|
|
|
|
TEST_TARGET= test
|
|
|
|
post-extract:
|
|
${CP} ${FILESDIR}/jpegexiforient.c ${WRKSRC}
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${FILESDIR}/exifautotran ${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/jpegint.h ${DESTDIR}${PREFIX}/include
|
|
${INSTALL_DATA} ${WRKSRC}/*.txt ${DESTDIR}${PREFIX}/share/doc/jpeg
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|