forked from jositux/gimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2005-08-10 Sven Neumann <[email protected]>
* Made 2.3.3, the "What The Hack" release. * data/images/gimp-splash.png: What The Splash, photo by antenne. git-svn-id: http://svn.gnome.org/svn/gimp/trunk@18204 f57ce169-c725-0410-9505-c4955b3f21d2
- Loading branch information
neo
committed
Aug 10, 2005
1 parent
7aa79ce
commit 0351ac1
Showing
5 changed files
with
41 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
2005-08-10 Sven Neumann <[email protected]> | ||
|
||
* Made 2.3.3, the "What The Hack" release. | ||
|
||
* data/images/gimp-splash.png: What The Splash, photo by antenne. | ||
|
||
2005-08-10 Michael Natterer <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,11 +11,6 @@ | |
# | ||
# - Modified by jacob berkman <[email protected]> to install | ||
# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize | ||
# | ||
# - Modified by Rodney Dawes <[email protected]> for use with intltool | ||
# | ||
# We have the following line for use by intltoolize: | ||
# INTLTOOL_MAKEFILE | ||
|
||
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ | ||
PACKAGE = @PACKAGE@ | ||
|
@@ -32,13 +27,13 @@ VPATH = @srcdir@ | |
prefix = @prefix@ | ||
exec_prefix = @exec_prefix@ | ||
datadir = @datadir@ | ||
datarootdir = @datarootdir@ | ||
libdir = @libdir@ | ||
localedir = $(libdir)/locale | ||
gnulocaledir = $(datadir)/locale | ||
gettextsrcdir = $(datadir)/glib-2.0/gettext/po | ||
subdir = po | ||
install_sh = @install_sh@ | ||
mkdir_p = @mkdir_p@ | ||
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs | ||
|
||
INSTALL = @INSTALL@ | ||
|
@@ -66,8 +61,7 @@ SOURCES = | |
POFILES = @POFILES@ | ||
GMOFILES = @GMOFILES@ | ||
DISTFILES = ChangeLog Makefile.in.in POTFILES.in \ | ||
$(POFILES) $(SOURCES) | ||
EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS | ||
$(POFILES) $(GMOFILES) $(SOURCES) | ||
|
||
POTFILES = \ | ||
|
||
|
@@ -83,7 +77,7 @@ INSTOBJEXT = @INSTOBJEXT@ | |
|
||
.po.pox: | ||
$(MAKE) $(GETTEXT_PACKAGE).pot | ||
$(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox | ||
$(MSGMERGE) $< $(top_builddir)/po/$(GETTEXT_PACKAGE).pot -o $*pox | ||
|
||
.po.mo: | ||
$(MSGFMT) -o $@ $< | ||
|
@@ -180,7 +174,7 @@ uninstall: | |
rm -f $(DESTDIR)$(gettextsrcdir)/Makefile.in.in; \ | ||
fi | ||
|
||
check: all $(GETTEXT_PACKAGE).pot | ||
check: all | ||
|
||
dvi info tags TAGS ID: | ||
|
||
|
@@ -192,21 +186,16 @@ mostlyclean: | |
clean: mostlyclean | ||
|
||
distclean: clean | ||
rm -f Makefile Makefile.in POTFILES | ||
rm -f *.mo *.msg *.cat *.cat.m $(GMOFILES) | ||
rm -f Makefile Makefile.in POTFILES *.mo *.msg *.cat *.cat.m | ||
|
||
maintainer-clean: distclean | ||
@echo "This command is intended for maintainers to use;" | ||
@echo "it deletes files that may require special tools to rebuild." | ||
rm -f Makefile.in.in | ||
rm -f $(GMOFILES) | ||
|
||
distdir = ../$(GETTEXT_PACKAGE)-$(VERSION)/$(subdir) | ||
dist distdir: $(DISTFILES) | ||
dist distdir: $(DISTFILES) $(GETTEXT_PACKAGE).pot | ||
dists="$(DISTFILES)"; \ | ||
extra_dists="$(EXTRA_DISTFILES)"; \ | ||
for file in $$extra_dists; do \ | ||
test -f $$file && dists="$$dists $$file"; \ | ||
done; \ | ||
for file in $$dists; do \ | ||
ln $(srcdir)/$$file $(distdir) 2> /dev/null \ | ||
|| cp -p $(srcdir)/$$file $(distdir); \ | ||
|
@@ -243,13 +232,17 @@ update-po: Makefile | |
# and Intltool tags (enclosed in square brackets), and appending a full | ||
# relative path to them | ||
POTFILES: POTFILES.in | ||
( posrcprefix='$(top_srcdir)/'; \ | ||
( if test 'x$(srcdir)' != 'x.'; then \ | ||
posrcprefix='$(top_srcdir)/'; \ | ||
else \ | ||
posrcprefix="../"; \ | ||
fi; \ | ||
rm -f $@-t $@ \ | ||
&& (sed -e '/^#/d' \ | ||
-e 's/^[[].*] *//' \ | ||
-e '/^[ ]*$$/d' \ | ||
-e "s@^@ $$posrcprefix@" $(srcdir)/[email protected] \ | ||
| sed -e '$$!s/$$/ \\/') > $@-t \ | ||
&& (sed -e '/^#/d' \ | ||
-e "s/^\[.*\] +//" \ | ||
-e '/^[ ]*$$/d' \ | ||
-e "s@.*@ $$posrcprefix& \\\\@" < $(srcdir)/[email protected] \ | ||
| sed -e '$$s/\\$$//') > $@-t \ | ||
&& chmod a-w $@-t \ | ||
&& mv $@-t $@ ) | ||
|
||
|