~ubuntu-branches/ubuntu/precise/xfonts-utils/precise

« back to all changes in this revision

Viewing changes to bdftopcf/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-18 17:10:27 UTC
  • mfrom: (1.1.1 upstream) (0.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20061218171027-ayzuv41s4ufth700
Tags: 1:1.0.1-1ubuntu1
* Merge from Debian unstable, remaining Ubuntu change:
  - debian/control: Replace/Conflict bdftopcf to smooth upgrades
    from 6.06 LTS.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
#  Copyright 2005  Red Hat, Inc.
 
3
 
4
#  Permission to use, copy, modify, distribute, and sell this software
 
5
#  and its documentation for any purpose is hereby granted without fee,
 
6
#  provided that the above copyright notice appear in all copies and that
 
7
#  both that copyright notice and this permission notice appear in
 
8
#  supporting documentation, and that the name of Red Hat not be used in
 
9
#  advertising or publicity pertaining to distribution of the software
 
10
#  without specific, written prior permission.  Red Hat makes no
 
11
#  representations about the suitability of this software for any
 
12
#  purpose.  It is provided "as is" without express or implied warranty.
 
13
 
14
#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 
15
#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
 
16
#  NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 
17
#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
 
18
#  USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
 
19
#  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 
20
#  PERFORMANCE OF THIS SOFTWARE.
 
21
 
 
22
bin_PROGRAMS = bdftopcf
 
23
 
 
24
bdftopcf_CFLAGS = @BDFTOPCF_CFLAGS@
 
25
bdftopcf_LDADD  = @BDFTOPCF_LIBS@
 
26
 
 
27
bdftopcf_SOURCES = bdftopcf.c
 
28
 
 
29
appman_PRE = bdftopcf.man
 
30
 
 
31
appmandir = $(APP_MAN_DIR)
 
32
 
 
33
appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
 
34
 
 
35
EXTRA_DIST = $(appman_PRE)
 
36
CLEANFILES = $(appman_DATA)
 
37
 
 
38
SED = sed
 
39
 
 
40
# Strings to replace in man pages
 
41
XORGRELSTRING = @PACKAGE_STRING@
 
42
  XORGMANNAME = X Version 11
 
43
 
 
44
MAN_SUBSTS = \
 
45
        -e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
 
46
        -e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
 
47
        -e 's|__xservername__|Xorg|g' \
 
48
        -e 's|__xconfigfile__|xorg.conf|g' \
 
49
        -e 's|__projectroot__|$(prefix)|g' \
 
50
        -e 's|__apploaddir__|$(appdefaultdir)|' \
 
51
        -e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
 
52
        -e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \
 
53
        -e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
 
54
        -e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
 
55
        -e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
 
56
 
 
57
SUFFIXES = .$(APP_MAN_SUFFIX) .man
 
58
 
 
59
.man.$(APP_MAN_SUFFIX):
 
60
        sed $(MAN_SUBSTS) < $< > $@