diff options
author | pawel <pawel@FreeBSD.org> | 2012-03-30 05:39:25 +0800 |
---|---|---|
committer | pawel <pawel@FreeBSD.org> | 2012-03-30 05:39:25 +0800 |
commit | 27462fcd792cb1ab43b24d63bf88a84808318388 (patch) | |
tree | 9580ca0233ffcb18152b5a1432b4d1c6f12dfd54 /multimedia/bino/Makefile | |
parent | 50d18b77b18fcdfc08b26602ef030bd75722cd3f (diff) | |
download | freebsd-ports-gnome-27462fcd792cb1ab43b24d63bf88a84808318388.tar.gz freebsd-ports-gnome-27462fcd792cb1ab43b24d63bf88a84808318388.tar.zst freebsd-ports-gnome-27462fcd792cb1ab43b24d63bf88a84808318388.zip |
Bino is a video player with the following main features:
Support for stereoscopic 3D video, with a wide variety of input and output
formats.
Support for multi-display video, e.g. for powerwalls, Virtual Reality
installations and other multi-projector setups.
WWW: http://bino3d.org/
PR: ports/166389
Submitted by: Mykola Dzham <i@levsha.me>
Feature safe: yes
Diffstat (limited to 'multimedia/bino/Makefile')
-rw-r--r-- | multimedia/bino/Makefile | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/multimedia/bino/Makefile b/multimedia/bino/Makefile new file mode 100644 index 000000000000..a3807ac0d8b5 --- /dev/null +++ b/multimedia/bino/Makefile @@ -0,0 +1,50 @@ +# New ports collection makefile for: bino +# Date created: 2012-03-12 +# Whom: Mykola Dzham <i@levsha.me> +# +# $FreeBSD$ +# + +PORTNAME= bino +PORTVERSION= 1.2.1 +CATEGORIES= multimedia +MASTER_SITES= http://download.savannah.nongnu.org/releases/bino/ http://levsha.me/ports/distfiles/ + +MAINTAINER= i@levsha.me +COMMENT= 3D video player with multi-display support + +LICENSE= GPLv3 + +FETCH_ARGS= -Fpr +USE_XZ= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +INSTALLS_ICONS= yes +USE_QT_VER= 4 +QT_COMPONENTS= moc_build opengl rcc_build + +# no port fow equalizer now, lirc detecting not working +CONFIGURE_ARGS+= --without-equalizer --without-liblircclient --docdir=${DOCSDIR} + +LIB_DEPENDS+= ass.5:${PORTSDIR}/multimedia/libass \ + avformat.1:${PORTSDIR}/multimedia/ffmpeg \ + GLEW.1:${PORTSDIR}/graphics/glew \ + openal.1:${PORTSDIR}/audio/openal-soft + +MAN1= bino.1 +INFO= bino + +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif + +# fixes build on non UTF-8 enviroments +post-patch: + @${REINPLACE_CMD} -e 's|echo $<|LANG=C; LC_ALL=C; &|' \ + ${WRKSRC}/src/Makefile.in + +.include <bsd.port.mk> |