~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to backend/ps/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette, Josselin Mouette, Marc 'HE' Brockschmidt
  • Date: 2008-12-31 16:41:58 UTC
  • mfrom: (1.1.36 upstream)
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 109.
  • Revision ID: james.westby@ubuntu.com-20081231164158-xnobl1sokvvc6ho8
Tags: 2.24.2-1
[ Josselin Mouette ]
* README.Debian: document that you need to install poppler-data.
  Closes: #506836.

[ Marc 'HE' Brockschmidt ]
* debian/control: Make the Gnome team maintainer. I'm not doing the job
   anyway.

[ Josselin Mouette ]
* New upstream release.
* Require nautilus 2.22 to build the extension for the correct 
  version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
        -I$(top_srcdir)/libdocument             \
6
6
        -DGNOMELOCALEDIR=\"$(datadir)/locale\"  \
7
7
        $(BACKEND_CFLAGS)                       \
 
8
        $(SPECTRE_CFLAGS)                       \
8
9
        $(WARN_CFLAGS)                          \
9
10
        $(DISABLE_DEPRECATED)
10
11
 
11
 
if HAVE_SPECTRE
12
 
INCLUDES += $(SPECTRE_CFLAGS)
13
 
endif
14
 
 
15
12
backend_LTLIBRARIES = libpsdocument.la
16
13
 
17
 
if HAVE_SPECTRE
18
14
libpsdocument_la_SOURCES =      \
19
15
        ev-spectre.c            \
20
16
        ev-spectre.h
21
 
else
22
 
libpsdocument_la_SOURCES =      \
23
 
        gsio.c                  \
24
 
        gsio.h                  \
25
 
        gstypes.h               \
26
 
        ps.c                    \
27
 
        ps.h                    \
28
 
        ps-document.c           \
29
 
        ps-document.h           \
30
 
        ps-interpreter.c        \
31
 
        ps-interpreter.h        \
32
 
        gsdefaults.c            \
33
 
        gsdefaults.h
34
 
endif
35
17
 
36
18
libpsdocument_la_LDFLAGS = $(BACKEND_LIBTOOL_FLAGS)
37
19
libpsdocument_la_LIBADD =                               \
38
20
        $(top_builddir)/libdocument/libevbackend.la     \
39
 
        $(BACKEND_LIBS)
40
 
 
41
 
if HAVE_SPECTRE
42
 
libpsdocument_la_LIBADD += $(SPECTRE_LIBS)
43
 
endif
 
21
        $(BACKEND_LIBS)                                 \
 
22
        $(SPECTRE_LIBS)
44
23
 
45
24
backend_in_files = psdocument.evince-backend.in
46
25