~ricotz/ubuntu/natty/gnupg/natty

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Rico Tzschichholz
  • Author(s): Rico Tzschichholz
  • Date: 2011-02-17 18:12:28 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: ricotz@t-online.de-20110217181228-cwp850svo20lnz48
* Resynchronise with Debian.  Remaining changes:
  - Disable mlock() test since it fails with ulimit 0 (on buildds).
  - Set gpg (or gpg2) and gpgsm to use a passphrase agent by default.
  - Fix udeb build failure on powerpc, building with -O2 instead of -Os.
  - Only suggest gnupg-curl and libldap; recommendations are pulled into
    minimal, and we don't need the keyserver utilities in a minimal Ubuntu
    system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# along with this program; if not, see <http://www.gnu.org/licenses/>.
17
17
## Process this file with automake to create Makefile.in
18
18
 
19
 
EXTRA_DIST = DETAILS faq.raw FAQ faq.html \
 
19
EXTRA_DIST = DETAILS FAQ \
20
20
             HACKING OpenPGP README.W32 samplekeys.asc gnupg.7 \
21
21
             TRANSLATE gpg.ru.sgml gpg.ru.1 highlights-1.4.txt \
22
22
             gpg.texi gpgv.texi specify-user-id.texi see-also-note.texi \
39
39
# Need this to avoid building of dvis with automake 1.4
40
40
DVIS =
41
41
 
42
 
pkgdata_DATA = FAQ faq.html
 
42
pkgdata_DATA = FAQ
43
43
 
44
 
BUILT_SOURCES = FAQ faq.html 
45
44
# we can't add gpg.texi gpgv.texi here because automake does not like them to
46
45
# be built files. 
47
46
 
48
 
CLEANFILES = faq.raw.xref gpg.xml gpgv.xml gpg.ru.xml 
 
47
CLEANFILES = gpg.xml gpgv.xml gpg.ru.xml 
49
48
DISTCLEANFILES = yat2m yat2m-stamp.tmp yat2m-stamp $(myman_pages)
50
49
 
51
50
AM_MAKEINFOFLAGS = -I $(srcdir) --css-include=$(srcdir)/texi.css -D gpgone
89
88
        echo "No man page due to missing docbook-to-man" >>$@
90
89
endif
91
90
 
92
 
FAQ : faq.raw
93
 
if WORKING_FAQPROG
94
 
        $(FAQPROG) -f $<  $@ || $(FAQPROG) -f $< $@
95
 
else
96
 
        : Warning: missing faqprog.pl, cannot make $@
97
 
        echo "No $@ due to missing faqprog.pl" > $@
98
 
        echo "See ftp://ftp.gnupg.org/gcrypt/contrib/faqprog.pl" >> $@
99
 
endif
100
 
 
101
 
faq.html : faq.raw
102
 
if WORKING_FAQPROG
103
 
        $(FAQPROG) -h -f $< $@ 2>&1 || $(FAQPROG) -h -f $< $@
104
 
else
105
 
        : Warning: missing faqprog.pl, cannot make $@
106
 
        echo "No $@ due to missing faqprog.pl" > $@
107
 
        echo "See ftp://ftp.gnupg.org/gcrypt/contrib/faqprog.pl" >> $@
108
 
endif
109
 
 
110
91
dist-hook:
111
92
        @if test "`wc -c < gpg.1`" -lt 200; then \
112
93
            echo 'ERROR: dummy man page'; false; fi