68 lines
1.7 KiB
Makefile
68 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.6.0
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://hci.iwr.uni-heidelberg.de/vigra/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION}
|
|
|
|
MAINTAINER= vd@FreeBSD.org
|
|
COMMENT= VIGRA stands for "Vision with Generic Algorithms"
|
|
|
|
USE_AUTOTOOLS= libtool:22
|
|
GNU_CONFIGURE= yes
|
|
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.11:${PORTSDIR}/graphics/jpeg
|
|
CONFIGURE_ARGS+= --with-jpeg
|
|
.else
|
|
CONFIGURE_ARGS+= --without-jpeg
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_VIGRA_PNG)
|
|
LIB_DEPENDS+= png.6:${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
|
|
${REINPLACE_CMD} -e 's/png_set_gray_1_2_4_to_8/png_set_expand_gray_1_2_4_to_8/g' \
|
|
${WRKSRC}/src/impex/png.cxx
|
|
|
|
.include <bsd.port.mk>
|