72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
# New ports collection makefile for: netpbm
|
|
# Date created: ?
|
|
# Whom: jmz (original)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= netpbm
|
|
PORTVERSION= 10.26.8
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= A toolkit for conversion of images between different formats
|
|
|
|
LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
png.5:${PORTSDIR}/graphics/png \
|
|
jbig.1:${PORTSDIR}/graphics/jbigkit
|
|
# jasper.4:${PORTSDIR}/graphics/jasper
|
|
|
|
USE_PERL5= yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= CC="${CC}" LN="${LN}" RANLIB="${RANLIB}"
|
|
MAKEFILE= GNUmakefile
|
|
INSTALL_TARGET= install.bin install.lib install.data install-dev
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= netpbm.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "sparc64"
|
|
# -O causes an ICE in converter/other/exif.c with gcc 3.3.3 on sparc64.
|
|
CFLAGS+= -O0
|
|
.endif
|
|
.if ${ARCH} == "alpha"
|
|
.if ${OSVERSION} < 500000
|
|
CFLAGS+= -O0
|
|
.endif
|
|
.endif
|
|
|
|
pre-configure:
|
|
@${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \
|
|
s|%%LOCALBASE%%|${LOCALBASE}|g ; \
|
|
s|%%X11BASE%%|${X11BASE}|g' ${WRKSRC}/pm_config.in.h
|
|
@${REINPLACE_CMD} -e 's|<shhopt.h>|<pm_shhopt.h>|g' ${WRKSRC}/lib/pm.h
|
|
@${REINPLACE_CMD} -e 's| jpeg2000||g' \
|
|
${WRKSRC}/converter/other/Makefile
|
|
@${CP} ${FILESDIR}/Makefile.config.FreeBSD ${WRKSRC}/Makefile.config
|
|
@${LN} -sf ${WRKSRC}/lib/util/shhopt.h ${WRKSRC}/lib/util/pm_shhopt.h
|
|
@${LN} -sf ${WRKSRC}/lib/util/nstring.h ${WRKSRC}/lib/util/pm_nstring.h
|
|
|
|
post-install:
|
|
@${ECHO_MSG} "===> Installing man pages..."
|
|
@${REINPLACE_CMD} -e 's|doc/USERDOC|${DOCSDIR}/USERDOC|g' \
|
|
${WRKSRC}/doc/netpbm.1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/netpbm.1 ${MANPREFIX}/man/man1
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/USERDOC ${DOCSDIR}/
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_PERL) && ${PERL_LEVEL} < 500800
|
|
RUN_DEPENDS+= ${SITE_PERL}/File/Temp.pm:${PORTSDIR}/devel/p5-File-Temp
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|