blob: 4a57ec623c799b98387d038697bb7781350409b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
# 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_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>
|