1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00
freebsd-ports/multimedia/pwcview/Makefile
Koop Mast 1c29f11ee4 * Fix a segfault problem with the motionbuf arry in the detectmotion() function.
When using "pwcview -s svga -f 20 -k"

* When pwcview sets the resolution to use, the V4L layer will reply with the
  actual resolution set. As close as possible to what pwcview requested.
  Fix a bug in main() that it uses the wrong size value, the resolution pwcview
  set instead of the size the V4L layer returned.

Submitted by:	Ivan Brawley <ivan@brawley.id.au>
Approved by:	hselasky@ (maintainer)
2010-10-27 10:18:37 +00:00

43 lines
1.0 KiB
Makefile

# New ports collection makefile for: pwcview
# Date created: 13 January 2010
# Whom: Andrew Thompson <thompsa@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pwcview
PORTVERSION= 1.4.1
PORTREVISION= 3
CATEGORIES= multimedia
MASTER_SITES= http://raaf.atspace.org/ \
http://www.selasky.org/hans_petter/video4bsd/releases/ \
${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= kwm
MAINTAINER= hselasky@FreeBSD.org
COMMENT= The Video4Linux PWC webcam viewer
BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev.h:${PORTSDIR}/multimedia/v4l_compat
LIB_DEPENDS= jpeg.11:${PORTSDIR}/graphics/jpeg \
v4l1.0:${PORTSDIR}/multimedia/libv4l
CONFLICTS= pwcbsd-[0-9]*
USE_SDL= sdl
MAN1= pwcview.1
WRKSRC= ${WRKDIR}/${PORTNAME}
.include <bsd.port.pre.mk>
post-patch:
@${REINPLACE_CMD} -e 's|-ljpeg|-ljpeg -lv4l1|g' \
-e 's|sdl-config|${SDL_CONFIG}|g' ${WRKSRC}/Makefile
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pwcview ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/pwcsnap ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/${MAN1} ${PREFIX}/man/man1
.include <bsd.port.post.mk>