mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
789d75c728
-Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr
59 lines
1.6 KiB
Makefile
59 lines
1.6 KiB
Makefile
# New ports collection makefile for: jpeg
|
|
# Date created: 6 November 1994
|
|
# Whom: smace
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
# PLEASE update print/ghostscript5 (there's a symlink that uses a hardwired
|
|
# version number) when updating this port. Thank you.
|
|
|
|
PORTNAME= jpeg
|
|
PORTVERSION= 7
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.ijg.org/files/ \
|
|
ftp://ftp.uu.net/graphics/jpeg/ \
|
|
http://sylvana.net/jpegcrop/:exif
|
|
DISTNAME= jpegsrc.v${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
|
|
jpegexiforient.c:exif exifautotran.txt:exif
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= IJG's jpeg compression utilities
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS= --enable-shared --enable-static
|
|
|
|
ADDITIONAL_HEADER= jinclude.h jpegint.h
|
|
|
|
# define J_MAXMEM like "make J_MAXMEM=32" to limit max processing memory to 32Mb
|
|
.if defined(J_MAXMEM)
|
|
CONFIGURE_ARGS+= --enable-maxmem=${J_MAXMEM}
|
|
.endif
|
|
|
|
MAN1= cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1
|
|
|
|
post-extract:
|
|
@${CP} ${DISTDIR}/jpegexiforient.c ${WRKSRC}/
|
|
@${CP} ${DISTDIR}/exifautotran.txt ${WRKSRC}/exifautotran
|
|
|
|
post-build:
|
|
@cd ${WRKSRC} && ${CC} ${CFLAGS} -o jpegexiforient jpegexiforient.c
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/jpeg
|
|
@${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/jpeg/
|
|
@${INSTALL_DATA} ${WRKSRC}/*.txt ${PREFIX}/share/doc/jpeg/
|
|
.endif
|
|
.for header in ${ADDITIONAL_HEADER}
|
|
@${INSTALL_DATA} ${WRKSRC}/${header} ${PREFIX}/include/
|
|
.endfor
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jpegexiforient ${PREFIX}/bin/
|
|
${INSTALL_SCRIPT} ${WRKSRC}/exifautotran ${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|