freebsd-ports/graphics/vigra/Makefile
2007-05-01 15:52:25 +00:00

66 lines
1.7 KiB
Makefile

# New ports collection makefile for: panorama-tools
# Date created: 26 august 2004
# Whom: cartola (Carlos E. G. Carvalho)
#
# $FreeBSD$
#
# This port has been made as a building dependence for the hugin port.
# As far as I could test the hugin port runs without this port installed, so the package
# does not need to refer to this dependence.
# The hugin port is a gui interface to interact with panorama tools.
PORTNAME= vigra
PORTVERSION= 1.5.0
CATEGORIES= graphics
MASTER_SITES= http://kogs-www.informatik.uni-hamburg.de/~koethe/vigra/
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= vd@FreeBSD.org
COMMENT= VIGRA stands for "Vision with Generic Algorithms"
USE_AUTOTOOLS= libtool:15
GNU_CONFIGURE= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --docdir=${DOCSDIR}
USE_GMAKE= yes
USE_LDCONFIG= yes
.if !defined(WITHOUT_VIGRA_TIFF)
LIB_DEPENDS+= tiff.4:${PORTSDIR}/graphics/tiff
CONFIGURE_ARGS+= --with-tiff
.else
CONFIGURE_ARGS+= --without-tiff
.endif
.if !defined(WITHOUT_VIGRA_JPEG)
LIB_DEPENDS+= jpeg.9:${PORTSDIR}/graphics/jpeg
CONFIGURE_ARGS+= --with-jpeg
.else
CONFIGURE_ARGS+= --without-jpeg
.endif
.if !defined(WITHOUT_VIGRA_PNG)
LIB_DEPENDS+= png.5:${PORTSDIR}/graphics/png
CONFIGURE_ARGS+= --with-png
.else
CONFIGURE_ARGS+= --without-png
.endif
.if !defined(WITHOUT_VIGRA_ZLIB)
CONFIGURE_ARGS+= --with-zlib
.else
CONFIGURE_ARGS+= --without-zlib
.endif
.if !defined(WITHOUT_VIGRA_FFTW)
LIB_DEPENDS+= fftw3:${PORTSDIR}/math/fftw3
CONFIGURE_ARGS+= --with-fftw
.else
CONFIGURE_ARGS+= --without-fftw
.endif
post-patch:
${REINPLACE_CMD} -e 's/--mode=/-m /g' ${WRKSRC}/Makefile.in
.include <bsd.port.mk>