~ubuntu-branches/ubuntu/warty/koffice/warty

« back to all changes in this revision

Viewing changes to filters/karbon/png/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Ben Burton
  • Date: 2004-05-09 11:33:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040509113300-vfrdadqsvjfuhn3b
Tags: 1:1.3.1-1
* New upstream bugfix release.
* Built against newer imagemagick (closes: #246623).
* Made koffice-libs/kformula recommend/depend on latex-xft-fonts, which
  provides mathematical fonts that the formula editor can use.  Also
  patched the kformula part to make these fonts the default.
* Changed kword menu hint from "WordProcessors" to "Word processors"
  (closes: #246209).
* Spellchecker configuration is now fixed (closes: #221256, #227568).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
kde_module_LTLIBRARIES = libkarbonpngexport.la
 
2
 
 
3
libkarbonpngexport_la_LDFLAGS = $(KDE_PLUGIN)
 
4
libkarbonpngexport_la_LIBADD = \
 
5
        $(LIB_KOFFICEUI) \
 
6
        ../../../karbon/libkarbonpart.la
 
7
 
 
8
INCLUDES = \
 
9
        $(KOFFICE_INCLUDES) $(KOPAINTER_INCLUDES) \
 
10
        -I$(top_srcdir)/karbon \
 
11
        -I$(top_srcdir)/karbon/core \
 
12
        -I$(top_srcdir)/karbon/render \
 
13
        -I$(top_srcdir)/karbon/visitors \
 
14
        $(all_includes)
 
15
 
 
16
service_DATA = karbon_png_export.desktop
 
17
servicedir = $(kde_servicesdir)
 
18
 
 
19
noinst_HEADERS = \
 
20
        pngexport.h
 
21
 
 
22
libkarbonpngexport_la_SOURCES = \
 
23
        pngexport.cc
 
24
 
 
25
libkarbonpngexport_la_METASOURCES = \
 
26
        AUTO
 
27