~ubuntu-branches/ubuntu/raring/jockey/raring

« back to all changes in this revision

Viewing changes to data/handlers/fglrx.py

  • Committer: Package Import Robot
  • Author(s): Martin Pitt, Alberto Milone, Martin Pitt
  • Date: 2011-09-21 12:51:55 UTC
  • Revision ID: package-import@ubuntu.com-20110921125155-dw5aixlheno0242o
Tags: 0.9.4-0ubuntu7
[ Alberto Milone ]
* data/handlers/fglrx.py: Use the correct name for the module and for the
  package in fglrx.py. (LP: #855396)

[ Martin Pitt ]
* jockey/oslib.py, package_header_modaliases(): Only consider packages for
  the system architecture. This avoids creating non-working default handlers
  for e. g. fglrx:i386 on an amd64 system. (LP: #855175)
* Drop data/handlers/nouveau3d.py, it's installed by default now.
  (LP: #839533)

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
        else:
25
25
            name=_('ATI/AMD proprietary FGLRX graphics driver')
26
26
 
27
 
        XorgDriverHandler.__init__(self, backend, 'fglrx', (package and
28
 
            package.replace('-', '_') or 'fglrx'), None, None, add_modules=['glx'],
 
27
        XorgDriverHandler.__init__(self, backend, (package and
 
28
            package.replace('-', '_') or 'fglrx'), (package and
 
29
            package or 'fglrx'), None, None, add_modules=['glx'],
29
30
            disable_modules=[], name=name,
30
31
            description=_('3D-accelerated proprietary graphics driver for '
31
32
                'ATI cards.'),