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

« back to all changes in this revision

Viewing changes to .pc/97_automake_cleanup.diff/kcmshell/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
#
 
2
#  Copyright (c) 1999 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
 
3
#  Copyright (c) 2000 Matthias Elter <elter@kde.org>
 
4
#  Copyright (c) 2004 Frans Englich <frans.englich@telia.com>
 
5
 
6
#  This program is free software; you can redistribute it and/or modify
 
7
#  it under the terms of the GNU General Public License as published by
 
8
#  the Free Software Foundation; either version 2 of the License, or
 
9
#  (at your option) any later version.
 
10
 
11
#  This program is distributed in the hope that it will be useful,
 
12
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#  GNU General Public License for more details.
 
15
 
16
#  You should have received a copy of the GNU General Public License
 
17
#  along with this program; if not, write to the Free Software
 
18
#  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
19
 
20
 
 
21
AM_CPPFLAGS = -I$(top_srcdir)/kutils $(all_includes)
 
22
METASOURCES = AUTO
 
23
 
 
24
lib_LTLIBRARIES = 
 
25
bin_PROGRAMS = 
 
26
kdeinit_LTLIBRARIES = kcmshell.la
 
27
 
 
28
kcmshell_la_SOURCES = main.cpp main.skel
 
29
kcmshell_la_LIBADD = ../kutils/libkutils.la
 
30
kcmshell_la_LDFLAGS = $(all_libraries) -module -avoid-version
 
31
 
 
32
noinst_HEADERS = main.h
 
33
 
 
34
messages: rc.cpp
 
35
        $(XGETTEXT) *.cpp -o $(podir)/kcmshell.pot
 
36
 
 
37
 
 
38
include $(top_srcdir)/admin/Doxyfile.am
 
39