]> git.ipfire.org Git - thirdparty/cups.git/blob - locale/Makefile
Load cups into easysw/current.
[thirdparty/cups.git] / locale / Makefile
1 #
2 # "$Id: Makefile 5224 2006-03-04 02:00:43Z mike $"
3 #
4 # Locale file makefile for the Common UNIX Printing System (CUPS).
5 #
6 # Copyright 1993-2006 by Easy Software Products.
7 #
8 # These coded instructions, statements, and computer programs are the
9 # property of Easy Software Products and are protected by Federal
10 # copyright law. Distribution and use rights are outlined in the file
11 # "LICENSE.txt" which should have been included with this file. If this
12 # file is missing or damaged please contact Easy Software Products
13 # at:
14 #
15 # Attn: CUPS Licensing Information
16 # Easy Software Products
17 # 44141 Airport View Drive, Suite 204
18 # Hollywood, Maryland 20636 USA
19 #
20 # Voice: (301) 373-9600
21 # EMail: cups-info@cups.org
22 # WWW: http://www.cups.org
23 #
24
25 include ../Makedefs
26
27 #
28 # Locales...
29 #
30
31 LANGUAGES = ja
32
33
34 #
35 # Make everything...
36 #
37
38 all: translate
39
40
41 #
42 # Clean all config and object files...
43 #
44
45 clean:
46 $(RM) translate translate.o
47
48
49 #
50 # Update dependencies...
51 #
52
53 depend:
54
55
56 #
57 # Install files...
58 #
59
60 install: all
61 $(INSTALL_DIR) -m 755 $(LOCALEDIR)
62 for loc in $(LANGUAGES) ; do \
63 $(INSTALL_DIR) -m 755 $(LOCALEDIR)/$$loc ; \
64 $(INSTALL_DATA) cups_$$loc.po $(LOCALEDIR)/$$loc/cups_$$loc.po ; \
65 done
66
67
68 #
69 # pot - Creates/updates the cups.pot template file, and merges changes
70 # into existing message catalogs.
71 #
72
73 pot:
74 echo Updating cups.pot...
75 cd ..; xgettext -o locale/cups.pot -j --keyword=_ --no-wrap \
76 --copyright-holder="Easy Software Products" \
77 --msgid-bugs-address="http://www.cups.org/str.php" \
78 */*.c
79 (cat cups.header; \
80 tail +6 cups.pot | sed -e '1,$$s/PACKAGE VERSION/CUPS 1.2/' \
81 -e '1,$$s/charset=CHARSET/charset=utf-8/'; \
82 cat cups.footer) > cups.pot.N
83 mv cups.pot.N cups.pot
84 for loc in $(LANGUAGES) ; do \
85 echo Merging changes into cups_$$loc.po... ; \
86 msgmerge -o cups_$$loc.po cups_$$loc.po cups.pot ; \
87 done
88
89
90 #
91 # translate - A simple utility which uses Google to translate the cups.pot
92 # file to one of several languages.
93 #
94 # translate outfile language
95 #
96
97 translate: translate.o ../cups/$(LIBCUPS)
98 echo Linking $<...
99 $(CC) $(LDFLAGS) -o translate translate.o $(LIBS)
100
101 translate.o: ../cups/http.h ../cups/i18n.h ../cups/language.h ../cups/string.h
102
103
104 #
105 # End of "$Id: Makefile 5224 2006-03-04 02:00:43Z mike $".
106 #