mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
d8bc04c3d3
Frei0r is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. It is not meant as a generic API for all kinds of video applications. There is no support for the requirements of special application areas like non linear editors, hardware accelerated shader effects, and high precision video processing. These advanced issues are not even solved satisfactory for non cross application plugin apis and are still an evolving field. The frei0r API is not meant to be a competing standard to more ambitious efforts. WWW: http://www.piksel.org/frei0r
27 lines
614 B
Makefile
27 lines
614 B
Makefile
# New ports collection makefile for: frei0r
|
|
# Date created: 17 November 2006
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= frei0r
|
|
PORTVERSION= 1.1.19
|
|
DISTVERSIONPREFIX= plugins-
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://frei0r.kexbox.org/download/source/ CSME
|
|
|
|
MAINTAINER= infofarmer@FreeBSD.org
|
|
COMMENT= Minimalistic plugin API for video effects
|
|
|
|
NO_BUILD= yes
|
|
PLIST_FILES= include/frei0r.h
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name .arch-ids -or -name {arch} | ${XARGS} ${RM} -rf
|
|
|
|
do-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/spec/frei0r.h ${PREFIX}/include/
|
|
|
|
.include <bsd.port.mk>
|