notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: multimedia/vdr/Makefile

Number of commits found: 64

Friday, 30 Jun 2023
21:04 Rene Ladan (rene) search for other commits by this committer
cleanup: Remove expired multimedia/vdr ports:

2023-06-30 multimedia/vdr-plugin-osdteletext: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-wirbelscan: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-control: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-markad: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-iptv: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-femon: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-sleeptimer: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-remote: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-infosatepg: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-reelchannelscan: Depends on abandoned fork of
VDR
2023-06-30 multimedia/vdr-plugin-extrecmenu: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-vdrmanager: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-vnsiserver: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-xvdr: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugins: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-eepg: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-xineliboutput: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr: Abandoned "work in progress" fork in 2015
2023-06-30 multimedia/vdr-plugin-osdpip: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-epgsearch: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-streamdev: Depends on abandoned fork of VDR
2023-06-30 www/vdr-plugin-live: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-skinenigmang: Depends on abandoned fork of VDR
2023-06-30 multimedia/vdr-plugin-ttxtsubs: Depends on abandoned fork of VDR
commit hash: 17899659746e8bd507d6ec08461d7ee324b86da8 commit hash: 17899659746e8bd507d6ec08461d7ee324b86da8 commit hash: 17899659746e8bd507d6ec08461d7ee324b86da8 commit hash: 17899659746e8bd507d6ec08461d7ee324b86da8 1789965
Sunday, 4 Jun 2023
16:21 Dimitry Andric (dim) search for other commits by this committer
multimedia/vdr: fix build with clang 16

Since clang 16 (and gcc 11) the default C++ standard is now gnu++17.
Because multimedia/vdr's Makefile does not explicitly set its C++
standard, this leads to an error:

  util.c:269:4: error: ISO C++17 does not allow 'register' storage class
specifier [-Wregister]
     register int i;
     ^~~~~~~~~

Because the port's own Makefile is rather non-standard it does not
respect USE_CXXSTD=, so patch away the 'register' keyword instead.

PR:		271707
Approved by:	fernape
MFH:		2023Q2
commit hash: 83a6aff27701c52b445db12baee2a98c8cfd4135 commit hash: 83a6aff27701c52b445db12baee2a98c8cfd4135 commit hash: 83a6aff27701c52b445db12baee2a98c8cfd4135 commit hash: 83a6aff27701c52b445db12baee2a98c8cfd4135 83a6aff
Saturday, 3 Jun 2023
18:39 Daniel Engberg (diizzy) search for other commits by this committer
multimedia/vdr*: Deprecate including plug-ins and set expiration date to
2023-06-30

Upstream is still alive however our "work in progress" fork got abandoned
in 2015 and been unmaintained since. Several emergency patches have
been applied to keep various things building but it's in a state where so
old it's no longer maintainable and upstream have diverged too much.
commit hash: a6ed84a97b785ad95bf734ca12ac0f748aa87f0f commit hash: a6ed84a97b785ad95bf734ca12ac0f748aa87f0f commit hash: a6ed84a97b785ad95bf734ca12ac0f748aa87f0f commit hash: a6ed84a97b785ad95bf734ca12ac0f748aa87f0f a6ed84a
Wednesday, 7 Sep 2022
21:10 Stefan Eßer (se) search for other commits by this committer
Add WWW entries to port Makefiles

It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 commit hash: b7f05445c00f2625aa19b4154ebcbce5ed2daa52 b7f0544
Wednesday, 20 Jul 2022
14:22 Tobias C. Berner (tcberner) search for other commits by this committer
multimedia: remove 'Created by' lines

