1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/graphics/iulib/Makefile
Pav Lucistnik 3c3add3e07 - Make sure not to use Video4Linux feature even if header files are found
PR:		ports/143685
Submitted by:	Hiroto Kagotani <hiroto.kagotani@gmail.com> (maintainer)
2010-02-11 12:26:35 +00:00

61 lines
1.5 KiB
Makefile

# New ports collection makefile for: iulib
# Date created: 2009-05-20
# Whom: Hiroto Kagotani <hiroto.kagotani@gmail.com>
#
# $FreeBSD$
#
PORTNAME= iulib
PORTVERSION= 0.4
PORTREVISION= 4
CATEGORIES= graphics
MASTER_SITES= GOOGLE_CODE
EXTRACT_SUFX= .tgz
MAINTAINER= hiroto.kagotani@gmail.com
COMMENT= A library of image understanding-related algorithms
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \
jpeg.11:${PORTSDIR}/graphics/jpeg \
tiff.4:${PORTSDIR}/graphics/tiff
OPTIONS= SDL "Enable SDL for graphical debugging" off \
VIDIO "Enable Video Input/Output (using ffmpeg)" off
MAKE_JOBS_SAFE= yes
USE_PYTHON_BUILD= yes
USE_AUTOTOOLS= libtool:22 aclocal:110 automake:110 autoconf:262
ACLOCAL_ARGS= --acdir=${ACLOCAL_DIR} -I${LOCALBASE}/share/aclocal
AUTOMAKE_ARGS= --add-missing
USE_LDCONFIG= yes
CONFIGURE_ENV= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
.if !defined(WITH_SDL)
CONFIGURE_ARGS+=--without-SDL
PLIST_SUB+= SDL="@comment "
.else
USE_SDL= sdl gfx
PLIST_SUB+= SDL=""
.endif
.if defined(WITH_VIDIO)
LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg
.endif
post-patch:
.if !defined(WITH_VIDIO)
@${REINPLACE_CMD} -e 's/novidio, 0/novidio, 1/' ${WRKSRC}/configure.ac
.endif
@${REINPLACE_CMD} -e 's/nov4l2, 0/nov4l2, 1/' ${WRKSRC}/configure.ac
pre-configure:
@(cd ${CONFIGURE_WRKSRC} \
&& ${SETENV} ${PYTHON_CMD} genAM.py >Makefile.am \
&& ${SETENV} ${AUTOTOOLS_ENV} ${LIBTOOLIZE} --automake)
run-autotools: run-autotools-aclocal run-autotools-automake run-autotools-autoconf
.include <bsd.port.post.mk>