~ubuntu-branches/ubuntu/natty/gnome-mplayer/natty

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Cesare Tirabassi
  • Date: 2009-06-06 19:49:50 UTC
  • mfrom: (1.1.16 upstream) (0.1.8 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090606194950-r2k3q5heupe2ewq4
Tags: 0.9.6-1
* New upstream release:
  - new media tracker and audio meter
  - new key "use_pulse_flat_volume" to be set if you are using
    Pulse Audio 0.9.15 (see /usr/share/doc/gnome-mplayer/NEWS.Debian.gz
    and /usr/share/doc/gnome-mplayer/changelog.gz for additional info)
  - workaround for opening files on smb shares (LP: #369426)
  - prevent adding an "empty" filename to the playlist (LP: #348864)
  - add new --large_buttons and --always_hide_after_timeout command
    line options to man page
  - update debian/copyright with the newly added upstream source files
  - upstream is now widely using libtool, which is causing rpath and
    dependancies issues. libtool is really not needed for such a simple
    case so it has been patched out in favour of static linking:
    + updated debian/patches/avoid_libtool.patch to patch configure.in
      and Makefile.am instead of directly Makefile.in
    + debian/rules:
      - patch is now applied in the configure target
      - add aclocal/autoconf/automake calls in the configure target
    + debian/control:
      add autoconf and automake as Build-Depends
  - add debian/NEWS
* Update debian/copyright in line with updated proposal specification
* Add patch description to avoid_libtool.patch (thanks lintian)
* Remove deprecated dh_desktop call
* Use new dh_quilt_patch and dh_quilt_unpatch commands
* No change bump of Standards-Version to 3.8.1
* Changed Section to video (and debug for the dbg binary), in line
  with the new sections recently added to the Debian archive
* Use LDFLAGS=-Wl,--as-needed instead of specifying manually all libraries

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
## Process this file with automake to produce Makefile.in
2
2
 
3
3
## Created by Anjuta
 
4
SUBDIRS = libgmtk libgmlib
4
5
 
5
6
INCLUDES = \
6
7
        -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \
55
56
        ../pixmaps/media-skip-backward.xpm \
56
57
        ../pixmaps/media-skip-forward.xpm \
57
58
        ../pixmaps/view-fullscreen.xpm \
58
 
        langlist.h 
 
59
        langlist.h
 
60
 
59
61
 
60
62
gnome_mplayer_LDFLAGS = 
61
63
 
62
 
gnome_mplayer_LDADD = $(GTK_LIBS) $(GIO_LIBS) $(DBUS_LIBS) $(GCONF_LIBS) $(ALSA_LIBS) $(NOTIFY_LIBS) $(GPOD_LIBS) $(MUSICBRAINZ_LIBS)
 
64
gnome_mplayer_LDADD = $(GTK_LIBS) $(GIO_LIBS) $(DBUS_LIBS) $(GCONF_LIBS) $(ALSA_LIBS) $(NOTIFY_LIBS) $(GPOD_LIBS) $(MUSICBRAINZ_LIBS) \
 
65
    libgmtk/libgmtk.la \
 
66
    libgmlib/libgmlib.la
63
67
 
64
68
if HAVE_NAUTILUS
65
69