A big Thank You to the original contributors of these ports:

  *  Aaron LI <aly@aaronly.me>
  *  Alexander Botero-Lowry <alexbl@FreeBSD.org>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Anders Nordby <anders@FreeBSD.org>
  *  Andrew Pantyukhin <infofarmer@FreeBSD.org>
  *  Andrew Thompson <andy@fud.org.nz>
  *  Andrew Thompson <thompsa@FreeBSD.org>
  *  Angel Carpintero <ack@telefonica.net>
  *  Anish Mistry (with help from mean)
  *  Anonymous <swell.k@gmail.com>
  *  Ashish SHUKLA <ashish@FreeBSD.org>
  *  Ashish Shukla <wahjava@gmail.com>
  *  Ben Woods <woodsb02@FreeBSD.org>
  *  Brian Somers <brian@FreeBSD.org>
  *  Bruce M Simpson <bms@FreeBSD.org>
  *  Byung-Hee HWANG <bh@izb.knu.ac.kr>
  *  Charlie Kester <corky1951@comcast.net>
  *  Chess Griffin <chess@chessgriffin.com>
  *  Chris Piazza <cpiazza@FreeBSD.org>
  *  Christopher Key <cjk32@cam.ac.uk>
  *  Chuck Hein <chein@FreeBSD.org> & Jim Overholt <overholt@isdw.net>
  *  Daniel Morante <daniel@morante.net>
  *  Diego Depaoli <trebestie@gmail.com> and Yinghong Liu <relaxbsd@gmail.com>
  *  Dierk Sacher <dierk@blaxxtarz.de>
  *  Dreamcat4 <dreamcat4@gmail.com>
  *  Earl Gay <earl@eeg3.net>
  *  Ed Schouten <ed@FreeBSD.org>
  *  Edwin Groothuis <edwin@mavetju.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Felix Palmen <felix@palmen-it.de>
  *  Franz Bettag <franz@bett.ag>
  *  FreeBSD GNOME Team <gnome@freebsd.org>
  *  Gea-Suan Lin <gslin@gslin.org>
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Grzegorz Blach <gblach@FreeBSD.org>
  *  Gustau Perez <gustau.perez@gmail.com>
  *  Harold Gutch <logix@foobar.franken.de>
  *  Heiner <h.eichmann@gmx.de>
  *  Heiner Eichmann <h.eichmann@gmx.de>
  *  Hendrik Scholz <hendrik@scholz.net>
  *  Herbert J. Skuhra <h.skuhra@gmail.com>
  *  Herve Quiroz <hq@FreeBSD.org>
  *  Holger Lamm
  *  J.R. Oldroyd <fbsd@opal.com>
  *  Jason Harmening <jason.harmening@gmail.com>
  *  Jille Timmermans (jille@quis.cx)
  *  Juergen Lock <nox@FreeBSD.org>
  *  Juergen Lock <nox@jelal.kn-bremen.de>
  *  KalleDK <plexmaintainer@k-moeller.dk>
  *  Koop Mast <kwm@FreeBSD.org>
  *  Koop Mast <kwm@rainbow-runner.nl>
  *  Kozlov Sergey <kozlov.sergey.404@gmail.com>
  *  Kris Moore
  *  Kuan-Chung Chiu <buganini@gmail.com>
  *  Lars Eggert <lars.eggert@gmx.net>
  *  Leinier Cruz Salfran <salfrancl@yahoo.es>
  *  MANTANI Nobutaka <nobutaka@nobutaka.com>
  *  Manuel Creach <manuel.creach@icloud.com>
  *  Marc van Woerkom <3d@FreeBSD.org>
  *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
  *  Mark Felder <feld@FreeBSD.org>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Neubauer <m.ne@gmx.net>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Michael Johnson <ahze@FreeBSD.org>
  *  Michael Johnson <ahze@ahze.net>
  *  Michael Nottebrock <michaelnottebrock@gmx.net>
  *  Michael Nottebrock <michaelnottebrock@gmx.net> et al
  *  Mina Naguib <webmaster@topfx.com>
  *  Mykola Dzham <i@levsha.me>
  *  Naram Qashat <cyberbotx@cyberbotx.com>
  *  Olivier Cochard-Labbe <olivier@FreeBSD.org>
  *  Pascal Vizeli <pvizeli@yahoo.de>
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Pawel Pekala <pawel@FreeBSD.org>
  *  Petar Zhivkov Petrov <pesho.petrov@gmail.com>
  *  Phil Oleson
  *  Phil Oleson <oz@nixil.net>
  *  Piotr Kubaj <pkubaj@anongoth.pl>
  *  Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Raaf <freebsd@luna.afraid.org>
  *  Randall Hopper <aa8vb@nc.rr.com>
  *  Rodrigo OSORIO <rodrigo@FreeBSD.org>
  *  Rozhuk Ivan 2018 <rozhuk.im@gmail.com>
  *  Rozhuk Ivan <rozhuk.im@gmail.com>
  *  Rozhuk Ivan rozhuk.im@gmail.com
  *  Rusmir Dusko <nemysis@FreeBSD.org>
  *  Stacey Son <mythdev@son.org>, Ari Maniatis <ari@ish.com.au>
  *  Steve Wills <steve@mouf.net>
  *  Steve Wills <swills@FreeBSD.org>
  *  Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
  *  Sylvio Cesar <sylvio@FreeBSD.org>
  *  Thierry Thomas <thierry@pompo.net>
  *  Thomas E. Zander
  *  Thomas E. Zander with help from Vladimir Kushnir
  *  Vladimir Kondratiev <wulf@mail.mipt.ru>
  *  William Grzybowski <wg@FreeBSD.org>
  *  William Grzybowski <william88@gmail.com>
  *  Yi-Hsuan Hsin <mhsin@mhsin.org>
  *  Zastupov Stepan [RedChrom] <redchrom@mail.ru>
  *  adamw
  *  alex
  *  arved
  *  erich@FreeBSD.org
  *  freebsd-ports@evilcode.net
  *  giffunip@asme.org
  *  ijliao
  *  kamikaze@bsdforen.de
  *  michael johnson <ahze@ahze.net>
  *  mikael.urankar@gmail.com
  *  mm
  *  nox@FreeBSD.org
  *  osa
  *  pb@FreeBSD.org
  *  piero
  *  se@FreeBSD.org
  *  sumikawa

