Package Details: vdr 2.6.6-1

Git Clone URL: https://aur.archlinux.org/vdr.git (read-only, click to copy)
Package Base: vdr
Description: 'open' digital satellite receiver and timer controlled video disk recorder
Upstream URL: http://tvdr.de/
Licenses: GPL-2.0-or-later
Conflicts: runvdr-extreme
Provides: vdr-api
Replaces: runvdr-extreme
Submitter: lotho
Maintainer: CReimer (M-Reimer)
Last Packager: M-Reimer
Votes: 63
Popularity: 0.001847
First Submitted: 2006-06-19 17:17 (UTC)
Last Updated: 2024-01-28 21:56 (UTC)

Dependencies (16)

Required by (113)

Sources (12)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 .. 11 Next › Last »

azleifel commented on 2015-01-20 22:04 (UTC)

* Updated to vdr 2.0.7

azleifel commented on 2014-03-23 09:38 (UTC)

* Updated to vdr 2.0.6 Note that the APIVERSION has changed therefore plugins will need to be rebuilt.

azleifel commented on 2014-03-12 22:35 (UTC)

vdr 2.0.5-4 * Removed vdr-1.7.40-ttxtsubs.patch If anyone wants to add it to their own local PKGBUILD then the latest version can be found here: http://projects.vdr-developer.org/git/vdr-plugin-ttxtsubs.git/tree/patches

Corpswalker commented on 2014-03-12 20:08 (UTC)

With the vdr-1.7.40-ttxtsubs.patch runvdr throws a SegFault at start. Had to revert to 2.0.5-1

azleifel commented on 2014-03-03 00:36 (UTC)

Should never succumb to flattery! Just a note of warning, VDRAdmin-AM does not play well (here) with the ttxtsubs.patch in place. Everything works except the EPG Search function, which loses the ability to read epg entries.

azleifel commented on 2014-02-26 22:34 (UTC)

vdr 2.0.5-2 * Added vdr-1.7.40-ttxtsubs.patch Flattery works, sometimes ;-)

decaturguy commented on 2014-02-26 20:38 (UTC)

Thanks, Azleifel your are the greatest. :) I used VDR directory environment to build # Build make LIBDIR="$pkgdir/$_vdrLIBDIR" \ LOCALEDIR="$pkgdir/$_vdrLOCDIR" \ VDRDIR="$_vdrINCDIR/vdr" \ ................................ One more thing is it possible for you to include the ttxtsubs patch. http://projects.vdr-developer.org/projects/plg-ttxtsubs It's really a must at least in Scandinavia and some other countries who uses teletext subtitles instead of DVB subtitles. English movies are OK one can understand with out subtitles, but when they show foreign movies thats when it gets !!!###

azleifel commented on 2014-02-26 19:32 (UTC)

@decaturguy: My vdr package installs vdr.pc in /usr/lib/pkgconfig, which is where it ought to be, and doesn't install the vdr source tree, so it isn't possible to build plugins in the way you're probably trying to build the channellists plugin without first making some changes to the plugin's Makefile. In the meantime, try the following PKGBUILD. I knocked it together very quickly and it builds just fine. The only thing it doesn't do is install the channellists-update.sh script that's included with the source. pkgname=vdr-channellists _pluginname=channellists pkgver=0.0.5 pkgrel=1 arch=('i686' 'x86_64') pkgdesc="A VDR Plugin to manage your Channellists" url="http://www.zulu-entertainment.de/content.php?f=VDR-Plugins&sub=Channellists" license=('GPL2') depends=('vdr>=2.0.0') source=(http://www.zulu-entertainment.de/files/vdr-channellists/${pkgname}-${pkgver}.tgz) md5sums=('20ab294c48164b513ed0557acee5c66c') build() { cd "${srcdir}/${_pluginname}-${pkgver}" make } package() { cd "${srcdir}/${_pluginname}-${pkgver}" make DESTDIR="${pkgdir}" install # Install documents install -d -m755 "${pkgdir}/usr/share/doc/${pkgname}" for _file in README HISTORY; do install -m644 ${_file} "${pkgdir}/usr/share/doc/${pkgname}" done }

decaturguy commented on 2014-02-26 17:01 (UTC)

# vdr.pc is needed to compile vdr-channellists plugin install -m644 $"${srcdir}/${pkgname}-${pkgver}/vdr.pc" "${pkgdir}${_vdrINCDIR}/vdr"