diff options
author | rh <rh@pkgsrc.org> | 2003-01-09 10:48:19 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2003-01-09 10:48:19 +0000 |
commit | 7b3ce48a42557f0d8f1ba69590f29619b8047665 (patch) | |
tree | 5c485f0a7d642d6099d45a5799d0c02ce8297c65 /devel/gal | |
parent | e4d5272bd4d6d9eec3e8e9b5f48bbec58661f4ac (diff) | |
download | pkgsrc-7b3ce48a42557f0d8f1ba69590f29619b8047665.tar.gz |
Update gal to 0.22. Changes include:
* gal/util/e-util.c (g_str_compare): Revert back to using just
strcmp - this fixes bug #33933 but reopens bug #26355.
(g_collate_compare): New function meant to address the sorting
required by bug #26335.
* gal/widgets/e-canvas-background.c (ecb_destroy): Don't leak
private structure.
* gal/widgets/e-file-selection.c (e_file_selection_get_filenames):
Don't prepend the cwd to absolute paths.
* gal/widgets/e-font.c (e_font_normalize_punctuation): helper
fuction to do a (custom) normalization of unicode chars.
(e_font_to_native) use e_font_normalize_punctuation to convert
punctuation that is not in the current charset.
[ Fixes evolution bug #26355 ]
* gal/util/e-util.c (g_str_compare): use g_utf8_collate here
instead of strcmp.
* gal/e-text/Makefile.am (e_completion_test_LDADD): reorder so
that util comes before unicode.
* gal/widgets/e-unicode.c (e_utf8_from_gtk_string_sized): Don't
include the byte reserved for the nul in the outleft size.
(e_utf8_from_iconv_string_sized): Same.
(e_utf8_to_iconv_string_sized): Here too, but also make sure we
pad the end of the resulting string with enough nul bytes (4) so
that even multi-byte charsets are terminated correctly.
(e_utf8_to_gtk_string_sized): Again here.
* gal/util/e-iconv.c (C_g_strdown): new helper function, g_strdown
with forced C locale
(e_iconv_init): use C_g_strdown
(e_iconv_charset_name): ditto
* gal/widgets/e-unicode.c: add the gtk2 keypad entries (resync
with gdk).
* gal/widgets/e-font.c (e_font_to_native): rework again to remove
the need for converting nbsp ahead of time.
* gal/widgets/e-option-menu.c (item_destroyed_cb): new function,
free the cb_struct.
(e_option_menu_set_strings_from_array): hook up the destroy signal
to item_destroyed_cb.
* gal/widgets/e-font.c (set_nbsp_zero_width_flag): Updated to the
slightly changed e_font_to_native() API.
(e_font_draw_utf8_text): Same.
(e_font_utf8_text_width): Here too.
(e_font_to_native): Rewritten from scratch.
* gal/util/e-iconv.c: Make locale_charset a char *, not
const char *. Kills a warning in the !HAVE_CODESET case.
(e_iconv_init): No longer need to cast locale_charset to (char *)
while mangling it in the HAVE_CODESET case.
* gal/util/e-xml-utils.c: #include <stdlib.h> for free()
* gal/widgets/e-categories-master-list-array.c: Likewise
* gal/widgets/e-font.c (e_font_draw_utf8_text): set the pointer
not the length to allocation.
* gal/widgets/e-font.c (e_font_draw_utf8_text): limit alloca
length to a E_ALLOCA_MAX.
(e_font_utf8_text_width): limit alloca length to E_ALLOCA_MAX.
* gal/util/e-iconv.c : apply patch for 27447 from Matt Avery for
a bug in the solaris iconv implementation.
* gal/e-text/e-text.c (line_splitter): take a clip_height and use
it to set the maximum number of lines if necessary
(split_into_lines): pass clip_height arg
* gal/widgets/e-selection-model-array.c : kill a return that caused
selection ranges to not emit selection_changed if the end index
only changed by 1.
* gal/e-text/Makefile.am: removed \ before new line to make
automake 1.6 happy
* configure.in: Fix the check for strftime, scan for "l" and "k"
not "%l" and "%k"
* configure.in (CFLAGS): Add -D_REENTRANT cause we need errno
to behave reliably.
* gal/util/e-xml-utils.c (e_xml_save_file): Do slightly better
error handling for close() and loop until it closes successfully.
* gal/util/e-xml-utils.c (e_xml_save_file): Changed to handle
saving to a temp file first, this allows us to remove a lot of
duplicate code from everywhere.
* gal/util/e-xml-utils.c (e_xml_save_file): New convenience
function to save an xmlDocPtr. Replaces xmlSaveFile because
xmlSaveFile isn't dependable.
* gal/widgets/e-font.c (e_font_from_gdk_font_gtkhtml): new
simplified version of e_font_from_gdk_font for GtkHTML library
* gal/widgets/e-reflow.c, gal/widgets/e-reflow.h
(e_reflow_selection_event_real): Made this function handle
GDK_BUTTON_RELEASE. Added a maybe_in_drag variable that the API
user can set to 0 to indicate that a drag has occurred.
* gal/e-text/e-text.c: Added debugging printfs.
(e_text_request_paste): Fixed the order of setting
last_type_request before calling gtk_selection_convert due to a
reentrancy bug.
* gal/e-text/e-text.c, gal/e-text/e-text.h (e_text_style_set):
Reflow and redraw when the style gets set.
* gal/widgets/e-canvas.c (grab_cancelled_check): If grabbed_item
is NULL, cancel the timeout.
* gal/e-text/e-text.c: Switch from gnome_canvas_item_grab to
e_canvas_item_grab.
* gal/widgets/e-canvas.c, gal/widgets/e-canvas.h
(e_canvas_item_grab, e_canvas_item_ungrab): Added these functions.
* gal/widgets/Makefile.am (imagesdir): Change this directory to
include the $(VERSION).
* gal/widgets/e-reflow.c (set_empty): Don't switch from utf8 to
widget encoding, since EText takes utf8.
* gal/e-text/e-text.c (e_text_draw): Make the style here match the
proper widget style to emulate a label or an entry.
Diffstat (limited to 'devel/gal')
-rw-r--r-- | devel/gal/Makefile | 7 | ||||
-rw-r--r-- | devel/gal/PLIST | 270 | ||||
-rw-r--r-- | devel/gal/distinfo | 6 |
3 files changed, 148 insertions, 135 deletions
diff --git a/devel/gal/Makefile b/devel/gal/Makefile index 1adc7ad214b..2adaeed7f53 100644 --- a/devel/gal/Makefile +++ b/devel/gal/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.31 2002/12/24 06:09:52 wiz Exp $ +# $NetBSD: Makefile,v 1.32 2003/01/09 10:48:19 rh Exp $ -DISTNAME= gal-0.19.3 -PKGREVISION= 2 +DISTNAME= gal-0.22 CATEGORIES= gnome devel -MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gal/0.19/} +MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gal/0.22/} EXTRACT_SUFX= .tar.bz2 MAINTAINER= rh@netbsd.org diff --git a/devel/gal/PLIST b/devel/gal/PLIST index a6250b98c27..964b5458958 100644 --- a/devel/gal/PLIST +++ b/devel/gal/PLIST @@ -1,78 +1,22 @@ -@comment $NetBSD: PLIST,v 1.6 2002/08/25 19:22:27 jlam Exp $ -include/gal/util/e-util.h -include/gal/util/e-xml-utils.h -include/gal/util/e-cache.h -include/gal/util/e-i18n.h -include/gal/util/e-bit-array.h -include/gal/util/e-sorter.h -include/gal/util/e-iconv.h -include/gal/util/e-text-event-processor-emacs-like.h -include/gal/util/e-text-event-processor-types.h -include/gal/util/e-text-event-processor.h -include/gal/util/e-unicode-i18n.h -include/gal/widgets/e-canvas-background.h -include/gal/widgets/e-hsv-utils.h -include/gal/widgets/e-selection-model-array.h -include/gal/widgets/e-selection-model-simple.h -include/gal/widgets/e-selection-model.h -include/gal/widgets/color-group.h -include/gal/widgets/color-palette.h -include/gal/widgets/e-canvas-utils.h -include/gal/widgets/e-canvas-vbox.h -include/gal/widgets/e-canvas.h -include/gal/widgets/e-categories.h -include/gal/widgets/e-colors.h -include/gal/widgets/e-cursors.h -include/gal/widgets/e-font.h -include/gal/widgets/e-gui-utils.h -include/gal/widgets/e-hscrollbar.h -include/gal/widgets/e-popup-menu.h -include/gal/widgets/e-printable.h -include/gal/widgets/e-reflow.h -include/gal/widgets/e-scroll-frame.h -include/gal/widgets/e-unicode.h -include/gal/widgets/e-vscrollbar.h -include/gal/widgets/gtk-combo-box.h -include/gal/widgets/gtk-combo-stack.h -include/gal/widgets/gtk-combo-text.h -include/gal/widgets/widget-color-combo.h -include/gal/widgets/widget-pixmap-combo.h -include/gal/e-table/e-cell-combo.h -include/gal/e-table/e-cell-float.h -include/gal/e-table/e-cell-pixbuf.h -include/gal/e-table/e-cell-popup.h -include/gal/e-table/e-cell-spin-button.h -include/gal/e-table/e-table-memory-callbacks.h -include/gal/e-table/e-table-memory.h -include/gal/e-table/e-table-sorting-utils.h -include/gal/e-table/e-table-utils.h -include/gal/e-table/e-tree-memory-callbacks.h -include/gal/e-table/e-tree-memory.h -include/gal/e-table/e-tree-scrolled.h -include/gal/e-table/e-tree-selection-model.h -include/gal/e-table/e-tree-sorted.h -include/gal/e-table/e-tree-table-adapter.h -include/gal/e-table/e-tree.h -include/gal/e-text/e-completion-view.h -include/gal/e-text/e-completion.h -include/gal/e-text/e-table-text-model.h -include/gal/e-text/e-text-model-repos.h -include/gal/e-text/e-entry.h -include/gal/e-text/e-text-model.h -include/gal/e-text/e-text-model-uri.h -include/gal/e-text/e-text.h +@comment $NetBSD: PLIST,v 1.7 2003/01/09 10:48:20 rh Exp $ include/gal/e-paned/e-hpaned.h include/gal/e-paned/e-paned.h include/gal/e-paned/e-vpaned.h -include/gal/e-table/e-cell.h include/gal/e-table/e-cell-checkbox.h +include/gal/e-table/e-cell-combo.h include/gal/e-table/e-cell-date.h +include/gal/e-table/e-cell-float.h include/gal/e-table/e-cell-number.h +include/gal/e-table/e-cell-pixbuf.h +include/gal/e-table/e-cell-popup.h +include/gal/e-table/e-cell-progress.h include/gal/e-table/e-cell-size.h +include/gal/e-table/e-cell-spin-button.h include/gal/e-table/e-cell-text.h include/gal/e-table/e-cell-toggle.h include/gal/e-table/e-cell-tree.h -include/gal/e-table/e-table.h +include/gal/e-table/e-cell-vbox.h +include/gal/e-table/e-cell.h include/gal/e-table/e-table-click-to-add.h include/gal/e-table/e-table-col-dnd.h include/gal/e-table/e-table-col.h @@ -81,38 +25,62 @@ include/gal/e-table/e-table-config.h include/gal/e-table/e-table-defines.h include/gal/e-table/e-table-extras.h include/gal/e-table/e-table-field-chooser-dialog.h -include/gal/e-table/e-table-group.h include/gal/e-table/e-table-field-chooser-item.h include/gal/e-table/e-table-field-chooser.h include/gal/e-table/e-table-group-container.h include/gal/e-table/e-table-group-leaf.h -include/gal/e-table/e-table-header.h +include/gal/e-table/e-table-group.h include/gal/e-table/e-table-header-item.h include/gal/e-table/e-table-header-utils.h +include/gal/e-table/e-table-header.h include/gal/e-table/e-table-item.h +include/gal/e-table/e-table-memory-callbacks.h +include/gal/e-table/e-table-memory-store.h +include/gal/e-table/e-table-memory.h include/gal/e-table/e-table-model.h include/gal/e-table/e-table-one.h include/gal/e-table/e-table-scrolled.h +include/gal/e-table/e-table-search.h include/gal/e-table/e-table-selection-model.h include/gal/e-table/e-table-simple.h include/gal/e-table/e-table-sort-info.h -include/gal/e-table/e-table-sorted.h include/gal/e-table/e-table-sorted-variable.h -include/gal/e-table/e-table-state.h +include/gal/e-table/e-table-sorted.h include/gal/e-table/e-table-sorter.h +include/gal/e-table/e-table-sorting-utils.h include/gal/e-table/e-table-specification.h -include/gal/e-table/e-table-subset.h +include/gal/e-table/e-table-state.h include/gal/e-table/e-table-subset-variable.h -include/gal/e-table/e-tree-model.h +include/gal/e-table/e-table-subset.h include/gal/e-table/e-table-tooltip.h +include/gal/e-table/e-table-utils.h include/gal/e-table/e-table-without.h +include/gal/e-table/e-table.h +include/gal/e-table/e-tree-memory-callbacks.h +include/gal/e-table/e-tree-memory.h +include/gal/e-table/e-tree-model.h +include/gal/e-table/e-tree-scrolled.h +include/gal/e-table/e-tree-selection-model.h +include/gal/e-table/e-tree-sorted.h +include/gal/e-table/e-tree-table-adapter.h +include/gal/e-table/e-tree.h include/gal/e-text/e-completion-match.h +include/gal/e-text/e-completion-view.h +include/gal/e-text/e-completion.h +include/gal/e-text/e-entry.h +include/gal/e-text/e-table-text-model.h +include/gal/e-text/e-text-model-repos.h +include/gal/e-text/e-text-model-uri.h +include/gal/e-text/e-text-model.h +include/gal/e-text/e-text.h include/gal/menus/gal-define-views-dialog.h include/gal/menus/gal-define-views-model.h include/gal/menus/gal-view-collection.h include/gal/menus/gal-view-etable.h include/gal/menus/gal-view-factory-etable.h include/gal/menus/gal-view-factory.h +include/gal/menus/gal-view-instance-save-as-dialog.h +include/gal/menus/gal-view-instance.h include/gal/menus/gal-view-new-dialog.h include/gal/menus/gal-view.h include/gal/shortcut-bar/e-group-bar.h @@ -122,84 +90,130 @@ include/gal/shortcut-bar/e-shortcut-bar.h include/gal/shortcut-bar/e-shortcut-model.h include/gal/shortcut-bar/e-vscrolled-bar.h include/gal/unicode/gunicode.h +include/gal/util/e-bit-array.h +include/gal/util/e-cache.h +include/gal/util/e-i18n.h +include/gal/util/e-iconv.h include/gal/util/e-sorter-array.h +include/gal/util/e-sorter.h +include/gal/util/e-text-event-processor-emacs-like.h +include/gal/util/e-text-event-processor-types.h +include/gal/util/e-text-event-processor.h +include/gal/util/e-unicode-i18n.h +include/gal/util/e-util.h +include/gal/util/e-xml-utils.h +include/gal/widgets/color-group.h +include/gal/widgets/color-palette.h +include/gal/widgets/e-canvas-background.h +include/gal/widgets/e-canvas-utils.h +include/gal/widgets/e-canvas-vbox.h +include/gal/widgets/e-canvas.h include/gal/widgets/e-categories-master-list-array.h include/gal/widgets/e-categories-master-list-combo.h include/gal/widgets/e-categories-master-list-dialog-model.h include/gal/widgets/e-categories-master-list-dialog.h +include/gal/widgets/e-categories-master-list-option-menu.h include/gal/widgets/e-categories-master-list.h +include/gal/widgets/e-categories.h +include/gal/widgets/e-colors.h +include/gal/widgets/e-cursors.h +include/gal/widgets/e-file-selection.h +include/gal/widgets/e-font.h +include/gal/widgets/e-gui-utils.h +include/gal/widgets/e-hscrollbar.h +include/gal/widgets/e-hsv-utils.h +include/gal/widgets/e-option-menu.h +include/gal/widgets/e-popup-menu.h +include/gal/widgets/e-printable.h include/gal/widgets/e-reflow-model.h -lib/libgal.so.19.3 -lib/libgal.so.19 -lib/libgal.so -lib/libgal.la -lib/libgal.a +include/gal/widgets/e-reflow.h +include/gal/widgets/e-scroll-frame.h +include/gal/widgets/e-selection-model-array.h +include/gal/widgets/e-selection-model-simple.h +include/gal/widgets/e-selection-model.h +include/gal/widgets/e-unicode.h +include/gal/widgets/e-vscrollbar.h +include/gal/widgets/gtk-combo-box.h +include/gal/widgets/gtk-combo-stack.h +include/gal/widgets/gtk-combo-text.h +include/gal/widgets/widget-color-combo.h +include/gal/widgets/widget-pixmap-combo.h lib/galConf.sh +lib/libgal.a +lib/libgal.la +lib/libgal.so +lib/libgal.so.22 +lib/libgal.so.22.0 +share/etable/${PKGVERSION}/glade/e-table-config-no-group.glade share/etable/${PKGVERSION}/glade/e-table-config.glade share/etable/${PKGVERSION}/glade/e-table-field-chooser.glade share/etable/${PKGVERSION}/glade/e-table-group.glade -share/etable/${PKGVERSION}/glade/e-table-config-no-group.glade share/gal/${PKGVERSION}/glade/e-categories-master-list-dialog.glade share/gal/${PKGVERSION}/glade/gal-categories.glade share/gal/${PKGVERSION}/glade/gal-define-views.glade +share/gal/${PKGVERSION}/glade/gal-view-instance-save-as-dialog.glade share/gal/${PKGVERSION}/glade/gal-view-new-dialog.glade +share/gal/${PKGVERSION}/pixmaps/categories/category_birthday_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_business_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_favorites_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_gifts_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_goals_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_holiday-cards_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_holiday_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_hot-contacts_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_ideas_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_international_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_key-customer_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_miscellaneous_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_personal_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_phonecalls_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_status_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_strategies_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_suppliers_16.png +share/gal/${PKGVERSION}/pixmaps/categories/category_time-and-expenses_16.png share/gal/html/gal-api.sgml +share/gal/html/gal-decl.txt +share/gal/html/gal-sections.txt share/gal/html/gal.hierarchy share/gal/html/gal.signals share/gal/html/gal.types -share/gal/html/gal-decl.txt -share/gal/html/gal-sections.txt -share/pixmaps/gal/categories/category_birthday_16.png -share/pixmaps/gal/categories/category_business_16.png -share/pixmaps/gal/categories/category_favorites_16.png -share/pixmaps/gal/categories/category_gifts_16.png -share/pixmaps/gal/categories/category_goals_16.png -share/pixmaps/gal/categories/category_holiday-cards_16.png -share/pixmaps/gal/categories/category_holiday_16.png -share/pixmaps/gal/categories/category_hot-contacts_16.png -share/pixmaps/gal/categories/category_ideas_16.png -share/pixmaps/gal/categories/category_international_16.png -share/pixmaps/gal/categories/category_key-customer_16.png -share/pixmaps/gal/categories/category_miscellaneous_16.png -share/pixmaps/gal/categories/category_personal_16.png -share/pixmaps/gal/categories/category_phonecalls_16.png -share/pixmaps/gal/categories/category_status_16.png -share/pixmaps/gal/categories/category_strategies_16.png -share/pixmaps/gal/categories/category_suppliers_16.png -share/pixmaps/gal/categories/category_time-and-expenses_16.png -${PKGLOCALEDIR}/locale/az/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/da/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/en_GB/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/es/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/fi/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/gl/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/it/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ja/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/nn/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/no/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ca/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/de/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/lt/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/pt/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/ta/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/gal.mo -${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/gal.mo -@exec ${MKDIR} -m 0755 %D/share/gal/html/gal -@dirrm share/pixmaps/gal/categories -@dirrm share/pixmaps/gal +${PKGLOCALEDIR}/locale/az/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ca/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/cs/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/da/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/de/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/el/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/en_GB/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/es/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/eu/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/fi/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/fr/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/gl/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/hu/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/it/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ja/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ko/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/lt/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ms/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/nn/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/no/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/pl/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/pt/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/pt_BR/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ro/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ru/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/sk/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/sv/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/ta/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/tr/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/uk/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/zh_CN/LC_MESSAGES/${PKGNAME}.mo +${PKGLOCALEDIR}/locale/zh_TW/LC_MESSAGES/${PKGNAME}.mo +@exec ${MKDIR} %D/share/gal/html/gal @dirrm share/gal/html/gal @dirrm share/gal/html +@dirrm share/gal/${PKGVERSION}/pixmaps/categories +@dirrm share/gal/${PKGVERSION}/pixmaps @dirrm share/gal/${PKGVERSION}/glade @dirrm share/gal/${PKGVERSION} @dirrm share/gal diff --git a/devel/gal/distinfo b/devel/gal/distinfo index 4891ec15bf6..b5962c1d502 100644 --- a/devel/gal/distinfo +++ b/devel/gal/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.14 2002/09/21 10:49:26 jlam Exp $ +$NetBSD: distinfo,v 1.15 2003/01/09 10:48:20 rh Exp $ -SHA1 (gal-0.19.3.tar.bz2) = db4a09f01f5d2d1f3c2c3466988f3c42cc0d2073 -Size (gal-0.19.3.tar.bz2) = 903527 bytes +SHA1 (gal-0.22.tar.bz2) = 55f977203f04400ad6a05a5d3f1123657b2cb5b1 +Size (gal-0.22.tar.bz2) = 1022854 bytes |