~ubuntu-branches/ubuntu/karmic/x11-xserver-utils/karmic

« back to all changes in this revision

Viewing changes to xvidtune/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Brice Goglin, Julien Cristau, Brice Goglin
  • Date: 2007-08-17 09:58:34 UTC
  • Revision ID: james.westby@ubuntu.com-20070817095834-ywge2nyzj1s3rqnd
Tags: 7.3+1
[ Julien Cristau ]
* iceauth 1.0.2.
  + removes blank line in the manpage (closes: #25285).
* xmodmap 1.0.3.
  + manpage updated to state that -pm is the default (closes: #236198)
* xgamma 1.0.2.
  + the manpage now explains how to print the gamma value more clearly
    (closes: #296021).
* xsetroot 1.0.2.
* xrdb 1.0.4.
  + fixes manpage typo (closes: #276286).
* Add upstream URL to debian/copyright, and update it from xgamma's COPYING
  file.

[ Brice Goglin ]
* Add menu entries for xrefresh and xvidtune.
* sessreg 1.0.3.
* xset 1.0.3.
* Add myself to Uploaders, and remove Branden with his permission.

Show diffs side-by-side

added added

removed removed

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