~ubuntu-branches/ubuntu/trusty/libavg/trusty-proposed

« back to all changes in this revision

Viewing changes to src/wrapper/__init__.py

  • Committer: Package Import Robot
  • Author(s): OXullo Intersecans
  • Date: 2011-12-06 22:44:56 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111206224456-qc7250z3ya1vi8s9
Tags: 1.7.0-0ubuntu1
* New upstream release (LP: #899183)
* Remove patches 0002-libav-0.7.patch, 0003-fglrx-segfault-on-startup.patch
  now merged to upstream
* Remove unnecessary .la files
* Update debian/watch file
* Fix debian/copyright dep-5 compliancy
* Update standards to version 3.9.2
* Add man pages for avg_checktouch, avg_checkvsync, avg_showsvg
* Minor debian/rules enhancement
* Add librsvg2-dev, libgdk-pixbuf2.0-dev to Build-Depends
* Proper transition to dh_python2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Work around libstdc++ Mesa bug
2
 
# (https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/259219)
3
 
from platform import system
4
 
if system() == 'Linux':
5
 
    from ctypes import cdll
6
 
    cdll.LoadLibrary("libstdc++.so.6")
7
 
 
8
 
from avg import *
9
 
import anim
10
 
import draggable
11
 
import camcalibrator
12
 
import textarea
13
 
from grabbable import Grabbable
14
 
from AVGApp import AVGApp
15
 
from AVGAppStarter import AVGAppStarter
16
 
from AVGMTAppStarter import AVGMTAppStarter
17
 
import AVGAppUtil
18
 
import gameapp