summaryrefslogtreecommitdiff
path: root/multimedia/vdr-plugins/Makefile
diff options
context:
space:
mode:
authorJuergen Lock <nox@FreeBSD.org>2011-03-26 19:23:13 +0000
committerJuergen Lock <nox@FreeBSD.org>2011-03-26 19:23:13 +0000
commit1f0ac5b7c611b0893a94502c46e80d97f9bde302 (patch)
tree98fe1d2d4ba31a49d4c2f39ad418213c3409689e /multimedia/vdr-plugins/Makefile
parenthttp://www.vdr-wiki.de/wiki/index.php/Live-plugin (diff)
Preliminary port of the vdr development branch, use at your own risk! :)
This is just a metaport that lets you select the plugins you want to install. See vdr/webcamd dvb thread(s) on the freebsd-multimedia list for FreeBSD notes, some links are here: http://people.freebsd.org/~nox/dvb/ and see these links for general vdr info: http://www.linuxtv.org/vdrwiki/index.php/Main_Page http://www.vdr-portal.de/ WWW: http://www.tvdr.de/
Notes
Notes: svn path=/head/; revision=271813
Diffstat (limited to 'multimedia/vdr-plugins/Makefile')
-rw-r--r--multimedia/vdr-plugins/Makefile87
1 files changed, 87 insertions, 0 deletions
diff --git a/multimedia/vdr-plugins/Makefile b/multimedia/vdr-plugins/Makefile
new file mode 100644
index 000000000000..9ee5fa29d7c8
--- /dev/null
+++ b/multimedia/vdr-plugins/Makefile
@@ -0,0 +1,87 @@
+# New ports collection makefile for: vdr
+# Date created: Sun Oct 17 21:15:34 CEST 2010
+# Whom: Juergen Lock <nox@freebsd.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= vdr-plugins
+PORTVERSION= 1.7.17
+PORTREVISION= 1
+CATEGORIES= multimedia
+MASTER_SITES= # none
+DISTFILES= # none
+EXTRACT_ONLY= # none
+
+MAINTAINER= nox@FreeBSD.org
+COMMENT= Video Disk Recorder - plugin metaport
+
+NO_BUILD= yes
+
+OPTIONS= CONTROL "telnet control" On \
+ EPGSEARCH "EPG search" On \
+ FEMON "frontend monitor" On \
+ INFOSATEPG "infosat EPG data via satellite" On \
+ IPTV "IP television" On \
+ OSDPIP "picture-in-picture" On \
+ OSDTELETEXT "OSD teletext" On \
+ REMOTE "non-lirc remote control (experimental)" On \
+ SKINENIGMANG "Enigma-NG skin" On \
+ STREAMDEV "stream device (server and client)" On \
+ XINELIBOUTPUT "xineliboutput plugin/viewer" On \
+ LIVE "live web plugin" On \
+ UPNP "UPnP/DLNA plugin (alpha!)" On \
+ VNSISERVER "VNSI server (for xbmc pvr branch - untested)" Off \
+ SOFTDEVICE "softdevice (broken?)" Off
+
+.include <bsd.port.options.mk>
+
+.if defined(WITH_CONTROL)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-control.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-control
+.endif
+.if defined(WITH_EPGSEARCH)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-epgsearch.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-epgsearch
+.endif
+.if defined(WITH_FEMON)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-femon.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-femon
+.endif
+.if defined(WITH_INFOSATEPG)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-infosatepg.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-infosatepg
+.endif
+.if defined(WITH_IPTV)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-iptv.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-iptv
+.endif
+.if defined(WITH_OSDPIP)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-osdpip.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-osdpip
+.endif
+.if defined(WITH_OSDTELETEXT)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-osdteletext.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-osdteletext
+.endif
+.if defined(WITH_REMOTE)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-remote.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-remote
+.endif
+.if defined(WITH_SKINENIGMANG)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-skinenigmang.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-skinenigmang
+.endif
+.if defined(WITH_STREAMDEV)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-streamdev-server.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-streamdev
+.endif
+.if defined(WITH_XINELIBOUTPUT)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-xineliboutput.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-xineliboutput
+.endif
+.if defined(WITH_LIVE)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-live.so.${PORTVERSION}:${PORTSDIR}/www/vdr-plugin-live
+.endif
+.if defined(WITH_UPNP)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-upnp.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-upnp
+.endif
+.if defined(WITH_SOFTDEVICE)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-softdevice.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-softdevice
+.endif
+.if defined(WITH_VNSISERVER)
+RUN_DEPENDS+= ${LOCALBASE}/lib/vdr/libvdr-vnsiserver.so.${PORTVERSION}:${PORTSDIR}/multimedia/vdr-plugin-vnsiserver
+.endif
+
+do-install: # empty
+
+.include <bsd.port.mk>