diff -uNr gnome-guile-0.25/ChangeLog gnome-guile-0.27/ChangeLog --- gnome-guile-0.25/ChangeLog Wed Aug 5 16:23:52 1998 +++ gnome-guile-0.27/ChangeLog Thu Aug 13 21:30:07 1998 @@ -1,3 +1,9 @@ +1998-08-13 Federico Mena Quintero + + * configure.in: Bumped the version number to 0.27. + + * Makefile.am (EXTRA_DIST): Added gnome-guile.spec. + 1998-08-05 Federico Mena Quintero * configure.in: Bump version number to 0.25. diff -uNr gnome-guile-0.25/Makefile.am gnome-guile-0.27/Makefile.am --- gnome-guile-0.25/Makefile.am Wed Aug 5 16:22:24 1998 +++ gnome-guile-0.27/Makefile.am Thu Aug 13 21:29:48 1998 @@ -1,5 +1,7 @@ SUBDIRS = macros guile-gtk guile-gnome +EXTRA_DIST = gnome-guile.spec + ## to automatically rebuild aclocal.m4 if any of the macros in `macros/' change @MAINT@include macros/macros.dep @MAINT@macros/macros.dep: macros/Makefile.am diff -uNr gnome-guile-0.25/Makefile.in gnome-guile-0.27/Makefile.in --- gnome-guile-0.25/Makefile.in Wed Aug 5 17:28:34 1998 +++ gnome-guile-0.27/Makefile.in Fri Aug 14 11:39:44 1998 @@ -83,6 +83,8 @@ VERSION = @VERSION@ SUBDIRS = macros guile-gtk guile-gnome + +EXTRA_DIST = gnome-guile.spec ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h diff -uNr gnome-guile-0.25/configure gnome-guile-0.27/configure --- gnome-guile-0.25/configure Wed Aug 5 17:28:21 1998 +++ gnome-guile-0.27/configure Fri Aug 14 11:21:47 1998 @@ -706,7 +706,7 @@ PACKAGE=gnome-guile -VERSION=0.25 +VERSION=0.27 if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then { echo "configure: error: source directory already configured; run "make distclean" there first" 1>&2; exit 1; } diff -uNr gnome-guile-0.25/configure.in gnome-guile-0.27/configure.in --- gnome-guile-0.25/configure.in Wed Aug 5 16:24:55 1998 +++ gnome-guile-0.27/configure.in Thu Aug 13 21:30:01 1998 @@ -1,7 +1,7 @@ AC_INIT(guile-gtk) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE(gnome-guile, 0.25) +AM_INIT_AUTOMAKE(gnome-guile, 0.27) AM_MAINTAINER_MODE diff -uNr gnome-guile-0.25/gnome-guile.spec gnome-guile-0.27/gnome-guile.spec --- gnome-guile-0.25/gnome-guile.spec Wed Dec 31 19:00:00 1969 +++ gnome-guile-0.27/gnome-guile.spec Wed Aug 5 16:22:24 1998 @@ -0,0 +1,99 @@ +# Note that this is NOT a relocatable package +%define nam gnome-guile +%define ver 0.20 +%define rel SNAP +%define prefix /usr + +Summary: GNOME guile interpreter +Name: %nam +Version: %ver +Release: %rel +Copyright: LGPL +Group: X11/Gnome +Source: ftp://ftp.gnome.org/pub/%{nam}-%{ver}.tar.gz +BuildRoot: /tmp/%{nam}-root +Obsoletes: gnome +Packager: Marc Ewing +URL: http://www.gnome.org +Docdir: %{prefix}/doc + +%description +GNOME guile (gnomeg) is a guile interpreter with GTK and GNOME support. +A number of GNOME utilities are written to use gnomeg. + +GNOME is the GNU Network Object Model Environment. That's a fancy +name but really GNOME is a nice GUI desktop environment. It makes +using your computer easy, powerful, and easy to configure. + +%package devel +Summary: GNOME guile libraries, includes, etc +Group: X11/Gnome +Requires: %nam + +%description devel +Libraries and header files for GNOME guile development + +%changelog + +* Wed May 27 1998 Michael Fulbright + +- modified file list to include %{prefix}/share/guile, %{prefix}/share/gtk + +* Fri Mar 13 1998 Marc Ewing + +- Integrate into gnome-guile CVS source tree + +%prep +%setup + +%build +# Needed for snapshot releases. +if [ ! -f configure ]; then + CFLAGS="$RPM_OPT_FLAGS" ./autogen.sh --prefix=%prefix +else + CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%prefix +fi + +if [ "$SMP" != "" ]; then + (make "MAKE=make -j $SMP"; exit 0) + make +else + make +fi + +%install +rm -rf $RPM_BUILD_ROOT + +# FIXME: This will only work on systems where guile is installed +# in /usr. Hopefully we can get rid of this stuff soon! +make prefix=$RPM_BUILD_ROOT%{prefix} \ + ROOT=$RPM_BUILD_ROOT \ + sitedir=$RPM_BUILD_ROOT/usr/share/guile/site \ + schemedir=$RPM_BUILD_ROOT/usr/share/guile \ + install +rm -f $RPM_BUILD_ROOT/usr/share/guile/toolkits/libgtkstubs.so +ln -s /usr/lib/libguilegtk.so \ + $RPM_BUILD_ROOT/usr/share/guile/toolkits/libgtkstubs.so + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%defattr(-, root, root) + +%doc AUTHORS COPYING ChangeLog NEWS README +%{prefix}/bin/* +%{prefix}/lib/lib*.so.* + +%{prefix}/share/guile/toolkits/libgtkstubs.so +%{prefix}/share/guile/toolkits/gtk.scm +%{prefix}/share/guile/site/event-repl.scm + +%files devel +%attr(-, root, root) %{prefix}/lib/lib*.so +%attr(-, root, root) %{prefix}/lib/*a +%attr(-, root, root) %{prefix}/include/* diff -uNr gnome-guile-0.25/guile-gtk/stamp-h.in gnome-guile-0.27/guile-gtk/stamp-h.in --- gnome-guile-0.25/guile-gtk/stamp-h.in Wed Aug 5 17:22:21 1998 +++ gnome-guile-0.27/guile-gtk/stamp-h.in Fri Aug 14 11:22:15 1998 @@ -0,0 +1 @@ +timestamp diff -uNr gnome-guile-0.25/macros/ChangeLog gnome-guile-0.27/macros/ChangeLog --- gnome-guile-0.25/macros/ChangeLog Wed Aug 5 16:22:27 1998 +++ gnome-guile-0.27/macros/ChangeLog Thu Aug 13 21:30:17 1998 @@ -1,3 +1,7 @@ +1998-08-06 Martin Baulig + + * gnome-libgtop-sysdeps.m4: Added `freebsd' directory. + 1998-08-04 Raja R Harinath * gnome-x-checks.m4: Define USE_DEVGTK unconditionally to `true'. diff -uNr gnome-guile-0.25/macros/gnome-libgtop-sysdeps.m4 gnome-guile-0.27/macros/gnome-libgtop-sysdeps.m4 --- gnome-guile-0.25/macros/gnome-libgtop-sysdeps.m4 Wed Aug 5 16:22:28 1998 +++ gnome-guile-0.27/macros/gnome-libgtop-sysdeps.m4 Thu Aug 13 21:30:17 1998 @@ -83,6 +83,11 @@ libgtop_use_machine_h=yes libgtop_need_server=yes ;; + freebsd*) + libgtop_sysdeps_dir=freebsd + libgtop_use_machine_h=yes + libgtop_need_server=yes + ;; *) libgtop_sysdeps_dir=stub libgtop_use_machine_h=no diff -uNr gnome-guile-0.25/macros/gnome-objc-checks.m4 gnome-guile-0.27/macros/gnome-objc-checks.m4 --- gnome-guile-0.25/macros/gnome-objc-checks.m4 Wed Aug 5 16:22:28 1998 +++ gnome-guile-0.27/macros/gnome-objc-checks.m4 Thu Aug 13 21:30:17 1998 @@ -60,7 +60,7 @@ AC_MSG_RESULT(found) else AC_MSG_RESULT(not found) - AC_MSG_ERROR(Could not find the obGnomeConf.sh file that is generated by gnome-objc install) + AC_MSG_WARN(Could not find the obGnomeConf.sh file that is generated by gnome-objc install) fi AC_SUBST(OBGNOME_INCLUDEDIR) AC_SUBST(OBGNOME_LIBS)