~ubuntu-branches/ubuntu/trusty/sound-juicer/trusty

« back to all changes in this revision

Viewing changes to libjuicer/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-12-15 13:16:02 UTC
  • mfrom: (1.1.35 upstream) (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20081215131602-0bezbep7s4w4zy0s
Tags: 2.25.1-0ubuntu1
* Sync on Debian
* debian/control.in:
  - Build-depends on libcdio-dev and liblaunchpad-integration-dev
* debian/patches/01_lpi.patch,
  debian/patches/02_autoconf.patch:
  - lpi changes and configure update
* New upstream version (LP: #308165)
  - Chain the metadata lookups (Bastien Nocera)
  - Finish the libmusicbrainz3 metadata fetcher (BN)
  - Add a GVFS metadata fetcher as fallback (BN)
  - Make libcdio option, as it breaks the GPL+Exception license (BN)
  - Export ASIN, Discogs, Wikipedia in the internal metadata (BN)
  - Lots of other cleanups to the metadata code (BN)
  - Remove copy of the id3mux plugin, assume it exists now (BN)
  - Remove Encoding field from desktop file (Pacho Ramos)
  - Add Audio to desktop categories (Patryk Zawadzki)
  - Correctly parse CDDA URLs (Matthew Martin)
  - Don't free the option context
* debian/control.in:
  - Change build-dep on libmusicbrainz3-dev
  - Also build-dep on libneon26-gnutls-dev and libdiscid0-dev for lmb3
* debian/watch:
  - Update for 2.25.x releases

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
        sj-metadata.c \
13
13
        sj-metadata-musicbrainz.h \
14
14
        sj-metadata-musicbrainz.c \
 
15
        sj-metadata-gvfs.h \
 
16
        sj-metadata-gvfs.c \
 
17
        sj-metadata-getter.c \
 
18
        sj-metadata-getter.h \
15
19
        sj-util.h sj-util.c
16
20
 
17
21
libjuicer_la_CPPFLAGS = \
21
25
libjuicer_la_CFLAGS = \
22
26
        $(WARN_CFLAGS)  \
23
27
        $(MUSICBRAINZ_CFLAGS) \
 
28
        $(MUSICBRAINZ3_CFLAGS) \
24
29
        $(GSTREAMER_CFLAGS) \
25
30
        $(MEDIA_PROFILES_CFLAGS) \
26
31
        $(BURN_CFLAGS) \
27
32
        $(UI_CFLAGS) \
 
33
        $(CDIO_CFLAGS) \
28
34
        $(AM_CFLAGS)
29
35
 
30
36
libjuicer_la_LIBADD = \
31
37
        $(MUSICBRAINZ_LIBS) \
 
38
        $(MUSICBRAINZ3_LIBS) \
32
39
        $(MEDIA_PROFILES_LIBS) \
33
40
        $(GSTREAMER_LIBS) \
34
41
        $(BURN_LIBS) \
35
 
        $(UI_LIBS)
 
42
        $(UI_LIBS) \
 
43
        $(CDIO_LIBS)
36
44
 
37
45
libjuicer_la_LDFLAGS = \
38
46
        -export-dynamic \
39
47
        $(AM_LDFLAGS)
40
48
 
41
 
if HAVE_CDIO
 
49
if HAVE_MUSICBRAINZ3
 
50
libjuicer_la_SOURCES += \
 
51
        sj-metadata-musicbrainz3.h \
 
52
        sj-metadata-musicbrainz3.c
 
53
endif
 
54
 
 
55
if HAVE_LIBCDIO
42
56
libjuicer_la_SOURCES += \
43
57
        sj-metadata-cdtext.h \
44
58
        sj-metadata-cdtext.c
45
 
 
46
 
libjuicer_la_CFLAGS += \
47
 
        $(CDIO_CFLAGS)
48
 
 
49
 
libjuicer_la_LDFLAGS += \
50
 
        $(CDIO_LIBS)
51
59
endif
52
60
 
53
61
#