Ask a Question related to Ruby, Design and Development.
-
Masao Mutoh #1
[ANN] Ruby-GNOME2-0.7.0
Hi,
Ruby-GNOME2-0.7.0 is now available. Enjoy!
Highlights
==========
* Added Ruby/GtkGLExt.
You also need latest version of rbogl[1].
* Defines each Flags/Enums as a class.
* Fixed a lot of bugs, Improved.
* Some classes/methods were added.
Please see NEWS in the packages or News on SF.net[2]
for more details.
[1] [url]http://www2.giganet.net/~yoshi/[/url]
[2] [url]http://sourceforge.net/forum/forum.php?forum_id=308114[/url]
Downloads
=========
[url]http://sourceforge.net/project/showfiles.php?group_id=53614[/url]
* ruby-gtk2
The minimum package which includes
Ruby/GLib2, Ruby/GdkPixbuf, Ruby/Pango, Ruby/GTK2.
* ruby-gstreamer
The minimum package for Ruby/GStreamer.
Ruby/GLib2, Ruby/GStreamer.
* ruby-gnome2
All of Ruby-GNOME2 libraries.
What's Ruby-GNOME2?
===================
Ruby-GNOME2 is a set of Ruby language bindings for
the GNOME 2.x development environment.
Supported libraries are:
* Ruby/GLib2
* Ruby/GdkPixbuf2
* Ruby/Pango
* Ruby/GTK2
* Ruby/GNOME2
* Ruby/GnomeCanvas2
* Ruby/Libart2
* Ruby/Libglade2
* Ruby/GConf2
* Ruby/GnomeVFS
* Ruby/GStreamer
* Ruby/GtkHtml2
* Ruby/GtkGLExt [NEW]
Resources
=========
- Project website
(English) [url]http://ruby-gnome2.sourceforge.jp/[/url]
(French) [url]http://ruby-gnome2.sourceforge.jp/fr/[/url] [NEW]
(Japanese) [url]http://ruby-gnome2.sourceforge.jp/ja/[/url]
- Mailing lists
[url]http://sourceforge.net/mail/?group_id=53614[/url]
- Tutorials
(English) [url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?tut-gtk[/url] [NEW]
(French) [url]http://ruby-gnome2.sourceforge.jp/fr/hiki.cgi?tut-gtk[/url] [NEW]
(Japanese) [url]http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?gtk2-tut[/url]
- Ruby-GNOME2 API Reference
[url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Ruby-GNOME2+API+Reference[/url]
- Samples
[url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Samples[/url]
- gtk+-2.2 binary package for cygwin
[url]http://web.sfc.keio.ac.jp/~s01397ms/cygwin/index.html.en[/url]
- GTK+ for Windows
[url]http://www.dropline.net/gtk/[/url]
- Other resources
[url]http://ruby-gnome2.sourceforge.jp/hiki.cgi?Links[/url]
--
.:% Masao Mutoh<mutoh@highway.ne.jp>
Masao Mutoh Guest
-
[ANN] Ruby-GNOME2-0.8.1
Hi, Ruby-GNOME2-0.8.1 is now available. This is a bugfix release of Ruby-GNOME2-0.8.0. #Though some methods were added ;). Enjoy! ... -
[ANN] Ruby-GNOME2-0.8.0
Hi, Ruby-GNOME2-0.8.0 is out. Enjoy! Highlights ========== * Added Ruby/Libgda. Ruby/Libgda is a Ruby binding of libgda (GNOME-DB Project).... -
[ANN] Ruby/GNOME2 music player (initial release)
I'm making a first public release of a music player I've been working on available here: http://www.gothpoodle.com/~galt/player.html As... -
[ANN] #ruby-gnome2 @ irc.gnome.org
Hi all, The Ruby-GNOME2 project has now an IRC channel on the GNOME IRC network. More information are available from here: ... -
Ruby-GNOME2 website in French
<French> Salut, Une petite partie du site du projet Ruby-GNOME2 est maintenant accessible en français. Il reste encore beaucoup de pages à... -
Aredridel #2
Re: [ANN] Ruby-GNOME2-0.7.0
--=-mdl2YBQNQuqM6LokX6Er
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:I have to apply this patch to get it to compile under 1.8.0, gcc3.3 on> Hi,
>
> Ruby-GNOME2-0.7.0 is now available. Enjoy!
PLD-Linux -- "nil" should not be passed to have_library in mkmf.
--=-mdl2YBQNQuqM6LokX6Er
Content-Disposition: attachment; filename=ruby-rbogl-extconf.patch
Content-Type: text/x-patch; name=ruby-rbogl-extconf.patch; charset=UTF-8
Content-Transfer-Encoding: 7bit
diff -ur opengl-orig/extconf.rb opengl/extconf.rb
--- opengl-orig/extconf.rb 2001-11-30 22:24:58.000000000 -0700
+++ opengl/extconf.rb 2003-09-07 09:02:23.000000000 -0600
@@ -43,8 +43,8 @@
$objs = ["glu.o", "ogl.o", "rbogl.o"]
#have_library("pthread", "pthread_create")
-(have_library(gl_libname, nil) || have_library("Mesa"+gl_libname, nil)) &&
- (have_library(glu_libname, nil) || have_library("Mesa"+glu_libname, nil)) &&
+(have_library(gl_libname) || have_library("Mesa"+gl_libname)) &&
+ (have_library(glu_libname) || have_library("Mesa"+glu_libname)) &&
create_makefile("opengl")
if (FileTest.exist? "Makefile")
open("Makefile") {|f|
@@ -64,7 +64,7 @@
have_library("Xi", "XAllowDeviceEvents") &&
have_library("Xext", "XMITMiscGetBugMode") &&
have_library("Xmu", "XmuAddCloseDisplayHook")
-have_library(glut_libname, nil) &&
+have_library(glut_libname) &&
create_makefile("glut")
if (FileTest.exist? "Makefile")
open("Makefile") {|f|
Only in opengl: extconf.rb~
--=-mdl2YBQNQuqM6LokX6Er--
Aredridel Guest
-
Aredridel #3
Re: [ANN] Ruby-GNOME2-0.7.0
--=-7gxGHjCYPZNydTuqNYeX
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
On Sun, 2003-09-07 at 09:04, Aredridel wrote:Ooops, it looks like the mailing list stripped the attachment, and it> On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:>=20> > Hi,
> >=20
> > Ruby-GNOME2-0.7.0 is now available. Enjoy!
> I have to apply this patch to get it to compile under 1.8.0, gcc3.3 on
> PLD-Linux -- "nil" should not be passed to have_library in mkmf.
>=20
>=20
was a patch to rbogl, not gnome2. Sorry about that!
Ari
--=-7gxGHjCYPZNydTuqNYeX
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: This is a digitally signed message part
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)
iD8DBQA/W0lStP09exA3hooRAsSTAKDDoDthCsqmDMsA3iZj+JUHRyrn7g CfTvO+
nkHfBWU6ZGY3CFQTqjWys/c=
=Ztp4
-----END PGP SIGNATURE-----
0
--=-7gxGHjCYPZNydTuqNYeX--
Aredridel Guest
-
Aredridel #4
Re: [ANN] Ruby-GNOME2-0.7.0
--=-a7i3wZoFJmxzPmKVpIYT
Content-Type: multipart/mixed; boundary="=-NzpoVlw3Uz/6Qg4yntVv"
--=-NzpoVlw3Uz/6Qg4yntVv
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:Here's the patch it took to build for me:> Hi,
>=20
> Ruby-GNOME2-0.7.0 is now available. Enjoy!
--=-NzpoVlw3Uz/6Qg4yntVv
Content-Disposition: attachment; filename=ruby-gnome2-extconf.patch
Content-Transfer-Encoding: base64
Content-Type: text/x-patch; name=ruby-gnome2-extconf.patch; charset=UTF-8
ZGlmZiAtdXIgcnVieS1nbm9tZTItYWxsLTAuNy4wLW9yaWcvZ2 xpYi9leHRjb25mLnJiIHJ1Ynkt
Z25vbWUyLWFsbC0wLjcuMC9nbGliL2V4dGNvbmYucmINCi0tLS BydWJ5LWdub21lMi1hbGwtMC43
LjAtb3JpZy9nbGliL2V4dGNvbmYucmIJMjAwMy0wOS0wNyAwNj owMDozMi4wMDAwMDAwMDAgLTA2
MDANCisrKyBydWJ5LWdub21lMi1hbGwtMC43LjAvZ2xpYi9leH Rjb25mLnJiCTIwMDMtMDktMDcg
MDk6NDM6MDQuMDAwMDAwMDAwIC0wNjAwDQpAQCAtNyw2ICs3LD cgQEANCiByZXF1aXJlICdta21m
LWdub21lMicNCiANCiBQS0dDb25maWcuaGF2ZV9wYWNrYWdlKC dnb2JqZWN0LTIuMCcpIG9yIGV4
aXQgMQ0KK1BLR0NvbmZpZy5oYXZlX3BhY2thZ2UoJ2dsaWItMi 4wJykgb3IgZXhpdCAxDQogY2hl
Y2tfd2luMzINCiANCiBzZXRfb3V0cHV0X2xpYignbGlicnVieS 1nbGliMi5hJykNCk9ubHkgaW4g
cnVieS1nbm9tZTItYWxsLTAuNy4wL2dsaWI6IGV4dGNvbmYucm J+DQo=
--=-NzpoVlw3Uz/6Qg4yntVv--
--=-a7i3wZoFJmxzPmKVpIYT
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: This is a digitally signed message part
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)
iD8DBQA/W2ybtP09exA3hooRAgBKAKCLJKMR1vTdvQBEqc6/Z3iBw8tVxwCaAxMd
+lVAzA3xJE73OIgAQSgIDeA=
=uzB0
-----END PGP SIGNATURE-----
0
--=-a7i3wZoFJmxzPmKVpIYT--
Aredridel Guest
-
Masao Mutoh #5
Re: [ANN] Ruby-GNOME2-0.7.0
Hi,
On Mon, 8 Sep 2003 02:37:02 +0900
Aredridel <aredridel@nbtsc.org> wrote:
Thanks for reporting.> On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:>> > Hi,
> >
> > Ruby-GNOME2-0.7.0 is now available. Enjoy!
> Here's the patch it took to build for me:
But it seems strange.
What's your environment?
#OS, GLib/GTK+ version, ruby version
And I want to know pkg-config result as follows:
$ pkg-config --version
$ pkg-config --libs gobject-2.0
--
.:% Masao Mutoh<mutoh@highway.ne.jp>
Masao Mutoh Guest
-
Aredridel #6
Re: [ANN] Ruby-GNOME2-0.7.0
--=-N9T7FVnU1pIeyfOB9ovg
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
On Mon, 2003-09-08 at 05:50, Masao Mutoh wrote:Linux, glib2-2.2.3, gtk+2-2.2.4, Ruby 1.8.0> Hi,
>=20
> On Mon, 8 Sep 2003 02:37:02 +0900
> Aredridel <aredridel@nbtsc.org> wrote:
>=20>=20> > On Sun, 2003-09-07 at 07:44, Masao Mutoh wrote:> >=20> > > Hi,
> > >=20
> > > Ruby-GNOME2-0.7.0 is now available. Enjoy!
> > Here's the patch it took to build for me:
> Thanks for reporting.
>=20
> But it seems strange.
>=20
> What's your environment?
> #OS, GLib/GTK+ version, ruby version
aredridel@mizar:~% pkg-config --version> And I want to know pkg-config result as follows:
>=20
> $ pkg-config --version
> $ pkg-config --libs gobject-2.0
0.15.0
aredridel@mizar:~% pkg-config --libs gobject-2.0
-lgobject-2.0 -lglib-2.0
aredridel@mizar:~%
--=-N9T7FVnU1pIeyfOB9ovg
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: This is a digitally signed message part
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.3 (GNU/Linux)
iD8DBQA/XSeKtP09exA3hooRApFqAJ4h04Qh1TN8w6uTipPq+J+BydP+iQ CgkB3j
WxTZPfvusUxOF6Yf4U30jYU=
=z4MO
-----END PGP SIGNATURE-----
0
--=-N9T7FVnU1pIeyfOB9ovg--
Aredridel Guest



Reply With Quote