With hat:	portmgr
commit hash: 63f36d326290febc7af8820d7bde9c78cda71c80 commit hash: 63f36d326290febc7af8820d7bde9c78cda71c80 commit hash: 63f36d326290febc7af8820d7bde9c78cda71c80 commit hash: 63f36d326290febc7af8820d7bde9c78cda71c80 63f36d3
Saturday, 16 Oct 2021
09:51 Jimmy Olgeni (olgeni) search for other commits by this committer
*: fix tab vs. space issues, and comments according to the guide.
commit hash: 4460cf727a7788c9ce21f3344ce5745e5cd9fc4a commit hash: 4460cf727a7788c9ce21f3344ce5745e5cd9fc4a commit hash: 4460cf727a7788c9ce21f3344ce5745e5cd9fc4a commit hash: 4460cf727a7788c9ce21f3344ce5745e5cd9fc4a 4460cf7
Friday, 4 Jun 2021
05:53 Gerald Pfeifer (gerald) search for other commits by this committer
*/*: Replace USE_GCC=any with USE_GCC=yes

USE_GCC=any has been equivalent to USE_GCC=yes in most cases (such
as i386 and amd64 since 12.x and depending on configuration 11.x,
most newer installations on other platforms, and 13.x across the
board).

Since commit 96c17633d90386b5bcf8 Mk/bsd.gcc.mk is treating them as
different spellings of the same, so continue the deorbiting of the
USE_GCC=any form and simply replace it with USE_GCC=yes.

This should not make any functional difference at all.

Discussed with:	mat, linimon, pkubaj
commit hash: d09ed096c44ca516f3e4922e292b4afabd03ff11 commit hash: d09ed096c44ca516f3e4922e292b4afabd03ff11 commit hash: d09ed096c44ca516f3e4922e292b4afabd03ff11 commit hash: d09ed096c44ca516f3e4922e292b4afabd03ff11 d09ed09
Tuesday, 6 Apr 2021
14:31 Mathieu Arnold (mat) search for other commits by this committer
Remove # $FreeBSD$ from Makefiles.
commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb commit hash: 305f148f482daf30dcf728039d03d019f88344eb 305f148
Friday, 26 Jul 2019
20:46 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
Original commitRevision:507372 
Wednesday, 12 Dec 2018
01:35 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.

PR:		231590
Original commitRevision:487272 
Saturday, 29 Sep 2018
08:04 riggs search for other commits by this committer
Bump PORTREVISION to chase update of multimedia/v4l_compat and libv4l
Original commitRevision:480899 
Sunday, 29 Jul 2018
22:18 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.

This includes ports
 - featuring USE_GCC=yes or USE_GCC=any,
 - featuring USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and those
 - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
   c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.

PR:		222542
Original commitRevision:475857 
Saturday, 10 Mar 2018
17:46 gerald search for other commits by this committer
Bump PORTREVISIONs of all users of math/mpc that we just updated to
version 1.1.0 (via revision 464079).
Original commitRevision:464084 
Sunday, 10 Sep 2017
20:55 gerald search for other commits by this committer
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using Mk/bsd.octave.mk which in turn features USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
   c++14-lang, c++0x, c11, or gcc-c++11-lib.

PR:		219275
Original commitRevision:449591 
Saturday, 1 Apr 2017
15:23 gerald search for other commits by this committer
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

This includes ports
 - with USE_GCC=yes or USE_GCC=any,
 - with USES=fortran,
 - using using Mk/bsd.octave.mk which in turn has USES=fortran, and
 - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
   c++11-lang, c++0x, c11, or gcc-c++11-lib.

PR:		216707
Original commitRevision:437439 
Wednesday, 1 Feb 2017
05:24 jbeich search for other commits by this committer
multimedia/vdr: unbreak with clang 4.0

recording.c:2090:17: error: ordered comparison between pointer and zero
('cUnbufferedFile *' and 'int')
     if (Open() >= 0) {
         ~~~~~~ ^  ~

PR:		216058
Reported by:	antoine (via exp-run)
Original commitRevision:432967 
Tuesday, 13 Dec 2016
12:15 amdmi3 search for other commits by this committer
- Pet portlint
- Switch to options helpers
- Cosmetic fixes
- Remove broken extra patch
- Turn non-optional extra patch to regular patch
- Fix Makefile.plugins to not override PLIST_SUB
Original commitRevision:428482 
Sunday, 20 Nov 2016
09:38 gerald search for other commits by this committer
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
Original commitRevision:426566 
Wednesday, 20 Jul 2016
15:33 mat search for other commits by this committer
Cleanup $() variables in ports Makefiles.

Mostly replace with ${}, but sometime, replace with $$() because it is
what was intended in the first place. (I think.)

Sponsored by:	Absolight
Original commitRevision:418840 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Tuesday, 12 Jan 2016
16:20 amdmi3 search for other commits by this committer
Convert LICENSE= "GPLxx # or later" to "GPLxx+"

Approved by:	portmgr blanket
Original commitRevision:405891 
Monday, 14 Dec 2015
02:52 eadler search for other commits by this committer
Reset maintainer
Original commitRevision:403704 
Monday, 22 Jun 2015
18:33 antoine search for other commits by this committer
Convert to USES=jpeg
Original commitRevision:390310 
Saturday, 16 May 2015
08:09 amdmi3 search for other commits by this committer
- Add CPE info
- Add LICENSE

Approved by:	portmgr blanket
Original commitRevision:386501 
Thursday, 23 Oct 2014
08:57 marino search for other commits by this committer
multimedia/vdr: IGNORE on DragonFly which is missing some drivers
Original commitRevision:371381 
Tuesday, 12 Aug 2014
16:47 nox search for other commits by this committer
- Turns out the 10.0-R clang crashes I couldn't reproduce (on amd64) were
  in fact on i386 - since this was the first report I got of this kind
  (and I don't have an i386 box anymore myself) let's assume it's an
  i386 issue.  So change the USE_GCC=any to be i386-only.
- Bump PORTREVISION.

PR:		192583
Original commitRevision:364721 
16:07 nox search for other commits by this committer
- Add USE_GCC=any to fix crashes on 10.0 . (which I cannot reproduce tho)
- Bump PORTREVISION.

PR:		192583
Submitted by:	martin.dieringer@gmx.de
Original commitRevision:364716 
Tuesday, 15 Jul 2014
16:27 adamw search for other commits by this committer
Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.
Original commitRevision:361964 
Tuesday, 20 May 2014
19:32 tijl search for other commits by this committer
Quote ${CC} and similar variables in MAKE_ARGS.

Reported by:	Dominic Fandrey <kamikaze@bsdforen.de>
Original commitRevision:354670 
Sunday, 11 May 2014
16:04 nox search for other commits by this committer
- Add RUN_DEPENDS on x11-fonts/xorg-fonts-truetype.
- Add USES= shebangfix for svdrpsend.
- Use @sample.
- Pet check-plist.
- Bump PORTREVISION.
Original commitRevision:353715 
Saturday, 15 Mar 2014
15:36 nox search for other commits by this committer
Switch my ports to USES=  tar:...
Original commitRevision:348333 
Thursday, 13 Mar 2014
17:28 nox search for other commits by this committer
Really depend on libiconv. (fixes packaging, doh!)
Original commitRevision:348105 
Saturday, 1 Mar 2014
23:15 nox search for other commits by this committer
Somehow multimedia/vdr itself was list in the previous commit.  Sorry... :(
Original commitRevision:346725 
Friday, 20 Sep 2013
20:57 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
multimedia)
Original commitRevision:327747 
Wednesday, 4 Sep 2013
18:06 madpilot search for other commits by this committer
- Make ports use the libc provided iconv implementation on 10-CURRENT
  after r254273
- Fix a bunch of ports to properly work after this
- Mark converters/libiconv as IGNORE for systems with iconv in libc

Reviewed by:	bapt
Approved by:	portmgr (bapt)
Discussed with:	bapt, bsam (who both contributed ideas and code)
Original commitRevision:326307 
Wednesday, 14 Aug 2013
22:35 ak search for other commits by this committer
- Remove MAKE_JOBS_SAFE variable

Approved by:	portmgr (bdrewery)
Original commitRevision:324744 
Wednesday, 10 Jul 2013
17:44 nox search for other commits by this committer
- Fix multimedia/vdr-plugin-markad build by fixing .include order.
- Switch to USES= gmake.
- Remove 7.x cruft.

Submitted by:	pointyhat via miwi
Original commitRevision:322722 
Saturday, 27 Apr 2013
11:59 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	zeising
Original commitRevision:316662 
Friday, 26 Apr 2013
10:44 ak search for other commits by this committer
- Convert USE_GETTEXT to USES (part 4)

Approved by:	portmgr (bapt)
Original commitRevision:316596 
Tuesday, 23 Apr 2013
14:20 bapt search for other commits by this committer
Finish converting the whole ports tree to USES=pkgconfig
Original commitRevision:316355 
Tuesday, 19 Mar 2013
18:03 nox search for other commits by this committer
- Add fix for crashes when cutting. [1]
- Convert Makefile header.
- Bump PORTREVISION.

Reported by:	gb+ML-2011@derbrauer.homelinux.net (Gerhard Brauer) [1]
Original commitRevision:314671 
Wednesday, 20 Feb 2013
20:20 nox search for other commits by this committer
Add two fixes for device bonding. (locking and OSD LNB setup menu)

Obtained from:	upstream author via vdr mailinglist
Original commitRevision:312664 
Saturday, 28 Jul 2012
09:00 nox search for other commits by this committer
Convert to USE_PKGCONFIG.
Original commit
Sunday, 22 Jul 2012
09:25 nox search for other commits by this committer
- Update multimedia/vdr to 1.7.29 .
- Bump PORTREVISION for all plugins.
Original commit
Thursday, 28 Jun 2012
17:49 nox search for other commits by this committer
- Fix two linux/dvb ioctls in multimedia/v4l_compat , multimedia/webcamd ,
  and multimedia/linux_dvbwrapper : CA_GET_SLOT_INFO and CA_GET_MSG
  need to be _IOWR not _IOR.
- Bump PORTREVISION for multimedia/vdr too since it uses one of the ioctls.
  (This fixes the CI slot of at last the TT CT-3650 DVB-C/T tuner.)

Approved by:    hselasky (maintainer of multimedia/webcamd)
Original commit
Tuesday, 19 Jun 2012
18:42 nox search for other commits by this committer
- Update multimedia/vdr and multimedia/vdr-plugins to 1.7.28 .
- Update xineliboutput XKeySym.Pause key in example remote.conf.
  ("space" instead of "Space")
- Add multimedia/vdr-plugin-extrecmenu 1.2.2 to vdr-plugins metaport.
- Update multimedia/vdr-plugin-skinenigmang to 0.1.2s20120606 git snapshot.
- Update www/vdr-plugin-live to 0.2.0s20120325 git snapshot.
- Bump PORTREVISION for all other plugins and add api fixes where necessary.
- Add HISTORY to PORTDOCS for most plugins. (those that have it)
- Remove shlib major versions from LIB_DEPENDS to pet portlint.
Original commit
Sunday, 3 Jun 2012
11:33 nox search for other commits by this committer
- Convert this to OPTIONng too.
- Pet portlint.
Original commit
Wednesday, 23 May 2012
20:02 nox search for other commits by this committer
- Add fix for fontconfig 2.9.0 .
- Bump PORTREVISION.
Original commit
Friday, 11 May 2012
17:17 nox search for other commits by this committer
- Further fixes to the signal quality display, especially SNR.
- Bump PORTREVISION.
Original commit
Thursday, 10 May 2012
19:21 nox search for other commits by this committer
- Remove s2apiwrapper patch now that multimedia/v4l_compat was
  updated.
- Add patch to fix cSVDRP::Send() failing due to EAGAIN, like when
  vdradmin-am downloads EPG.  (A socket was O_NONBLOCK when it
  shouldn't be.)
- Add OPTION to fix STB0899 signal strength display for e.g.
  pctv452e-based DVB-S2 tuners (like TT S2-36?0), this is a knob
  since I don't know if there are other STB0899-based tuners where
  the patch is wrong.
- Bump PORTREVISION.
Original commit
Saturday, 21 Apr 2012
14:10 nox search for other commits by this committer
- Update multimedia/vdr and multimedia/vdr-plugins to 1.7.27 .
- Update multimedia/vdr-plugin-epgsearch to 1.0.1s20120322 git snapshot.
- Update multimedia/vdr-plugin-femon to 1.7.15 .
- Update multimedia/vdr-plugin-iptv to 0.5.0 .
- Update multimedia/vdr-plugin-osdteletext to 0.9.2 .
- Update multimedia/vdr-plugin-streamdev to 0.5.1p20120311 git snapthot.
- Update multimedia/vdr-plugin-xineliboutput to 1.0.90s20111129.1002
  cvs snapshot.
- Bump PORTREVISION for all other plugins and add vdr 1.7.27
  compatibility/bugfix patches where necessary.
Original commit
Friday, 23 Mar 2012
23:53 nox search for other commits by this committer
Add missing USE_ICONV to fix WITHOUT_NLS.

Feature safe:   yes
Original commit
Saturday, 21 Jan 2012
17:32 nox search for other commits by this committer
- Update multimedia/vdr to 1.7.22 .
- Add startup script that the rc.d script invokes to wait for
  /dev/dvb nodes to appear, can be disabled by setting vdr_waitdvb="NO"
  in rc.conf(5).  (This turned out to be necessary in some situations
  because devd starts webcamd only later in the boot process.)
- One more fix for changing OSD language when using UTF-8.
- Update multimedia/vdr-plugin-femon to 1.7.11 .
- Update multimedia/vdr-plugin-ttxtsubs to 0.2.4 .
- Bump PORTREVISION for all other plugins.
- Update www/vdradmin-am to 3.6.9 .
Original commit
Saturday, 10 Dec 2011
17:14 nox search for other commits by this committer
Fix startup crash without setup.conf by merging fix from upstream.

Feature safe:   yes
Original commit
Saturday, 20 Aug 2011
19:45 nox search for other commits by this committer
- Add diseqc fix.
- Bump PORTREVISION.

Reported by:    hselasky
Obtained from:  vdr mailinglist
Original commit
Friday, 15 Jul 2011
22:37 nox search for other commits by this committer
- If vdr is started without a locale query login.conf(5) for
  a lang setting.  (This helps at least "service vdr start" which
  doesn't pass a LANG and thus left vdr falling back to the C locale
  and e.g. showing non-ASCII chars as '?' in the osd.)
- Bump PORTREVISION.
Original commit
Saturday, 25 Jun 2011
19:02 nox search for other commits by this committer
- Update multimedia/vdr to 1.7.19 (with parts of the update reverted
  to avoid a known bug.)
- Fix build with clang for vdr and plugins, and also fix a few bugs it
  uncovered.
- Bump PORTREVISION for all plugins.
Original commit
Friday, 10 Jun 2011
17:33 nox search for other commits by this committer
- Add support patches for teletext subtitle plugin to multimedia/vdr
  with knob defaulted to on.  (multimedia/vdr-plugin-ttxtsubs, to be
  committed next.)
- Bump PORTVERSION for vdr, and also for its plugins because this
  is an ABI change.
Original commit
Wednesday, 11 May 2011
19:46 nox search for other commits by this committer
- Fix detection of tuners on higher than /dev/dvb/adapter8.
- Bump PORTREVISION.
Original commit
Monday, 9 May 2011
18:29 nox search for other commits by this committer
- Add `y' to keyboard mappings as alternate key for `Play' to workaround
  vdr-sxfe --hotkeys already hardcoding `p' as `Power'.
- Directly link to the wiki page http://wiki.freebsd.org/VDR from the main
  vdr and vdr-plugins ports' pkg-descr.s
- Bump PORTREVISIONs.
Original commit
Tuesday, 19 Apr 2011
19:36 nox search for other commits by this committer
- Update multimedia/vdr to 1.7.18 .
- Bump PORTVERSION for all plugins.
- Add markad plugin to multimedia/vdr-plugins metaport.
Original commit
Thursday, 7 Apr 2011
19:28 nox search for other commits by this committer
Fix build WITHOUT_NLS.  (Oops!)

Reported by:    lme
Original commit
Sunday, 27 Mar 2011
16:20 nox search for other commits by this committer
Add optional workaround patch and knob for North American DVB-S AC3
audio. (default off for now since it doesn't seem to be a `proper' fix.)

Submitted by:   VDR User <user.vdr@gmail.com> on -multimedia
Original commit
Saturday, 26 Mar 2011
19:13 nox search for other commits by this committer
Preliminary port of the vdr development branch, use at your own risk! :)

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/
Original commit

Number of commits found: 64