[Fxruby-commits] CVS: FXRuby ANNOUNCE.in,NONE,1.1.2.1 Makefile.in,NONE,1.1.2.1 setversions.rb,1.15.2
Status: Inactive
Brought to you by:
lyle
From: Lyle J. <ly...@us...> - 2002-05-10 05:04:05
|
Update of /cvsroot/fxruby/FXRuby In directory usw-pr-cvs1:/tmp/cvs-serv11239 Modified Files: Tag: release10 setversions.rb Added Files: Tag: release10 ANNOUNCE.in Makefile.in Removed Files: Tag: release10 ANNOUNCE.tmpl Log Message: --- NEW FILE: ANNOUNCE.in --- I am pleased to announce the latest release of FXRuby, the Ruby language bindings for the FOX GUI toolkit. FOX is a C++-based toolkit for developing graphical user interfaces easily and effectively. It offers a wide, and growing, collection of widgets, and provides state-of-the-art facilities such as drag-and-drop, selection, as well as OpenGL widgets for 3-D graphical manipulation. FOX also implements icons, images, and user-convenience features such as status line help and tooltips. Please see the comments on the home page concerning any problems with this release, or the change log to see what has changed since the previous release. The FXRuby home page is here: @@FXRUBY_HOME_URL@@ and the source tarball can be downloaded here: @@FXRUBY_SRC_URL@@ A binary installer for Windows, compatible with the mswin32-based versions of Ruby 1.6.x for Windows, is also available for download here: @@FXRUBY_WIN32_URL@@ Note that this release of FXRuby depends on FOX version 1.0.0 (or later), which can be downloaded from the FOX downloads page here: http://www.fox-toolkit.org/downloads.html Please feel free to send me any questions or comments, and watch this space for future announcements! Lyle --- NEW FILE: Makefile.in --- PACKAGE = FXRuby VERSION = @@FXRUBY_VERSION@@ distdir = $(PACKAGE)-$(VERSION) DISTFILES = \ ANNOUNCE \ ChangeLog \ LICENSE \ README \ install.rb \ index.html \ doc/*.html \ doc/images/*.png \ examples/README \ examples/*.rb \ examples/*.xml \ examples/icons/*.png \ examples/icons/*.ico \ examples/textedit/*.rb \ lib/fox/*.rb \ ext/fox/MANIFEST \ ext/fox/extconf.rb \ ext/fox/*.c \ ext/fox/*.cpp \ ext/fox/include/*.h \ swig-interfaces/README \ swig-interfaces/Makefile \ swig-interfaces/swig.sed \ swig-interfaces/*.i \ tests/README \ tests/*.rb all: config.save ruby install.rb setup config.save: ruby install.rb config check: cd tests ruby TS_All.rb install: ruby install.rb install clean: ruby install.rb clean dist: distdir -chmod -R a+r $(distdir) tar czf $(distdir).tar.gz $(distdir) -rm -rf $(distdir) distdir: $(DISTFILES) -rm -rf $(distdir) mkdir $(distdir) -chmod 777 $(distdir) @for file in $(DISTFILES); do \ mkdir -p $(distdir)/`dirname $$file`; \ cp -p $$file $(distdir)/`dirname $$file`; \ done Index: setversions.rb =================================================================== RCS file: /cvsroot/fxruby/FXRuby/setversions.rb,v retrieving revision 1.15.2.1 retrieving revision 1.15.2.2 diff -C2 -d -r1.15.2.1 -r1.15.2.2 *** setversions.rb 30 Apr 2002 19:05:49 -0000 1.15.2.1 --- setversions.rb 10 May 2002 05:04:01 -0000 1.15.2.2 *************** *** 24,28 **** def setversions(filename) ! text = File.open(filename + ".tmpl", "r").read() SUBSTITUTIONS.each { |pattern, replacement| text.gsub!(pattern, replacement) --- 24,28 ---- def setversions(filename) ! text = File.open(filename + ".in", "r").read() SUBSTITUTIONS.each { |pattern, replacement| text.gsub!(pattern, replacement) *************** *** 32,34 **** --- 32,35 ---- setversions("ANNOUNCE") + setversions("Makefile") setversions("ext/fox/extconf.rb") --- ANNOUNCE.tmpl DELETED --- |