|
Several changes are involved since they are all interrelated. These
changes affect about 1000 files.
The first major change is rewriting bsd.builtin.mk as well as all of
the builtin.mk files to follow the new example in bsd.builtin.mk.
The loop to include all of the builtin.mk files needed by the package
is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk
is now included by each of the individual builtin.mk files and provides
some common logic for all of the builtin.mk files. Currently, this
includes the computation for whether the native or pkgsrc version of
the package is preferred. This causes USE_BUILTIN.* to be correctly
set when one builtin.mk file includes another.
The second major change is teach the builtin.mk files to consider
files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most
of the builtin.mk files test for the presence of built-in software by
checking for the existence of certain files, e.g. <pthread.h>, and we
now assume that if that file is under ${LOCALBASE}, then it must be
from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The
exceptions to this new check are the X11 distribution packages, which
are handled specially as noted below.
The third major change is providing builtin.mk and version.mk files
for each of the X11 distribution packages in pkgsrc. The builtin.mk
file can detect whether the native X11 distribution is the same as
the one provided by pkgsrc, and the version.mk file computes the
version of the X11 distribution package, whether it's built-in or not.
The fourth major change is that the buildlink3.mk files for X11 packages
that install parts which are part of X11 distribution packages, e.g.
Xpm, Xcursor, etc., now use imake to query the X11 distribution for
whether the software is already provided by the X11 distribution.
This is more accurate than grepping for a symbol name in the imake
config files. Using imake required sprinkling various builtin-imake.mk
helper files into pkgsrc directories. These files are used as input
to imake since imake can't use stdin for that purpose.
The fifth major change is in how packages note that they use X11.
Instead of setting USE_X11, package Makefiles should now include
x11.buildlink3.mk instead. This causes the X11 package buildlink3
and builtin logic to be executed at the correct place for buildlink3.mk
and builtin.mk files that previously set USE_X11, and fixes packages
that relied on buildlink3.mk files to implicitly note that X11 is
needed. Package buildlink3.mk should also include x11.buildlink3.mk
when linking against the package libraries requires also linking
against the X11 libraries. Where it was obvious, redundant inclusions
of x11.buildlink3.mk have been removed.
|
|
Update ruby-gtk to 0.23 to 0.25, quoted from ChangeLog:
Thu May 24 06:31:44 2001 kadu <kadu3@m16.alpha-net.ne.jp>
* doc/rbbr.rb: attach a document viewer with refe, ri.
Tue May 22 06:22:53 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgtkitemfactory.h: define a missing constant of
Gtk::ItemFactory.
Tue May 22 06:19:26 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdk.c, src/rbgdkconst.c: define values of type GdkFunction.
Sun May 20 23:02:17 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdk.c: Gdk::GC#set_dashes takes an Array argument instead of
String.
Mon May 7 00:47:49 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdkcolor.c: Gdk::Colormap#colors returns the proper value.
Sun Apr 22 17:39:21 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdk.c: define methods of Gdk::Image.
Sun Apr 15 19:37:42 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdkcolor.c: Gdk::Colormap#alloc_color returns
the pixel value now.
Mon Apr 9 05:27:24 2001 MUTOH Masao <mutoh@highway.ne.jp>
* src/rbgdkcolor.c: define Gdk::Colormap#colors, Gdk::Color#pixel.
Fri Mar 30 23:17:26 2001 Masahiro Sakai <zvm01052@nifty.ne.jp>
* src/rbgtk.c (rbgtk_register_class): manage mappnig GtkType
to ruby class object.
* src/rbgtk.c (get_gtk_type): support additional registered classes.
* src/rbgtk.c (rbgtk_lookup_class_by_gtype): implemented newly.
Wed Mar 28 06:54:25 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.c (rbgtk_lookup_class): check whether the instance
variable is defined.
Sat Mar 3 08:10:54 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.h init.c rbgdk.c rbgtk.c rbgtkmain.c:
raise exception when FATAL/ERROR logs are emitted from GDK/GTK.
Fri Feb 16 18:48:50 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* version 0.24 released.
Fri Jan 19 20:49:49 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: fix dependencies for rbgdk.o, rbgdkconst.o.
Sat Jan 13 01:47:59 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.h: declaration for function notimplemented() is disused
and causes compile errors now.
Fri Jan 12 05:40:23 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdk.c: define Gdk.screen_{width,height}.
* src/rbgdkwindow.c: define Gdk::Window#set_override_redirect.
* src/rbgtk.c (gallocation_to_a, grequisition_to_a):
lack of use INT2FIX().
* src/rbgtkwidget.c: Gtk::Widget#size_request should return
Gtk::Requisition instead of to taking it as argument.
* src/rbgtkwidget.c: define Gtk::Widget#set_app_paintable.
Fri Jan 12 01:35:45 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* doc/rbbr.rb: new simple class browser.
Thu Jan 11 19:32:44 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdkwindow.c: fix Gdk::Window#get_geometry (accessed
not-allocated memory area).
Wed Jan 10 17:40:46 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkitemfactory.c: add new file.
* src/global.h, src/rbgtk.h, src/rbgtk.c, src/rbgtkobject.c:
add stuff about Gtk::ItemFactory.
Wed Jan 10 17:08:21 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtktoolbar.c: Gtk::Toolbar#{append,prepend,insert}_item
should return a item created newly in the toolbar.
Wed Jan 10 01:20:44 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkclist.c: add missing methods in Gtk::CList.
Wed Jan 10 00:16:06 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkctree.c:
fixed Gtk::CTree#set_indent to call a correct function.
Wed Jan 10 00:09:59 2001 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkclist.c, rbgtkctree.c, src/rbgtkfilesel.c:
fixed to use them.
* src/rbgtk.h, src/rbgtk.c:
added functions to manage class info.
Sun Oct 22 20:18:25 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkmain.c (exec_interval): proc was called twice.
Mon Oct 9 13:42:34 2000 MOROHOSHI Akihiko <moro@remus.dti.ne.jp>
* src/rbgtkclist.c (clist_marker_mark): improve GC marking.
* src/rbgtkctree.c (ctree_marker_mark, ctree_node_mark_recursive):
ditto.
Fri Sep 22 19:30:58 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: raise an exception if gdkcursors.h or gdkkeysyms.h
are not found.
Tue Sep 5 06:28:00 2000 Minero Aoki <aamine@dp.u-netsurf.ne.jp>
* src/rbgtkitem.c:
Gtk::TreeItem#subtree, subtree=, expanded?, leaf?
* src/rbgtk.c:
gtk_object_list is a st_table.
* src/global.h:
now gtk_object_list is not extern.
* src/rbgtkctree.c:
uses get_value_from_gobject() instead of make_ctree_node().
checkes type of CTreeNode.
define Gtk::CTree#[]
Tue Sep 5 05:55:56 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdkwindow.c: define Gdk::Window#{show,hide}.
Tue Sep 5 05:25:22 2000 Yasushi Shoji <yashi@yashi.com>
* src/rbgdk.c, src/rbgdkconst.c, src/rbgdkwindow.c, src/rbgtk.h,
src/rbgtkwindow.c: define Gdk::Geometry and
Gtk::Window#set_geometry_hints ([ruby-ext:01055]).
Tue Sep 5 04:54:55 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkfilesel.c:
define Gtk::FileSelection#{dir_list,file_list}.
Sat Sep 2 19:06:04 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdkevent.c: should map gdouble to Float on returning value.
Sat Sep 2 05:50:23 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkmain.c (gtk_m_events_pending, gtk_m_main_iteration):
Gtk.events_pending, Gtk.main_iteration should return true/false.
* src/rbgtkmain.c (gtk_m_get_current_event):
define Gtk.get_current_event.
Sun Jun 25 10:39:50 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdkcolor.c (gdkcolor_to_a, Init_gtk_gdk_color):
define Gdk::Color#to_a giving array [red, green ,blue].
Tue Jun 20 00:33:28 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: define distclean target in topdir Makefile.
Wed Jun 07 16:28:16 2000 Masaki Fukushima <fukusima@goto.info.waseda.ac.jp>
* src/rbgtk.c: use g_main_set_poll_func() and rb_thread_select()
to improve the response. This is applied only for ruby 1.5.4 and later.
Mon Jun 05 16:13:05 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: support target `site-install'.
Sat May 13 15:26:02 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.c (Init_gtk_gtk): restore calling Init_gtk_accel_group().
Thu May 11 13:30:25 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgdkcolor.c: define the missing methods in Gdk::Color.
Sun May 07 12:53:37 2000 Hiroyuki ARAKI <hiro@zob.ne.jp>
* src/rbgdkpixmap.c:
define Gdk::Pixmap#colormap_create_from_xpm(?:_d)?.
Sun May 07 11:59:25 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* doc/gtkbrows.rb: do not refer GdkImlib.
Sat May 06 22:27:19 2000 Hiroyuki ARAKI <hiro@zob.ne.jp>
* src/rbgdk.c: define some missing methods in Gdk::Font.
Sat Apr 22 19:26:25 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/init.c (Init_gtk): call Init_gtk_xxx() after calling gtk_init().
Sat Apr 22 19:10:34 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* sample/testgtk/testgtk.rb: display version of Ruby/GTK.
Thu Mar 30 22:53:41 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkpaned.c (paned_child1, paned_child2):
use get_value_from_gobject to return correct objects.
Thu Mar 30 22:46:47 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkconst.c, src/rbgtkclist.c (clist_row_is_visible):
change correspondence between C and Ruby in type GtkVisibility.
Thu Mar 30 22:39:36 2000 Yasushi Shoji <yashi@yashi.com>
* src/rbgtkwindow.c: define Gtk::Window#set_transient_for
Thu Mar 30 22:18:08 2000 WATANABE Hirofumi <watanabe@ase.ptg.sony.co.jp>
* gtk-config.cygwin: gtk-config for cygwin.
Thu Mar 30 21:53:37 2000 WATANABE Hirofumi <watanabe@ase.ptg.sony.co.jp>
* extconf.rb, src/rbgtk.c, src/rbgtk.h: modify to support cygwin.
Thu Mar 30 21:17:43 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtkwindow.c, src/rbgtkstyle.c, src/rbgtktable.c,
src/rbgtktext.c, src/rbgtktogglebutton.c, src/rbgtktoolbar.c,
src/rbgtktree.c, src/rbgtkvbox.c, src/rbgtkwidget.c, src/rbgtkpaned.c,
src/rbgtkpreview.c, src/rbgtkprogress.c, src/rbgtkscale.c,
src/rbgtkspinbutton.c, src/rbgtkeditable.c, src/rbgtkentry.c,
src/rbgtkhbox.c, src/rbgtklabel.c, src/rbgtkmain.c,
src/rbgtknotebook.c, src/rbgtkclist.c, src/rbgtkcolorsel.c,
src/rbgtkcombo.c, src/rbgtkctree.c, src/rbgdkcolor.c,
src/rbgdkdraw.c, src/rbgdkwindow.c, src/rbgtkaspectframe.c,
src/rbgtkbox.c, src/rbgtkcheckmenuitem.c:
replace `RTEST' with `RGTEST'.
Thu Mar 30 21:15:00 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.h: define a macro `RGTEST' returning gboolean value.
Thu Mar 30 20:50:46 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/global.h: declare Init_gtk_style().
Thu Mar 30 20:49:01 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.c (Init_gtk_gtk): call Init_gtk_style().
Thu Mar 30 20:01:17 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/init.c: move declarations of Init_gtk_xxx to `global.h'.
Thu Mar 30 19:59:42 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/global.h: declare functions Init_gtk_xxx.
Thu Mar 30 18:52:49 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: fix typos.
Thu Mar 30 18:50:39 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* extconf.rb: add `rbgtk.h' to dependency.
Thu Mar 30 18:48:26 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/global.h: this file contains private objects for ruby-gtk.
Thu Mar 30 18:47:03 2000 Hiroshi IGARASHI <iga@ruby-lang.org>
* src/rbgtk.h: create a header file for public objects.
Wed Mar 29 20:07:41 2000 Hiroshi IGARASHI <igarashi@ueda.info.waseda.ac.jp>
* src/*.c: split files per class.
Wed Mar 29 20:02:47 2000 Hiroshi IGARASHI <igarashi@ueda.info.waseda.ac.jp>
* src/rbgdkimlib.c: gdkimlib is separated to other module.
Mon Mar 27 18:23:42 2000 Hiroshi IGARASHI <igarashi@ueda.info.waseda.ac.jp>
* sample/testgtk/statusbar.rb, sample/testgtk/clist.rb,
sample/testgtk/ctree.rb:
avoid syntax error.
Tue Feb 22 21:17:51 2000 YASUI Kentarow <kenyasui@alles.or.jp>
* src/rbgtkclist.c:
define method row_is_visible and modify moveto in class Gtk::CList.
|