Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 52679 | Differences between
and this patch

Collapse All | Expand All

(-)wormux.bak/po/Makefile.am (-2 / +4 lines)
Lines 23-29 Link Here
23
	src/gui/spin_button.cpp \
23
	src/gui/spin_button.cpp \
24
	src/main.cpp \
24
	src/main.cpp \
25
	src/graphic/animation.cpp \
25
	src/graphic/animation.cpp \
26
	src/graphic/clipping.cpp \
27
	src/graphic/convert.cpp \
26
	src/graphic/convert.cpp \
28
	src/graphic/font.cpp \
27
	src/graphic/font.cpp \
29
	src/graphic/fps.cpp \
28
	src/graphic/fps.cpp \
Lines 44-49 Link Here
44
	src/map/map.cpp \
43
	src/map/map.cpp \
45
	src/map/maps_list.cpp \
44
	src/map/maps_list.cpp \
46
	src/map/sky.cpp \
45
	src/map/sky.cpp \
46
	src/map/tile.cpp \
47
	src/map/water.cpp \
47
	src/map/water.cpp \
48
	src/map/wind.cpp \
48
	src/map/wind.cpp \
49
	src/menu/infos_menu.cpp \
49
	src/menu/infos_menu.cpp \
Lines 156-162 Link Here
156
# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
156
# This target rebuilds $(DOMAIN).pot; it is an expensive operation.
157
# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
157
# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed.
158
$(DOMAIN).pot-update: $(POTFILES_DEPS) remove-potcdate.sed
158
$(DOMAIN).pot-update: $(POTFILES_DEPS) remove-potcdate.sed
159
	$(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
159
	$(XGETTEXT) \
160
	  -o $(DOMAIN).pot -k'_' -s --from-code iso-8859-1 \
161
	  --default-domain=$(DOMAIN) --directory=$(top_srcdir) \
160
	  --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
162
	  --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \
161
	  --copyright-holder='$(COPYRIGHT_HOLDER)' \
163
	  --copyright-holder='$(COPYRIGHT_HOLDER)' \
162
	  --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' \
164
	  --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' \
(-)wormux.bak/po/remove-potcdate.sin (+19 lines)
Line 0 Link Here
1
# Sed script that remove the POT-Creation-Date line in the header entry
2
# from a POT file.
3
#
4
# The distinction between the first and the following occurrences of the
5
# pattern is achieved by looking at the hold space.
6
/^"POT-Creation-Date: .*"$/{
7
x
8
# Test if the hold space is empty.
9
s/P/P/
10
ta
11
# Yes it was empty. First occurrence. Remove the line.
12
g
13
d
14
bb
15
:a
16
# The hold space was nonempty. Following occurrences. Do nothing.
17
x
18
:b
19
}

Return to bug 52679