gnome-mud r679 - in trunk: . data data/icons data/icons/16x16 data/icons/16x16/apps data/icons/22x22 data/icons/22x22/apps data/icons/24x24 data/icons/24x24/apps data/icons/32x32 data/icons/32x32/apps data/icons/scalable data/icons/scalable/apps doc doc/gnome-mud-manual doc/gnome-mud-manual/C doc/gnome-mud-manual/C/figures doc/gnome-mud-plugin-api doc/gnome-mud-plugin-api/C plugins plugins/automapper plugins/outputwindows plugins/python plugins/statusbars plugins/test.plugin po src src/pixmaps src/svg ui



Author: jordim
Date: Fri Jul 18 11:09:18 2008
New Revision: 679
URL: http://svn.gnome.org/viewvc/gnome-mud?rev=679&view=rev

Log:
2008-07-18  Jordi Mallach  <jordi sindominio net>

	* Get rid of all .cvsignore files, and add svn:ignore properties as
	needed.

	* configure.ac, doc/Makefile.am: Don't ship the GNOME-Mud manual
	for now, as it's outdated and not yet migrated to PO format.

	* configure.ac, src/Makefile.am, src/pixmaps, src/svg: Get rid of the
	old icons from the distribution.
	* src/Makefile.am, src/mud-tray.c: use the new SVG icon path for
	the tray icon.


Removed:
   trunk/.cvsignore
   trunk/doc/.cvsignore
   trunk/doc/gnome-mud-manual/.cvsignore
   trunk/doc/gnome-mud-manual/C/.cvsignore
   trunk/doc/gnome-mud-plugin-api/.cvsignore
   trunk/doc/gnome-mud-plugin-api/C/.cvsignore
   trunk/plugins/.cvsignore
   trunk/plugins/python/.cvsignore
   trunk/plugins/test.plugin/.cvsignore
   trunk/po/.cvsignore
   trunk/src/.cvsignore
   trunk/src/pixmaps/
   trunk/src/svg/
   trunk/ui/.cvsignore
Modified:
   trunk/   (props changed)
   trunk/ChangeLog
   trunk/configure.ac
   trunk/data/   (props changed)
   trunk/data/icons/   (props changed)
   trunk/data/icons/16x16/   (props changed)
   trunk/data/icons/16x16/apps/   (props changed)
   trunk/data/icons/22x22/   (props changed)
   trunk/data/icons/22x22/apps/   (props changed)
   trunk/data/icons/24x24/   (props changed)
   trunk/data/icons/24x24/apps/   (props changed)
   trunk/data/icons/32x32/   (props changed)
   trunk/data/icons/32x32/apps/   (props changed)
   trunk/data/icons/scalable/   (props changed)
   trunk/data/icons/scalable/apps/   (props changed)
   trunk/doc/   (props changed)
   trunk/doc/Makefile.am
   trunk/doc/gnome-mud-manual/   (props changed)
   trunk/doc/gnome-mud-manual/C/   (props changed)
   trunk/doc/gnome-mud-manual/C/figures/   (props changed)
   trunk/doc/gnome-mud-plugin-api/C/   (props changed)
   trunk/plugins/   (props changed)
   trunk/plugins/automapper/   (props changed)
   trunk/plugins/outputwindows/   (props changed)
   trunk/plugins/statusbars/   (props changed)
   trunk/plugins/test.plugin/   (props changed)
   trunk/po/   (props changed)
   trunk/src/   (props changed)
   trunk/src/Makefile.am
   trunk/src/mud-tray.c

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Fri Jul 18 11:09:18 2008
@@ -159,10 +159,7 @@
   data/icons/scalable/Makefile
   data/icons/scalable/apps/Makefile
   doc/Makefile
-  doc/gnome-mud-manual/Makefile
   src/Makefile
-  src/pixmaps/Makefile
-  src/svg/Makefile
   plugins/Makefile
   plugins/python/Makefile
   po/Makefile.in

Modified: trunk/doc/Makefile.am
==============================================================================
--- trunk/doc/Makefile.am	(original)
+++ trunk/doc/Makefile.am	Fri Jul 18 11:09:18 2008
@@ -1,5 +1,5 @@
-SUBDIRS = gnome-mud-manual
+SUBDIRS = 
 
 man_MANS = gnome-mud.6
 
-EXTRA_DIST = xmldocs.make $(man_MANS)
+EXTRA_DIST = $(man_MANS)

Modified: trunk/src/Makefile.am
==============================================================================
--- trunk/src/Makefile.am	(original)
+++ trunk/src/Makefile.am	Fri Jul 18 11:09:18 2008
@@ -1,17 +1,15 @@
-SUBDIRS = pixmaps svg
-
 GMUD_DEBUG = -Wall -O0 -g
 
 localedir = $(datadir)/locale
-INCLUDES =												\
-	-DLOCALEDIR=\"$(localedir)\"						\
+INCLUDES =								\
+	-DLOCALEDIR=\"$(localedir)\"					\
 	-DPIXMAPSDIR=\""$(datadir)/pixmaps"\"				\
-	-DGMPIXMAPSDIR=\""$(datadir)/pixmaps/gnome-mud"\"	\
-	-DPREFIX=\""$(prefix)"\"							\
-	-DSYSCONFDIR=\""$(sysconfdir)"\"					\
-	-DDATADIR=\""$(datadir)"\"							\
-	-DLIBDIR=\""$(libdir)"\"							\
-	-DGLADEDIR=\""$(pkgdatadir)"\"						\
+	-DGMPIXMAPSDIR=\""$(datadir)/icons/hicolor/scalable/apps"\"	\
+	-DPREFIX=\""$(prefix)"\"					\
+	-DSYSCONFDIR=\""$(sysconfdir)"\"				\
+	-DDATADIR=\""$(datadir)"\"					\
+	-DLIBDIR=\""$(libdir)"\"					\
+	-DGLADEDIR=\""$(pkgdatadir)"\"					\
 	$(GMUD_CFLAGS) $(GMUD_DEBUG) $(MSP_CFLAGS)
 LDADD   = $(GMUD_LIBS) $(Z_LIBS) $(MSP_LIBS)
 AM_CPPFLAGS = -DPKGDATADIR=\"$(pkgdatadir)\"

Modified: trunk/src/mud-tray.c
==============================================================================
--- trunk/src/mud-tray.c	(original)
+++ trunk/src/mud-tray.c	Fri Jul 18 11:09:18 2008
@@ -186,7 +186,7 @@
                         break;
                 case offline_connecting:
                 case online_connecting:
-                        icon_name = GMPIXMAPSDIR "/gnome-mud-tray-icon.png";
+                        icon_name = GMPIXMAPSDIR "/gnome-mud.svg";
                         break;
                 case online:
                         icon_name = GMPIXMAPSDIR "/connection-online.png";



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]