gaim/gaim

Red Hat bug #165752, printf mis-match
oldstatus v1_5_0
2005-08-11, Mark Doliner
40fa1d5b287d
Red Hat bug #165752, printf mis-match
This bug was filed at 3:30 this afternoon.
Was fixed in about 7 hours.
Will be in a released version of Gaim in about 10.
Will be in Fedora within maybe 4 days.

Closed-source development eat your heart out, you sick
cannibal bastards.
# Makefile.mingw
#
# Description: Makefile to generate mo files
#
PACKAGE = gaim
##
## PATHS
##
srcdir = .
GAIM_TOP = ..
GAIM_INSTALL_DIR = ../win32-install-dir
LOCALEDIR = $(GAIM_INSTALL_DIR)/locale
GTK_BIN = ../../win32-dev/gtk_2_0/bin
##
## TOOLS
##
GMSGFMT := $(GTK_BIN)/msgfmt
.SUFFIXES:
.SUFFIXES: .po .gmo
##
## SOURCES, OBJECTS
##
CATALOGS = $(patsubst %.po,%.gmo,$(wildcard *.po))
##
## RULES
##
.po.gmo:
rm -f $@ && $(GMSGFMT) --statistics -o $@ $<
##
## TARGETS
##
all: $(CATALOGS)
install: all
mkdir -p $(LOCALEDIR)
@catalogs='$(CATALOGS)'; \
for cat in $$catalogs; do \
cat=`basename $$cat`; \
lang=`echo $$cat | sed 's/\.gmo$$//'`; \
dir=$(LOCALEDIR)/$$lang/LC_MESSAGES; \
mkdir -p $$dir; \
if test -r $$cat; then \
cp $$cat $$dir/$(PACKAGE).mo; \
echo "installing $$cat as $$dir/$(PACKAGE).mo"; \
else \
cp $(srcdir)/$$cat $$dir/$(PACKAGE).mo; \
echo "installing $(srcdir)/$$cat as" \
"$$dir/$(PACKAGE).mo"; \
fi; \
done
clean:
rm -f *.gmo