~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/manpages/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## -*- mode: make; tab-width: 4 -*-
 
2
## $Id: Makefile.am 15100 2008-04-26 13:35:41Z fthomas $
 
3
 
 
4
include $(top_srcdir)/Makefile.incl
 
5
 
 
6
if ENABLE_CLIENT
 
7
  CLIENT_MANS = boinc.1 boinccmd.1
 
8
endif
 
9
 
 
10
if BUILD_CLIENTGUI
 
11
  CLIENTGUI_MANS = boincmgr.1
 
12
endif
 
13
 
 
14
if ENABLE_SERVER
 
15
  SERVER_MANS = 
 
16
endif
 
17
 
 
18
man_MANS = $(CLIENT_MANS) $(CLIENTGUI_MANS) $(SERVER_MANS)
 
19
 
 
20
%.1: %.xml
 
21
        $(DOCBOOK2X_MAN) $<
 
22
 
 
23
all-local: $(man_MANS)
 
24
 
 
25
CLEANFILES = $(man_MANS)