~ubuntu-branches/debian/squeeze/pyrenamer/squeeze

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Adolfo González Blázquez
  • Date: 2008-09-17 14:22:21 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917142221-pa4xq3sowwkv0moo
Tags: 0.6.0-1
* New upstream release:
  - Fix crash when a id3 tag is not available or wrong, returning an
    empty filename (LP: #235161)
  - Fix crash while processing some bad exif tags, catching possible
    exceptions (LP: #261832)
  - Fix crash while starting, fixing src/treefilebrowser.py (LP: #237482)
* debian/control:
  - Build-Depends-Indep: removed 'python-eyed3'
  - Depends: changed 'python-eyed3' to 'python-hachoir-metadata|python-eyed3'
  - Bump up Standards-Version to 3.8.0
  - Descrition: changed 'Mass' to 'mass'
* debian/copyright: updated copyright year
* debian/watch: updated
* debian/pyrenamer.xpm: new icon file

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
GMOFILES = @GMOFILES@
86
86
GMSGFMT = @GMSGFMT@
87
87
GREP = @GREP@
88
 
HAVE_EYED3 = @HAVE_EYED3@
89
88
INSTALL = @INSTALL@
90
89
INSTALL_DATA = @INSTALL_DATA@
91
90
INSTALL_PROGRAM = @INSTALL_PROGRAM@
203
202
bin_SCRIPTS = pyrenamer
204
203
pyrenamerdir = $(pythondir)/pyrenamer
205
204
pyrenamer_PYTHON = \
206
 
        __init__.py                             \
207
 
        pyrenamer.py                    \
208
 
        pyrenamerfilefuncs.py   \
209
 
        tooltips.py                             \
210
 
        treefilebrowser.py              \
211
 
        TreeViewTooltips.py             \
 
205
        __init__.py                                     \
 
206
        pyrenamer.py                            \
 
207
        pyrenamer_filefuncs.py          \
 
208
        pyrenamer_menu_cb.py            \
 
209
        pyrenamer_metadata.py           \
 
210
        pyrenamer_pattern_editor.py     \
 
211
        pyrenamer_prefs.py                      \
 
212
        pyrenamer_tooltips.py           \
 
213
        pyrenamer_undo.py                       \
 
214
        treefilebrowser.py                      \
 
215
        TreeViewTooltips.py                     \
212
216
        EXIF.py
213
217
 
214
218
nodist_pyrenamer_PYTHON = \
481
485
                -e s!\@PKGDATADIR\@!$(pkgdatadir)! \
482
486
                -e s!\@PACKAGE\@!$(PACKAGE_NAME)! \
483
487
                -e s!\@VERSION\@!$(PACKAGE_VERSION)! \
484
 
                -e s!\@HAVE_EYED3\@!$(HAVE_EYED3)! \
485
488
                < $< \
486
489
                > $@
487
490
# Tell versions [3.59,3.63) of GNU make to not export all variables.