Commit graph

24 commits

Author SHA1 Message Date
wiz
c2ed57f5ee wildcarded esound dependencies 2000-02-06 03:34:48 +00:00
hubertf
3bbeeaa440 be consistent on which version to wildcard 2000-01-10 19:11:07 +00:00
wiz
cd058adf3e move comment to silence pkglint 2000-01-08 04:03:59 +00:00
abs
df05aef71f Strip trailing '.', and/or leading '(a|an) ' 2000-01-05 15:37:50 +00:00
rh
a3d022188b Update libglade to 0.11
Changes include:
    - remove patches/patch-aa thanks to LTCONFIG_OVERRIDE

 * libglade-0.11: 5-December-1999
    - fixed some more problems that would cause segfaults on some errors.
    - added support for GtkCalendar and GtkInputDialog.
    - added assertions to some functions to try to pick up more runtime
      errors.

 * libglade-0.9:  20-November-1999
    - don't crash when creating a GtkPixmap widget if the pixmap file
      couldn't be found, or the pixmap file was corrupt.
    - fixed bug with setting the window policy.  If you were using
      libglade-0.8 and found you could not resize windows correctly, then
      this bug should now be fixed.

 * libglade-0.8:  16-November-1999
    - fixed mem leak in the GtkLabel and GtkAccelLabel creation routines.
      Also recognise the wrap property of these widgets.
    - fixed the code for removing placeholders in the tree, so it actually
      works.
    - fixed the i18n stuff so it doesn't translate empty strings.
    - take notice of more of the settings on GnomeDruidPageStandard's.
    - don't depend on internal libxml structures.  This means that libxml
      1.7.2 or greater is required, but libglade will be less likely to
      break if Daniel changes the internal structures.
    - fixed recognition of GNOME_STOCK_PIXMAP_EXIT.
    - some justification fixes for some menu items.
    - correctly name GnomeDockItems
    - be more consistent with setting the properties of toplevel windows.
      Also added support for the modal and default_width/default_height
      properties.
    - test-libglade.c is now dual licenced under GPL and X style licence.
      This clears up any problems with creating a non GPL/LGPL'd
      application using test-libglade as a starting point.
2000-01-01 13:36:43 +00:00
rh
11de59120d defuzz 1999-11-15 18:47:56 +00:00
tron
53eaff9455 Remove "BROKEN" after dependence problem has been kludged. 1999-10-29 07:53:03 +00:00
agc
2fae251696 Annotate the esound pre-requisite. 1999-10-28 10:24:10 +00:00
agc
6acac8b70f For the third time, add a dependency on esound, so that this package will
link properly.
1999-10-28 10:22:28 +00:00
agc
606e5ab825 Mark packages as broken, where necessary. 1999-10-27 17:14:01 +00:00
tron
117100c50c "esound" package is already required by "gnome-libs" package. So move the
dependence there.
1999-10-27 11:05:19 +00:00
tron
8e90d81d05 Use wildcard dependences for "gnome-libs" and "gnome-core" packages. 1999-10-23 11:08:54 +00:00
hubertf
8d797fe4db it seems this wants to link against libesd - add dependency 1999-10-22 15:48:46 +00:00
jlam
d27abc9f7c * Remove unnecessary dependencies on mawk and esound.
* Add dependency on gettext (uses libintl.a)
* Remove unneeded declaration of LDFLAGS
1999-10-10 18:24:43 +00:00
rh
ecb0fec305 Update libglade to 0.7
Notable changes include:
        - Fixed a bug where libglade would seg fault when you tried to load
          a file that did not exist or was not a valid XML file.  This bug
          was found by Michael Meeks.
        - Fixed segfault when adding normal buttons to a GnomeDialog's
          action area.  This fixes bug #2323.
        - libglade now honours the has_focus and has_default flags for
          widgets.
        - The correct default for can_focus (false) is now used.  This
          was found by Miguel.  It should prevent the segfaults caused by
          infinite recursion some people were seeing.
        - Placeholders are removed from the interface as it gets parsed.
          The warnings were not really very useful, and there are times
          when you want to leave some spaces blank (such as in tables).
        - Fixed bug with setting accelerators that have no modifiers.  This
          one was found by Paul Clifford.
