mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
fc77f31439
It captures a VNC desktop session (either your own screen or a remote computer) and saves as a Flash Video (FLV) file. WWW: http://www.unixuser.org/~euske/python/vnc2flv PR: ports/153414 Submitted by: Jason Helfman <jhelfman at experts-exchange.com> Approved by: wxs (mentor)
29 lines
717 B
Makefile
29 lines
717 B
Makefile
# New ports collection makefile for: vnc2flv
|
|
# Date created: December 23 2010
|
|
# Whom: Jason Helfman <jhelfman@experts-exchange.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= vnc2flv
|
|
PORTVERSION= 20100207
|
|
CATEGORIES= deskutils multimedia www python
|
|
MASTER_SITES= ${MASTER_SITE_CHEESESHOP}
|
|
MASTER_SITE_SUBDIR= source/v/${PORTNAME}/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= jhelfman@experts-exchange.com
|
|
COMMENT= Captures a VNC desktop session and saves as a flv
|
|
|
|
.if !defined(WITHOUT_X11)
|
|
RUN_DEPENDS+= x11vnc:${PORTSDIR}/net/x11vnc
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= ${PORTNAME}
|
|
PYDISTUTILS_PKGVERSION= ${PORTVERSION}
|
|
|
|
.include <bsd.port.mk>
|