35 lines
789 B
Makefile
35 lines
789 B
Makefile
# $OpenBSD: Makefile,v 1.2 2008/06/13 17:10:30 robert Exp $
|
|
|
|
COMMENT= fswebcam is a small and simple webcam app
|
|
|
|
DISTNAME= fswebcam-20070108
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.firestorm.cx/fswebcam/files/
|
|
|
|
HOMEPAGE= http://www.firestorm.cx/fswebcam/
|
|
|
|
MAINTAINER= Marcus Glocker <marcus@nazgul.ch>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
LIB_DEPENDS= gd::graphics/gd
|
|
|
|
CONFIGURE_STYLE= simple
|
|
CONFIGURE_ARGS+= --disable-v4l1
|
|
CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fswebcam ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/fswebcam.1 ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|