diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-10-25 13:21:47 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2001-10-25 13:21:47 +0000 |
commit | fd11bb513fc4bf48f5a85811959c8bc7d2ef5e05 (patch) | |
tree | 1f016bd140464e9323fbadea81ea977f6bc32c34 /games/gcompris/files | |
parent | e3477a68a9085650251fa5aebd87bc37ae58874e (diff) | |
download | ports-fd11bb513fc4bf48f5a85811959c8bc7d2ef5e05.tar.gz ports-fd11bb513fc4bf48f5a85811959c8bc7d2ef5e05.zip |
Notes
Diffstat (limited to 'games/gcompris/files')
-rw-r--r-- | games/gcompris/files/patch-ac | 11 | ||||
-rw-r--r-- | games/gcompris/files/patch-configure | 23 | ||||
-rw-r--r-- | games/gcompris/files/patch-ltmain.sh | 18 | ||||
-rw-r--r-- | games/gcompris/files/patch-po::Makefile.in.in | 14 |
4 files changed, 57 insertions, 9 deletions
diff --git a/games/gcompris/files/patch-ac b/games/gcompris/files/patch-ac index 8e75eb26b92c..4768fa465758 100644 --- a/games/gcompris/files/patch-ac +++ b/games/gcompris/files/patch-ac @@ -1,9 +1,9 @@ $FreeBSD$ ---- Makefile.in.orig Mon May 28 13:18:45 2001 -+++ Makefile.in Mon May 28 13:33:59 2001 -@@ -183,9 +183,9 @@ +--- Makefile.in.orig Thu Oct 25 15:10:26 2001 ++++ Makefile.in Thu Oct 25 15:14:53 2001 +@@ -192,9 +192,9 @@ rm -f $(srcdir)/stamp-h.in; \ $(MAKE) $(srcdir)/stamp-h.in; \ else :; fi @@ -16,7 +16,7 @@ $FreeBSD$ mostlyclean-hdr: -@@ -417,7 +417,7 @@ +@@ -426,7 +426,7 @@ install-exec-am: install-exec: install-exec-recursive @@ -25,7 +25,7 @@ $FreeBSD$ install-data-local install-data: install-data-recursive -@@ -488,14 +488,14 @@ +@@ -498,13 +498,13 @@ @$(NORMAL_INSTALL) if test -d @PACKAGE_DATA_DIR@; then \ $(mkinstalldirs) $(DESTDIR)/$(pkgdatadir)/@PACKAGE_DATA_DIR@; \ @@ -34,7 +34,6 @@ $FreeBSD$ fi dist-hook: - cp gcompris.spec $(distdir) if test -d @PACKAGE_DATA_DIR@; then \ $(mkinstalldirs) $(distdir)/@PACKAGE_DATA_DIR@; \ - cd @PACKAGE_DATA_DIR@ ; tar cf - --exclude CVS --exclude .xvpics * | ( cd ../$(distdir)/@PACKAGE_DATA_DIR@ ; tar xf -) ; cd .. ; \ diff --git a/games/gcompris/files/patch-configure b/games/gcompris/files/patch-configure index 4dc527f10096..891546c18b3b 100644 --- a/games/gcompris/files/patch-configure +++ b/games/gcompris/files/patch-configure @@ -1,9 +1,26 @@ $FreeBSD$ ---- configure.orig Mon May 28 13:15:07 2001 -+++ configure Mon May 28 13:17:17 2001 -@@ -5147,14 +5147,14 @@ +--- configure.orig Thu Oct 25 16:02:31 2001 ++++ configure Thu Oct 25 16:03:10 2001 +@@ -6711,6 +6711,7 @@ + + + GNOME_XML_LIB=`$GNOME_CONFIG --libs xml2` ++ CPPFLAGS="$CPPFLAGS `$GNOME_CONFIG --cflags xml2`" + + else + echo "$ac_t""no" 1>&6 +@@ -8315,7 +8316,7 @@ + fi + + +- CATOBJEXT=.gmo ++ CATOBJEXT=.mo + fi + + else +@@ -8611,14 +8612,14 @@ PACKAGE_SOUNDS_DIR="sounds" cat >> confdefs.h <<EOF diff --git a/games/gcompris/files/patch-ltmain.sh b/games/gcompris/files/patch-ltmain.sh new file mode 100644 index 000000000000..33bc7983f107 --- /dev/null +++ b/games/gcompris/files/patch-ltmain.sh @@ -0,0 +1,18 @@ + +$FreeBSD$ + +--- ltmain.sh 2001/08/27 09:51:26 1.1 ++++ ltmain.sh 2001/08/27 09:51:42 +@@ -4175,10 +4175,12 @@ + fi + + # Install the pseudo-library for information purposes. ++ if /usr/bin/false; then + name=`$echo "X$file" | $Xsed -e 's%^.*/%%'` + instname="$dir/$name"i + $show "$install_prog $instname $destdir/$name" + $run eval "$install_prog $instname $destdir/$name" || exit $? ++ fi + + # Maybe install the static library, too. + test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" diff --git a/games/gcompris/files/patch-po::Makefile.in.in b/games/gcompris/files/patch-po::Makefile.in.in new file mode 100644 index 000000000000..c62cc934e068 --- /dev/null +++ b/games/gcompris/files/patch-po::Makefile.in.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- po/Makefile.in.in 2001/10/25 12:58:36 1.1 ++++ po/Makefile.in.in 2001/10/25 12:59:13 +@@ -106,7 +106,7 @@ + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ +- lang=`echo $$cat | sed 's/\.gmo$$//'`; \ ++ lang=`echo $$cat | sed 's/\.mo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then \ |