File: Makefile.am

package info (click to toggle)
amanda 1%3A3.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 30,596 kB
  • sloc: ansic: 265,630; perl: 114,246; xml: 16,058; sh: 8,667; makefile: 2,794; awk: 502; lex: 407; yacc: 347; tcl: 118; sql: 19; sed: 16; php: 2
file content (152 lines) | stat: -rwxr-xr-x 5,860 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# Makefile for PO directory in any package using GNU gettext.

# Usually the message domain is the same as the package name.
PACKAGE = amanda
MAINTAINER_EMAIL = support@zmanda.com

POFILES = $(wildcard *.po)
#MOFILES = $(patsubst %.po,%.mo,$(POFILES)) 
MOFILES = 

CFILES = $(wildcard $(top_srcdir)/*/*.[ch])
PLFILES = $(wildcard $(top_srcdir)/*/*.pl.in)
SHFILES = $(wildcard $(top_srcdir)/*/*.sh.in)
ALLFILES = $(CFILES) $(PLFILES) $(SHFILES)

# This variable depends on the location of this directory.
top_builddir = ..
localedir=$(datadir)/locale

# These options get passed to xgettext.
XGETTEXT_OPTIONS = --keyword=_ --keyword=_T

# This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used.  It is usually empty.
EXTRA_LOCALE_CATEGORIES =


GMSGFMT = gmsgfmt
MSGFMT = msgfmt
MSGINIT = msginit
MSGMERGE = msgmerge
MSGMERGE_UPDATE = msgmerge --update
XGETTEXT = xgettext

DISTFILES =			\
	${POFILES}		\
	${MOFILES}		\
	boldquot.sed		\
	en@boldquot.header	\
	en@quot.header		\
	insert-header.sin	\
	Makefile.am		\
	Makefile.in		\
	Makevars		\
	quot.sed		\
	remove-potcdate.sin	\
	Rules-quot		\
	stamp-po

SUFFIXES = .po .mo .sed .sin

.sin.sed:
	sed -e '/^#/d' $< > t-$@
	mv t-$@ $@

all: $(MOFILES)

# This target rebuilds amanda.pot; it is an expensive operation.
# Note that amanda.pot is not touched if it doesn't need to be changed.
amanda.pot: $(ALLFILES)
	@echo $(XGETTEXT) --language=C --output=amanda.pot ... 
	@$(XGETTEXT) --output=amanda.pot --default-domain=amanda           \
	  --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) --language=C	   \
	  $(CFILES)
	@echo $(XGETTEXT) --language=Perl --join-existing --output=amanda.pot ... 
	@$(XGETTEXT) --output=amanda.pot --default-domain=amanda           \
	  --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) --language=Perl  \
	  --join-existing $(PLFILES)
	@echo $(XGETTEXT) --language=Shell --join-existing --output=amanda.pot ... 
	@$(XGETTEXT) --output=amanda.pot --default-domain=amanda           \
	  --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) --language=Shell \
	  --join-existing $(SHFILES)
	@test ! -f amanda.po || {                                          \
	  if test -f $(srcdir)/amanda.pot; then                            \
	    sed -f remove-potcdate.sed < $(srcdir)/amanda.pot > amanda.1po && \
	    sed -f remove-potcdate.sed < amanda.po > amanda.2po &&         \
	    if cmp amanda.1po amanda.2po >/dev/null 2>&1; then             \
	      rm -f amanda.1po amanda.2po amanda.po;                       \
	    else                                                           \
	      rm -f amanda.1po amanda.2po $(srcdir)/amanda.pot &&          \
	      mv amanda.po $(srcdir)/amanda.pot;                           \
	    fi;                                                            \
	  else                                                             \
	    mv amanda.po $(srcdir)/amanda.pot;                             \
	  fi;                                                              \
	}


# This target rebuilds a PO file if amanda.pot has changed.
# Note that a PO file is not touched if it doesn't need to be changed.
%.po: amanda.pot
	@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
	if test "$$lang" = "en_ZM"; then  \
	  echo msgen -o en.po amanda.pot; \
	  msgen -o en.po amanda.pot; \
	elif test -f "$(srcdir)/$${lang}.po"; then \
	  echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po amanda.pot"; \
	  cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po amanda.pot; \
	else \
	  echo $(MSGINIT) --locale=$${lang} --input=amanda.pot --output-file=$${lang}.po; \
	  $(MSGINIT) --no-translator --locale=$${lang} --input=amanda.pot --output-file=$${lang}.po; \
	fi

#en_ZM.po: en.po zlocale.pl ztranslation
#	@chmod +x ./zlocale.pl
#	./zlocale.pl			

%.mo: %.po
	@echo "$(MSGFMT) -o $@ $<"; \
	$(MSGFMT) -o t-$@ $< && mv t-$@ $@

install-data-hook: $(MOFILES)
	@for cat in "" $(MOFILES); do \
	  if test -z "$$cat" -o "$$cat" = "en.mo"; then \
	    continue; \
	  fi; \
	  cat=`basename $$cat`; \
	  lang=`echo $$cat | sed -e 's/\.mo$$//'`; \
	  dir=$(localedir)/$$lang/LC_MESSAGES; \
	  $(MKDIR_P) $(DESTDIR)$$dir; \
	  if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \
	  $(INSTALL) $$realcat $(DESTDIR)$$dir/amanda.mo; \
	  echo "installing $$realcat as $(DESTDIR)$$dir/amanda.mo"; \
	  for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \
	    if test -n "$$lc"; then \
	      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
	        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
	        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
	        mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
	        (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \
	         for file in *; do \
	           if test -f $$file; then \
	             ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \
	           fi; \
	         done); \
	        rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
	      else \
	        if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \
	          :; \
	        else \
	          rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \
	          mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \
	        fi; \
	      fi; \
	      rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/amanda.mo; \
	      ln -s ../LC_MESSAGES/amanda.mo $(DESTDIR)$(localedir)/$$lang/$$lc/amanda.mo 2>/dev/null || \
	      ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/amanda.mo $(DESTDIR)$(localedir)/$$lang/$$lc/amanda.mo 2>/dev/null || \
	      cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/amanda.mo $(DESTDIR)$(localedir)/$$lang/$$lc/amanda.mo; \
	      echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/amanda.mo"; \
	    fi; \
	  done; \
	 done