diff options
author | obache <obache@pkgsrc.org> | 2008-09-17 00:21:48 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-09-17 00:21:48 +0000 |
commit | 1f8504ee8481df6a289ae54913e765744406e90f (patch) | |
tree | 24fe136e4ffd280b7c41acc7a744a9bd50514b51 /www | |
parent | f80cb815eedd480226b99c91e48e62a4a8f28979 (diff) | |
download | pkgsrc-1f8504ee8481df6a289ae54913e765744406e90f.tar.gz |
Update ruby-gnome2 to 0.17.0 release.
pkgsrc changes:
* Add some additional modules:
devel/ruby-gnome2-bonobo
devel/ruby-gnome2-bonoboui
devel/ruby-gnome2-gconf
devel/ruby-gnome2-libglade
graphics/ruby-gnome2-gtkglext
multimedia/ruby-gnome2-gstreamer
print/ruby-gnome2-gnomeprintui
sysutils/ruby-gnome2-gnomevfs
www/ruby-gnome2-gtkhtml2
www/ruby-gnome2-gtkmozembed
x11/ruby-gnome2-gtksourceview
x11/ruby-gnome2-vte
* Fixed detection of rcairo. It had been broken since switched to gem.
patch-a{c,h,i,j,k,l.m}
(It Already in upstream trunk)
* Add patches for allow to load gem rcairo.
patch-a{n,o,p}
* Fixed overwritten glib module when installing modules require generated
header of glib module.
Modify to install the header as part of glib module and use bl3.mk.
* clean up dependency
* Add test target for modules having unit test.
* Modified patch-a{a,b,d,f,g} to acceptable by upstream.
Ruby-GNOME2-0.17.0 (2008-09-07)
Release notes:
* This Release supports Ruby 1.8.7 and has many bug fixes and
new bound functions.
Main changes:
* Ruby/GLib:
- [#2060606] Crash when removing ruby applet from gnome panel with 0.7rc1
[Kouhei Sutou]
* Ruby/GTK:
- [#2025651] FTBFS with gtk+ 2.13.5 [Cesare Tirabassi, Kouhei Sutou]
- [#2043970] Segfaults on 64-bit Linux [Neil Roberts, Kouhei Sutou]
* Ruby/Pango:
- [#2043970] Pango::FontDescription#weight= seg fault [Kouhei Sutou]
* Many other changes, GC bugs, Segfault fixes. See corresponding ChangeLog
for detailed information on changes and contributors.
Special thanks for your contributions to: (list in no particular order)
- Neil Roberts
- Cesare Tirabassi
- Arnaud Cornet
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 4 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkhtml2/DESCR | 5 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkhtml2/Makefile | 18 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkhtml2/PLIST | 3 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkmozembed/DESCR | 6 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkmozembed/Makefile | 24 | ||||
-rw-r--r-- | www/ruby-gnome2-gtkmozembed/PLIST | 3 |
7 files changed, 62 insertions, 1 deletions
diff --git a/www/Makefile b/www/Makefile index 97a5b5e24a2..1f64d5d60c1 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.583 2008/09/16 15:32:24 seb Exp $ +# $NetBSD: Makefile,v 1.584 2008/09/17 00:21:48 obache Exp $ # COMMENT= Packages related to the World Wide Web @@ -416,6 +416,8 @@ SUBDIR+= ruby-borges SUBDIR+= ruby-clearsilver SUBDIR+= ruby-cssmin SUBDIR+= ruby-fcgi +SUBDIR+= ruby-gnome2-gtkhtml2 +SUBDIR+= ruby-gnome2-gtkmozembed SUBDIR+= ruby-htmlsplit SUBDIR+= ruby-jsmin SUBDIR+= ruby-mechanize diff --git a/www/ruby-gnome2-gtkhtml2/DESCR b/www/ruby-gnome2-gtkhtml2/DESCR new file mode 100644 index 00000000000..fc4812ca61c --- /dev/null +++ b/www/ruby-gnome2-gtkhtml2/DESCR @@ -0,0 +1,5 @@ +Ruby-GNOME 2 is a set of Ruby language bindings for the various +application development libraries included with the GNOME/GTK+ +environment. + +Ruby/GtkHtml2 is a Ruby binding of GtkHtml2. diff --git a/www/ruby-gnome2-gtkhtml2/Makefile b/www/ruby-gnome2-gtkhtml2/Makefile new file mode 100644 index 00000000000..9fc8ed519ed --- /dev/null +++ b/www/ruby-gnome2-gtkhtml2/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2008/09/17 00:21:50 obache Exp $ +# + +PKGNAME= ${RUBY_PKGPREFIX}-gnome2-gtkhtml2-${VERSION} +COMMENT= Ruby binding of gtkhtml2 +CATEGORIES= www + +PKG_DESTDIR_SUPPORT= user-destdir + +RUBY_EXTCONF_SUBDIRS= gtkhtml2 + +DEPENDS+= ${RUBY_PKGPREFIX}-gnome2-gtk>=${VERSION}:../../x11/ruby-gnome2-gtk +USE_TOOLS+= pkg-config + +BUILDLINK_DEPMETHOD.ruby-gnome2-glib= build +.include "../../devel/ruby-gnome2-glib/buildlink3.mk" +.include "../../www/libgtkhtml/buildlink3.mk" +.include "../../meta-pkgs/ruby-gnome2/Makefile.common" diff --git a/www/ruby-gnome2-gtkhtml2/PLIST b/www/ruby-gnome2-gtkhtml2/PLIST new file mode 100644 index 00000000000..906b0bb10a2 --- /dev/null +++ b/www/ruby-gnome2-gtkhtml2/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2008/09/17 00:21:50 obache Exp $ +${RUBY_VENDORLIB}/gtkhtml2.rb +${RUBY_VENDORARCHLIB}/gtkhtml2.${RUBY_DLEXT} diff --git a/www/ruby-gnome2-gtkmozembed/DESCR b/www/ruby-gnome2-gtkmozembed/DESCR new file mode 100644 index 00000000000..a8f5f3056fb --- /dev/null +++ b/www/ruby-gnome2-gtkmozembed/DESCR @@ -0,0 +1,6 @@ +Ruby-GNOME 2 is a set of Ruby language bindings for the various +application development libraries included with the GNOME/GTK+ +environment. + +Ruby/GtkHtml2 is a Ruby binding of GtkMozEmbeded a widget embedding a +Mozilla Gecko renderer. diff --git a/www/ruby-gnome2-gtkmozembed/Makefile b/www/ruby-gnome2-gtkmozembed/Makefile new file mode 100644 index 00000000000..8666746202e --- /dev/null +++ b/www/ruby-gnome2-gtkmozembed/Makefile @@ -0,0 +1,24 @@ +# $NetBSD: Makefile,v 1.1 2008/09/17 00:21:50 obache Exp $ +# + +PKGNAME= ${RUBY_PKGPREFIX}-gnome2-gtkmozembed-${VERSION} +COMMENT= Ruby binding of gtkmozembed +CATEGORIES= www + +PKG_DESTDIR_SUPPORT= user-destdir + +RUBY_EXTCONF_SUBDIRS= gtkmozembed + +DEPENDS+= ${RUBY_PKGPREFIX}-gnome2-gtk>=${VERSION}:../../x11/ruby-gnome2-gtk +USE_TOOLS+= pkg-config + +PKG_OPTIONS_VAR= PKG_OPTIONS.ruby-gnome2-gtkmozembed +.include "../../www/seamonkey/gecko-options.mk" +.include "../../mk/bsd.options.mk" + +BUILDLINK_DEPMETHOD.ruby-gnome2-glib= build +.include "../../devel/ruby-gnome2-glib/buildlink3.mk" +.include "../../devel/ruby-gnome2-pango/buildlink3.mk" +.include "../../x11/gtk2/buildlink3.mk" +.include "../../www/seamonkey/gecko-depends.mk" +.include "../../meta-pkgs/ruby-gnome2/Makefile.common" diff --git a/www/ruby-gnome2-gtkmozembed/PLIST b/www/ruby-gnome2-gtkmozembed/PLIST new file mode 100644 index 00000000000..3a0dcebd5fa --- /dev/null +++ b/www/ruby-gnome2-gtkmozembed/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1 2008/09/17 00:21:50 obache Exp $ +${RUBY_VENDORLIB}/gtkmozembed.rb +${RUBY_VENDORARCHLIB}/gtkmozembed.${RUBY_DLEXT} |