Re: [GnomeMeeting-list] Snapshot rpms.



Miguel Rodríguez wrote:
El jue, 16-05-2002 a las 01:58, Carl-Johan Kjellander escribió:

--- gnomemeeting-2002-05-15/Makefile.am.bak	Wed May 15 01:00:38 2002
+++ gnomemeeting-2002-05-15/Makefile.am	Wed May 15 22:52:48 2002
@@ -17,8 +17,8 @@
schemas_DATA = $(SCHEMAS_FILE)

install-schemas: gnomemeeting.schema
-	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) gconftool --makefile-install-rule $(SCHEMAS_FILE)
-	gconftool --shutdown
+	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) gconftool-2 --makefile-install-rule $(SCHEMAS_FILE)
+	gconftool-2 --shutdown

install-data-local: install-schemas

----


Ummmm, I don't care much about this patch, but shouldn't distros
configure gconftool to be just a symlink to just gconftool-1 or
gconftool-2? In fact, for the purpose of installing the schemas it just
doesn't matter what version of gconf you use.

I talked to a Red Hat guy and he said that RH won't put a symlink from
gconftool to gconftool-whatever. I remaid the patch so now configure.in
checks for gconftool-2 explicitly, and the 0.9x branch of gnomemeeting
needs gnome2 anyway so I think it's resonable to use gconftool-2.

Does anybody know an AC-makro that gives the correct gconftool to use
automatically so you don't have to use 'gconftool-2' as a constant?

I updated the rpms to the latest snapshot, try them out at:

http://razor.hemmet.chalmers.se/gnomemeeting/

/Carl-Johan Kjellander

--
begin 644 carljohan_at_kjellander_dot_com.gif
Y1TE&.#=A(0`F`(```````/___RP`````(0`F```"@XR/!\N<#U.;+MI`<[U(>\!UGQ9BGT%>'D2I
Y*=NX,2 OUF2&<827ILW;^822C>\7!!Z1,!K'B5(6H<SH-"E*TJ3%*/>QI6:7"A>Y?):D2^*U NCV
R<MOQ=]V(B6>LZYD-_T1U<@3W]A4(^$-W4]A#V")W6#.R"$;IR'@).46BN7$9>5D``#L`
diff -Naur gnomemeeting-2002-05-16.vanilla/Makefile.am gnomemeeting-2002-05-16/Makefile.am
--- gnomemeeting-2002-05-16.vanilla/Makefile.am	Thu May 16 11:51:10 2002
+++ gnomemeeting-2002-05-16/Makefile.am	Thu May 16 11:52:42 2002
@@ -17,8 +17,8 @@
 schemas_DATA = $(SCHEMAS_FILE)
 
 install-schemas: gnomemeeting.schema
-	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) gconftool --makefile-install-rule $(SCHEMAS_FILE)
-	gconftool --shutdown
+	GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(SCHEMAS_FILE)
+	$(GCONFTOOL) --shutdown
 
 install-data-local: install-schemas
 
diff -Naur gnomemeeting-2002-05-16.vanilla/configure.in gnomemeeting-2002-05-16/configure.in
--- gnomemeeting-2002-05-16.vanilla/configure.in	Thu May 16 11:51:10 2002
+++ gnomemeeting-2002-05-16/configure.in	Thu May 16 11:55:38 2002
@@ -51,6 +51,10 @@
 dnl ############################################################################
 dnl GConf related settings
 dnl ############################################################################
+AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
+if test x"$GCONFTOOL" = xno; then
+  AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf])
+fi
 AM_GCONF_SOURCE_2
 
 


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