GENTOO Vdr plugin update

From VDR Wiki
Revision as of 02:05, 27 November 2004 by Monroe (talk | contribs) (initial)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Description

There are two possible ways to avoid searching for and re-installing VDR plugins after every update of VDR.

Ebuild user

vdr-reemerge-plugins v0.0.4

Simply start this program after you emerged vdr
to reemerge all vdrplugins

Options:
  -h    Show this help
  -p    Show what emerge would do
  -A    Only emerge active used plugins
  -u    Update to newest versions of each plugins
        (default is to reemerge installed version)

Thus a simple

vdr-reemerge-plugins -A

is sufficient to recompile all plugins.

Non-ebuild user

Hier ein kurzer Schnipsel Code mit dem dies auch möglich ist. Here is a short code snippet make this also possible

ACCEPT_KEYWORDS="~x86" /usr/bin/emerge -p \
  $(/usr/bin/epm -qa|/bin/grep vdrplugin |/bin/awk -F'-' '{printf("%s-%s ",$1,$2)}')

With the -p, only a list of affected plugins is shown. Remove it for the actual installation.