~ubuntu-branches/ubuntu/saucy/openvpn/saucy-proposed

« back to all changes in this revision

Viewing changes to doc/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Stéphane Graber
  • Date: 2013-05-24 17:42:45 UTC
  • mfrom: (1.1.19) (10.2.22 sid)
  • Revision ID: package-import@ubuntu.com-20130524174245-g9y6wlforycufqy5
Tags: 2.3.1-2ubuntu1
* Merge from Debian unstable. Remaining changes:
  - debian/openvpn.init.d:
    + Do not use start-stop-daemon and </dev/null to avoid blocking boot.
    + Show per-VPN result messages.
    + Add "--script-security 2" by default for backwards compatabliity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  OpenVPN -- An application to securely tunnel IP networks
 
3
#             over a single UDP port, with support for SSL/TLS-based
 
4
#             session authentication and key exchange,
 
5
#             packet encryption, packet authentication, and
 
6
#             packet compression.
 
7
#
 
8
#  Copyright (C) 2002-2010 OpenVPN Technologies, Inc. <sales@openvpn.net>
 
9
#  Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
 
10
#
 
11
 
 
12
MAINTAINERCLEANFILES = \
 
13
        $(srcdir)/Makefile.in
 
14
 
 
15
CLEANFILES = openvpn.8.html
 
16
 
 
17
dist_doc_DATA = \
 
18
        management-notes.txt
 
19
 
 
20
dist_noinst_DATA = \
 
21
        README.plugins
 
22
 
 
23
if WIN32
 
24
dist_noinst_DATA += openvpn.8
 
25
nodist_html_DATA = openvpn.8.html
 
26
openvpn.8.html: $(srcdir)/openvpn.8
 
27
        $(MAN2HTML) < $(srcdir)/openvpn.8 > openvpn.8.html
 
28
else
 
29
dist_man_MANS = openvpn.8
 
30
endif
 
31