Git commit 77348820ba4ab0791304dcd6b15e827e7a6a78f8 by Montel Laurent. Committed on 24/04/2013 at 07:24. Pushed by mlaurent into branch 'master'.
make optional headerthemeeditor M +2 -2 CMakeLists.txt A +4 -0 doc/archivemailagent/CMakeLists.txt A +116 -0 doc/archivemailagent/index.docbook http://commits.kde.org/kdepim/77348820ba4ab0791304dcd6b15e827e7a6a78f8 diff --git a/CMakeLists.txt b/CMakeLists.txt index 83ab374..de3e1dd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,7 +113,7 @@ endif() find_package(KDE4 4.10 REQUIRED) include(KDE4Defaults) -find_package(KdepimLibs 4.10.65) +find_package(KdepimLibs 4.10.66) set_package_properties(KdepimLibs PROPERTIES DESCRIPTION "The KDEPIM libraries" URL "http://www.kde.org" TYPE REQUIRED) ############### Load the CTest options ############### @@ -299,7 +299,7 @@ else() add_subdirectory(mailcommon) # TODO: does this make sense?!? add_subdirectory(mailfilteragent) macro_optional_add_subdirectory(kmail) - add_subdirectory(headerthemeeditor) + macro_optional_add_subdirectory(headerthemeeditor) if(KDEPIM_BUILD_MOBILE) add_subdirectory(mobile) diff --git a/doc/archivemailagent/CMakeLists.txt b/doc/archivemailagent/CMakeLists.txt new file mode 100644 index 0000000..0df9c9a --- /dev/null +++ b/doc/archivemailagent/CMakeLists.txt @@ -0,0 +1,4 @@ +########### install files ############### +# +# +kde4_create_handbook(index.docbook INSTALL_DESTINATION ${HTML_INSTALL_DIR}/en) diff --git a/doc/archivemailagent/index.docbook b/doc/archivemailagent/index.docbook new file mode 100644 index 0000000..9a1b94f --- /dev/null +++ b/doc/archivemailagent/index.docbook @@ -0,0 +1,116 @@ +<?xml version="1.0" ?> +<!DOCTYPE book PUBLIC "-//KDE//DTD DocBook XML V4.2-Based Variant V1.1//EN" +"dtd/kdex.dtd" [ + <!-- Define an entity for your application if it is not part of KDE + CVS --> + <!ENTITY kapplication "<application>archivemailagent</application>"> + <!ENTITY kappname "&kapplication;"> + <!ENTITY package "kdepim"> + <!ENTITY % addindex "IGNORE"> + <!ENTITY % English "INCLUDE"> +]> + +<book id="archivemailagent" lang="&language;"> + +<bookinfo id="archivemailagentinfo"> + +<title>The &kapplication; Handbook</title> + +<authorgroup> +<author> +<personname> +<firstname>Laurent</firstname> +<surname>Montel</surname> +</personname> +<email>montel at kde.org</email> +</author> +<!-- TRANS:ROLES_OF_TRANSLATORS --> +</authorgroup> + +<copyright> +<year>2013</year> +<holder>Laurent Montel</holder> +</copyright> + +<legalnotice>&FDLNotice;</legalnotice> + +<date>2013-04-23</date> +<releaseinfo>1.0</releaseinfo> + +<abstract> +<para> +&kapplication; is a akonadi agent which allow to archive mails automaticaly. +</para> +</abstract> + +<keywordset> +<keyword>KDE</keyword> +<keyword>KMail</keyword> +<keyword>Archive</keyword> +</keywordset> + +</bookinfo> +<chapter id="introduction"> +<title>Introduction</title> + +<para>&kapplication; allows to archive automaticaly mails.</para> +</chapter> + +<chapter id="using-kapp"> +<title>Using &kapplication;</title> +<para>using</para> + +</chapter> + +<chapter id="credits"> + +<title>Credits and License</title> + +<para>&kapplication;</para> +<para> +Program copyright 2013 Laurent Montel montel at kde.org +</para> +<para> +Documentation Copyright © 2013 Laurent Montel montel at kde.org +</para> + +<!-- TRANS:CREDIT_FOR_TRANSLATORS --> + +&underFDL; <!-- FDL: do not remove --> +&underGPL; <!-- GPL License --> +</chapter> + +<appendix id="installation"> +<title>Installation</title> + +<sect1 id="getting-blogilo"> +<title>How to obtain &kapplication;</title> + +&install.intro.documentation; + +</sect1> + +<sect1 id="compilation"> +<title>Compilation and Installation</title> + +&install.compile.documentation; + +</sect1> + +</appendix> + +&documentation.index; +</book> + +<!-- +Local Variables: +mode: xml +sgml-minimize-attributes:nil +sgml-general-insert-case:lower +sgml-indent-step:0 +sgml-indent-data:nil +End: + +vim:tabstop=2:shiftwidth=2:expandtab +kate: space-indent on; indent-width 2; tab-width 2; indent-mode none; +-->
