Damien Sandras wrote:
A new release of GnomeMeeting is available.
<-snip-> And I've made some new rpms for Red Hat 7.3 for people to try out. http://razor.hemmet.chalmers.se/gnomemeeting/ I've updated the spec-file so now all missing files like locale, man and gnomemeeting-config-tool are now actually being included in the rpm. The only thing I still have to patch is the dependancy on 'gconftool' which on RH-systems aren't present. I'm attatching a patch that checks for gconftool-2 on a system in configure.in so you get an error message if it isn't installed at configure-time and not when you do a 'make install'. The rpm's depend on the Gnome-2.0 rpms so get the lastest from ximian, and don't forget the latest pwlib and openh323-rpms that you can get from the link above as well. Now go and install stuff. The lastest openh323 fixes that nasty "green dot"- bug that has been along for a long time. /Carl-Johan Kjellander ps. I you get connection refused, I'm probably in windows playing GTA3 so try again later. ds. -- 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-21.vanilla/Makefile.am gnomemeeting-2002-05-21/Makefile.am --- gnomemeeting-2002-05-21.vanilla/Makefile.am Tue May 21 00:08:13 2002 +++ gnomemeeting-2002-05-21/Makefile.am Tue May 21 13:07:22 2002 @@ -16,8 +16,8 @@ schemas_DATA = $(SCHEMAS_FILE) install-schemas: gnomemeeting.schemas - 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-21.vanilla/Makefile.am.orig gnomemeeting-2002-05-21/Makefile.am.orig --- gnomemeeting-2002-05-21.vanilla/Makefile.am.orig Thu Jan 1 01:00:00 1970 +++ gnomemeeting-2002-05-21/Makefile.am.orig Tue May 21 00:08:13 2002 @@ -0,0 +1,23 @@ +SUBDIRS = po src pixmaps sounds man + + INTLTOOL_DESKTOP_RULE@ + INTLTOOL_SCHEMAS_RULE@ + +DESKTOP_IN_FILES=gnomemeeting.desktop.in +DESKTOP_FILES=$(DESKTOP_IN_FILES:.desktop.in=.desktop) + +SCHEMAS_FILE = gnomemeeting.schemas + +EXTRA_DIST = $(DESKTOP_IN_FILES) $(DESKTOP_FILES) pixmaps/ intltool-extract.in intltool-merge.in intltool-update.in FAQ $(SCHEMAS_FILE) +Applicationsdir = $(datadir)/applications +Applications_DATA = $(DESKTOP_FILES) + +schemasdir = $(GCONF_SCHEMA_FILE_DIR) +schemas_DATA = $(SCHEMAS_FILE) + +install-schemas: gnomemeeting.schemas + 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-21.vanilla/configure.in gnomemeeting-2002-05-21/configure.in --- gnomemeeting-2002-05-21.vanilla/configure.in Tue May 21 00:08:13 2002 +++ gnomemeeting-2002-05-21/configure.in Tue May 21 13:07:14 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
Attachment:
smime.p7s
Description: S/MIME Cryptographic Signature