~ubuntu-branches/debian/squeeze/kdelibs/squeeze

« back to all changes in this revision

Viewing changes to .pc/97_automake_cleanup.diff/interfaces/ktexteditor/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Modestas Vainius
  • Date: 2010-08-07 23:20:21 UTC
  • Revision ID: james.westby@ubuntu.com-20100807232021-owvkgp5wpc076s33
Tags: 4:3.5.10.dfsg.1-5
* Change by email address to @debian.org.
* Drop common HTML docs from kdelibs-data package. Instead suggest
  kdelibs5-data which ships them (Closes: #591609). What's more, whoever
  wants to view docs, will have to install khelpcenter4 which pulls in
  kdelibs5-data anyway.
* Switch to dpkg-source format 3.0 (quilt):
  - drop simple-patchsys.mk from debian/rules;
  - add debian/patches/series file.
* Fix corruption of zip files caused by wrong encoding of umlauts in kzip
  (patch 67_kio_zip_file_encoding.diff). (Closes: #563942) Thanks to Bjoern
  Ricks for the patch.
* Support opening of KDE 4 khelpcenter in Help -> Handbook. (Closes: #525621)
  Thanks to Ben Burton for the patch.
* Do not recurse into .pc subdirectory with doxygen 
  (patch debian/patches/02_exclude_pc_from_dox.diff).
* Urgency=medium due to multiple RC bug fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
INCLUDES = -I$(top_srcdir)/kio -I$(top_srcdir) -I$(top_srcdir)/interfaces -I$(top_builddir)/interfaces  -I$(top_srcdir)/kabc -I$(top_builddir)/kabc $(all_includes)
 
2
 
 
3
lib_LTLIBRARIES = libktexteditor.la
 
4
 
 
5
libktexteditor_la_SOURCES = ktexteditor.cpp \
 
6
    editinterface.cpp clipboardinterface.cpp  selectioninterface.cpp searchinterface.cpp \
 
7
    codecompletioninterface.cpp wordwrapinterface.cpp blockselectioninterface.cpp \
 
8
    configinterface.cpp cursorinterface.cpp  dynwordwrapinterface.cpp \
 
9
    printinterface.cpp highlightinginterface.cpp markinterface.cpp \
 
10
    popupmenuinterface.cpp undointerface.cpp viewcursorinterface.cpp \
 
11
    editdcopinterface.cpp editdcopinterface.skel clipboarddcopinterface.cpp \
 
12
    clipboarddcopinterface.skel selectiondcopinterface.cpp selectiondcopinterface.skel  \
 
13
    searchdcopinterface.cpp searchdcopinterface.skel markinterfaceextension.cpp \
 
14
    configinterfaceextension.cpp encodinginterface.cpp sessionconfiginterface.cpp \
 
15
    viewstatusmsginterface.cpp editorchooser_ui.ui editorchooser.cpp \
 
16
    blockselectiondcopinterface.cpp documentinfo.cpp documentdcopinfo.cpp\
 
17
    blockselectiondcopinterface.skel documentdcopinfo.skel encodingdcopinterface.cpp \
 
18
    encodingdcopinterface.skel printdcopinterface.cpp printdcopinterface.skel \
 
19
    undodcopinterface.cpp undodcopinterface.skel viewcursordcopinterface.cpp \
 
20
    viewcursordcopinterface.skel viewstatusmsgdcopinterface.cpp \
 
21
    viewstatusmsgdcopinterface.skel selectioninterfaceext.cpp selectionextdcopinterface.skel \
 
22
    texthintinterface.cpp editinterfaceext.cpp variableinterface.cpp templateinterface.cpp
 
23
 
 
24
 
 
25
libktexteditor_la_LDFLAGS = $(all_libraries) $(KDE_RPATH)
 
26
libktexteditor_la_LIBADD = $(LIB_KPARTS) $(top_builddir)/dcop/libDCOP.la $(top_builddir)/kabc/libkabc.la
 
27
 
 
28
ktexteditorinclude_HEADERS = document.h view.h editor.h plugin.h editinterface.h undointerface.h \
 
29
                             selectioninterface.h cursorinterface.h \
 
30
                             clipboardinterface.h popupmenuinterface.h \
 
31
                             viewcursorinterface.h searchinterface.h highlightinginterface.h \
 
32
                             blockselectioninterface.h codecompletioninterface.h \
 
33
                             configinterface.h markinterface.h printinterface.h wordwrapinterface.h \
 
34
                             dynwordwrapinterface.h markinterfaceextension.h configinterfaceextension.h \
 
35
                             encodinginterface.h viewstatusmsginterface.h  sessionconfiginterface.h editorchooser.h \
 
36
                             documentinfo.h selectioninterfaceext.h selectionextdcopinterface.h texthintinterface.h \
 
37
                             editinterfaceext.h variableinterface.h templateinterface.h
 
38
 
 
39
ktexteditorincludedir = $(includedir)/ktexteditor
 
40
 
 
41
METASOURCES = AUTO
 
42
 
 
43
servicetypedir = $(kde_servicetypesdir)
 
44
servicetype_DATA = ktexteditor.desktop ktexteditoreditor.desktop ktexteditorplugin.desktop
 
45
 
 
46
kcm_ktexteditor_DATA = kcm_ktexteditor.desktop
 
47
kcm_ktexteditordir = $(kde_datadir)/kcm_componentchooser
 
48
 
 
49
templateinterface.lo: $(top_builddir)/kabc/addressee.h
 
50
 
 
51
include ../../admin/Doxyfile.am
 
52