1999-10-10 15:28:00 +00:00
rh
269a46c528 Update libglade to 0.5
Changes include:
        * glade/glade-gnome.c (propbox_build_children): added similar
        behaviour here.

        * glade/glade-gtk.c (notebook_build_children): added underline
        accelerator support for notebook tabs.  You can switch between
        pages of the notebook by using the underline accelerator on the
        page's tab.

        * glade/glade-gnome.c (button_build_children): same function here
        for gnome support.

        * glade/glade-gtk.c (button_build_children): new function for
        building button children.  It also adds an accelerator for the
        clicked signal if appropriate.

        * glade/glade-xml.c (glade_xml_set_common_params): check to see if
        any label underline accelerators have to be attached.

        * glade/glade-private.h (GladeXMLPrivate): added new fields for
        label underline accelerators.

        * glade/glade-build.h: added prototypes for the new functions.

        * glade/glade-xml.c (glade_xml_handle_label_accel): handle label
        underline accelerators.
        (glade_xml_get_parent_accel): routine for getting underline
        accelerators directed at the parent widget.

        * glade/glade-gtk.c (label_new): extract the underline accelerator
        from the label.

        * glade/glade-gnome.c (propbox_new): set up the property box to use
        a new accel group.

        * glade/glade-xml.c (glade_get_adjustment): accept the adjustment
        element names from glade 0.5.2 and pre 0.5.2.

        * glade/glade-xml.c (glade_xml_new_from_memory): added new function
        to create a GladeXML object from a in memory buffer.

        * po/POTFILES.in: removed all the entries someone added here to
        discourage people from translating this module.  None of the installed
        components need translation.

        * glade/glade-sax.c (my_xmlSAXParseMemory):
        * glade/glade-sax.c (glade_widget_tree_parse_memory): added an function
        to create a GladeWidgetTree from a string.

        * glade/glade-gtk.c (layout_new): added support for GtkLayout.

        * glade/glade-gnome.c (iconlist_new): added support for GnomeIconList.
        (iconsel_new): support for GnomeIconSelection.
        (druid*): added support for GnomeDruid, GnomeDruidPageStart,
        GnomeDruidPageFinish, GnomeDruidPageStandard.
        (pixmap_new): added support for GnomePixmap.
        (propbox_new): added support for GnomePropertyBox.

        * glade/glade-build.h: changed declaration of GladeWidgetBuildData
        structure so it does not cause problems for newer gtk-doc's.

        * doc/Makefile.am (scan): fixed up target so that libtool works
        correctly even if it does not recognise the C compiler name (there
        were problems with CC=egcs).

        * glade/glade-xml.c: save a reference to the GladeWidgetTree
        structure, and unref it when the GladeXML structure is destroyed.
        This is so it does not get destroyed if it gets purged from the
        cache.

        * glade/glade-private.h: added the GladeWidgetTree to the private
        structure.

        * glade/glade-tree.c (glade_tree_get): check mtime on file to see
        if tree needs to be read in again.

        * glade/glade-sax.c: added implementations of reference counting
        routines, and save modification time of the file in the structure.

        * glade/glade-widget-tree.h: added an mtime field to GladeWidgetTree
        and added reference counting.

        * po/da.po: added danish file
1999-09-08 16:10:24 +00:00
tron
6cac75938e Remove obsolete "@dirrm" for "share/gnome/html/libglade". 1999-09-06 21:05:52 +00:00
rh
7701bf4e50 Fix missing dependency on "esound-0.2.8" as pointed out in private mail by
hubertf, thx!
1999-09-06 20:29:24 +00:00
rh
6cfdcecda9 Update dependency on libxml to version 1.6.1 1999-09-03 07:20:34 +00:00
rh
0213afdc72 Update dependency on gnome-libs-1.0.14 1999-08-29 12:48:23 +00:00
tron
c4bd9495e1 Use standard GNOME master site list. 1999-08-27 20:50:50 +00:00
rh
bb1e450193 Update libglade to version 0.4
Changes include:
 - Use gdk_keyval_by_name instead of a local hash table for looking
   up key values for accelerators.  This removes a big hash table
   from libglade's overhead.
 - Radio buttons groups are really fixed this time.
 - Table column spacing is correctly interpreted now.
 - Support for the GtkPacker widget has been added.
 - Changed over to a SAX based XML parser.  This cuts down on memory
   usage and increases speed a bit for the parser.  It also reduces
   the number of malloc's and frees.
 - Better handling of accelerator keys, including underline accelerators
   for menu items and buttons.
 - Miscelaneous bug fixes.
1999-08-27 14:31:02 +00:00
tron
16fb6f8e8d Install the documentation in "share/doc/libglade" and remove the include
file directory on deinstallation.
1999-08-01 19:43:34 +00:00
rh
7998e39481 Initial import of libglade-0.2, a runtime interpreter for GLADE gui files
for GNOME.
1999-07-31 19:06:08 +00:00