Index: head/www/gtkhtml/Makefile =================================================================== --- head/www/gtkhtml/Makefile (revision 51074) +++ head/www/gtkhtml/Makefile (revision 51075) @@ -1,38 +1,38 @@ # New ports collection makefile for: gtkhtml # Date created: 2nd June 2000 # Whom: Ade Lovett # # $FreeBSD$ # PORTNAME= gtkhtml -PORTVERSION= 0.16.1 +PORTVERSION= 1.0.0 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gtkhtml MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ pspell.4:${PORTSDIR}/textproc/pspell \ gal.18:${PORTSDIR}/x11-toolkits/gal \ ghttp.1:${PORTSDIR}/www/libghttp USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOMECTRL= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gconf=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' .include Property changes on: head/www/gtkhtml/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.38 \ No newline at end of property +1.39 \ No newline at end of property Index: head/www/gtkhtml/distinfo =================================================================== --- head/www/gtkhtml/distinfo (revision 51074) +++ head/www/gtkhtml/distinfo (revision 51075) @@ -1 +1 @@ -MD5 (gtkhtml-0.16.1.tar.gz) = da85f8d2f46db669c4b3e8b0eefdd882 +MD5 (gtkhtml-1.0.0.tar.gz) = 19b9d3a9b8f4d1d24a46a2f81984085b Property changes on: head/www/gtkhtml/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/www/gtkhtml/files/patch-src::gtkhtml-properties.c =================================================================== --- head/www/gtkhtml/files/patch-src::gtkhtml-properties.c (revision 51074) +++ head/www/gtkhtml/files/patch-src::gtkhtml-properties.c (nonexistent) @@ -1,125 +0,0 @@ - -$FreeBSD$ - ---- src/gtkhtml-properties.c 2001/11/20 09:55:00 1.1 -+++ src/gtkhtml-properties.c 2001/11/20 09:56:37 -@@ -75,6 +75,59 @@ - g_free (p); - } - -+static gchar * -+get_font_name (const GdkFont * font) -+{ -+ Atom font_atom, atom; -+ Bool status; -+ -+ font_atom = gdk_atom_intern ("FONT", FALSE); -+ -+ if (font->type == GDK_FONT_FONTSET) { -+ XFontStruct **font_structs; -+ gint num_fonts; -+ gchar **font_names; -+ -+ num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -+ status = XGetFontProperty (font_structs[0], font_atom, &atom); -+ } else { -+ status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -+ } -+ -+ if (status) { -+ return gdk_atom_name (atom); -+ } -+ -+ return NULL; -+} -+ -+static void -+get_default_fonts (gchar **var_name, gchar **fix_name) -+{ -+ GtkStyle *style; -+ char *font_name = NULL; -+ -+ style = gtk_widget_get_default_style (); -+ if (style->font) { -+ font_name = get_font_name (style->font); -+ } -+ -+ if (font_name) { -+ gchar *enc1, *enc2; -+ -+ enc1 = html_font_manager_get_attr (font_name, 13); -+ enc2 = html_font_manager_get_attr (font_name, 14); -+ -+ *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ -+ /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -+ } else { -+ *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -+ *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -+ } -+} -+ - #ifdef GTKHTML_HAVE_GCONF - #define GET(t,x,prop,f,c) \ - key = g_strconcat (GTK_HTML_GCONF_DIR, x, NULL); \ -@@ -180,59 +233,6 @@ - #define GETS(v,s) \ - g_free (p->v); \ - GET(string,v,s) -- --static gchar * --get_font_name (const GdkFont * font) --{ -- Atom font_atom, atom; -- Bool status; -- -- font_atom = gdk_atom_intern ("FONT", FALSE); -- -- if (font->type == GDK_FONT_FONTSET) { -- XFontStruct **font_structs; -- gint num_fonts; -- gchar **font_names; -- -- num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -- status = XGetFontProperty (font_structs[0], font_atom, &atom); -- } else { -- status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -- } -- -- if (status) { -- return gdk_atom_name (atom); -- } -- -- return NULL; --} -- --static void --get_default_fonts (gchar **var_name, gchar **fix_name) --{ -- GtkStyle *style; -- char *font_name = NULL; -- -- style = gtk_widget_get_default_style (); -- if (style->font) { -- font_name = get_font_name (style->font); -- } -- -- if (font_name) { -- gchar *enc1, *enc2; -- -- enc1 = html_font_manager_get_attr (font_name, 13); -- enc2 = html_font_manager_get_attr (font_name, 14); -- -- *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- -- /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -- } else { -- *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -- *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -- } --} - - void - gtk_html_class_properties_load (GtkHTMLClassProperties *p) Property changes on: head/www/gtkhtml/files/patch-src::gtkhtml-properties.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/www/gtkhtml/files/patch-aa =================================================================== --- head/www/gtkhtml/files/patch-aa (revision 51074) +++ head/www/gtkhtml/files/patch-aa (revision 51075) @@ -1,11 +1,14 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ + +$FreeBSD$ + +--- Makefile.in.orig Tue Dec 4 17:05:01 2001 ++++ Makefile.in Wed Dec 5 11:05:52 2001 +@@ -151,7 +151,7 @@ @BONOBO_TRUE@DIR_COMPONENTS = components @BONOBO_FALSE@DIR_COMPONENTS = -confexecdir = $(libdir) +confexecdir = $(sysconfdir) confexec_DATA = gtkhtmlConf.sh - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec + SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po Property changes on: head/www/gtkhtml/files/patch-aa ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/www/gtkhtml/pkg-plist =================================================================== --- head/www/gtkhtml/pkg-plist (revision 51074) +++ head/www/gtkhtml/pkg-plist (revision 51075) @@ -1,183 +1,183 @@ bin/ebrowser bin/gnome-gtkhtml-editor bin/gtkhtml-properties-capplet etc/CORBA/servers/html-component.gnorba etc/gtkhtmlConf.sh include/gtkhtml/gtkhtml-compat.h include/gtkhtml/gtkhtml-embedded.h include/gtkhtml/gtkhtml-enums.h include/gtkhtml/gtkhtml-im.h include/gtkhtml/gtkhtml-keybinding.h include/gtkhtml/gtkhtml-private.h include/gtkhtml/gtkhtml-properties.h include/gtkhtml/gtkhtml-search.h include/gtkhtml/gtkhtml-stream.h include/gtkhtml/gtkhtml-types.h include/gtkhtml/gtkhtml.h include/gtkhtml/gtkhtmldebug.h include/gtkhtml/gtkhtmlfontstyle.h include/gtkhtml/htmlanchor.h include/gtkhtml/htmlbutton.h include/gtkhtml/htmlcheckbox.h include/gtkhtml/htmlclue.h include/gtkhtml/htmlcluealigned.h include/gtkhtml/htmlclueflow.h include/gtkhtml/htmlclueh.h include/gtkhtml/htmlcluev.h include/gtkhtml/htmlcolor.h include/gtkhtml/htmlcolorset.h include/gtkhtml/htmlcursor.h include/gtkhtml/htmldrawqueue.h include/gtkhtml/htmlembedded.h include/gtkhtml/htmlengine-edit-clueflowstyle.h include/gtkhtml/htmlengine-edit-cursor.h include/gtkhtml/htmlengine-edit-cut-and-paste.h include/gtkhtml/htmlengine-edit-fontstyle.h include/gtkhtml/htmlengine-edit-images.c include/gtkhtml/htmlengine-edit-images.h include/gtkhtml/htmlengine-edit-movement.h include/gtkhtml/htmlengine-edit-rule.h include/gtkhtml/htmlengine-edit-selection-updater.h include/gtkhtml/htmlengine-edit-table.h include/gtkhtml/htmlengine-edit-tablecell.h include/gtkhtml/htmlengine-edit-text.h include/gtkhtml/htmlengine-edit.h include/gtkhtml/htmlengine-print.h include/gtkhtml/htmlengine-save.h include/gtkhtml/htmlengine-search.h include/gtkhtml/htmlengine.h include/gtkhtml/htmlentity.h include/gtkhtml/htmlenums.h include/gtkhtml/htmlenumutils.h include/gtkhtml/htmlfontmanager.h include/gtkhtml/htmlform.h include/gtkhtml/htmlframe.h include/gtkhtml/htmlframeset.h include/gtkhtml/htmlgdkpainter.h include/gtkhtml/htmlhidden.h include/gtkhtml/htmlhspace.h include/gtkhtml/htmliframe.h include/gtkhtml/htmlimage.h include/gtkhtml/htmlimageinput.h include/gtkhtml/htmlinterval.h include/gtkhtml/htmllinktext.h include/gtkhtml/htmllist.h include/gtkhtml/htmlmap.h include/gtkhtml/htmlobject.h include/gtkhtml/htmlpainter.h include/gtkhtml/htmlplainpainter.h include/gtkhtml/htmlprinter.h include/gtkhtml/htmlradio.h include/gtkhtml/htmlreplace.h include/gtkhtml/htmlrule.h include/gtkhtml/htmlsearch.h include/gtkhtml/htmlselect.h include/gtkhtml/htmlselection.h include/gtkhtml/htmlsettings.h include/gtkhtml/htmlshape.h include/gtkhtml/htmlstack.h include/gtkhtml/htmlstringtokenizer.h include/gtkhtml/htmltable.h include/gtkhtml/htmltablecell.h include/gtkhtml/htmltablepriv.h include/gtkhtml/htmltext.h include/gtkhtml/htmltextarea.h include/gtkhtml/htmltextinput.h include/gtkhtml/htmltextslave.h include/gtkhtml/htmltokenizer.h include/gtkhtml/htmltype.h include/gtkhtml/htmltypes.h include/gtkhtml/htmlundo-action.h include/gtkhtml/htmlundo.h include/gtkhtml/htmlvspace.h lib/bonobo/plugin/libstorage_http.a lib/bonobo/plugin/libstorage_http.so lib/libgtkhtml.a lib/libgtkhtml.so -lib/libgtkhtml.so.19 +lib/libgtkhtml.so.20 share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop share/gnome/control-center/Documents/gtkhtml-properties.desktop share/gnome/control-center/capplets/gtkhtml-properties.desktop share/gnome/gtkhtml/Editor.idl share/gnome/gtkhtml/gtkhtml-capplet.glade share/gnome/gtkhtml/gtkhtml-editor-properties.glade share/gnome/gtkhtml/icons/16_copy.png share/gnome/gtkhtml/icons/16_cut.png share/gnome/gtkhtml/icons/16_paste.png share/gnome/gtkhtml/icons/24_copy.png share/gnome/gtkhtml/icons/24_cut.png share/gnome/gtkhtml/icons/24_paste.png share/gnome/gtkhtml/icons/bulb.png share/gnome/gtkhtml/icons/empty_image.png share/gnome/gtkhtml/icons/flowers.png share/gnome/gtkhtml/icons/html-viewer.png share/gnome/gtkhtml/icons/insert-image-16.png share/gnome/gtkhtml/icons/insert-image-24.png share/gnome/gtkhtml/icons/insert-link-16.png share/gnome/gtkhtml/icons/insert-link-24.png share/gnome/gtkhtml/icons/insert-object-16.png share/gnome/gtkhtml/icons/insert-object-24.png share/gnome/gtkhtml/icons/insert-rule-16.png share/gnome/gtkhtml/icons/insert-rule-24.png share/gnome/gtkhtml/icons/insert-table-16.png share/gnome/gtkhtml/icons/insert-table-24.png share/gnome/gtkhtml/icons/properties-16.png share/gnome/gtkhtml/icons/redo-16.png share/gnome/gtkhtml/icons/redo-24.png share/gnome/gtkhtml/icons/rule-blue-center.png share/gnome/gtkhtml/icons/rule-blue-left.png share/gnome/gtkhtml/icons/rule-blue-right.png share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png share/gnome/gtkhtml/icons/search-16.png share/gnome/gtkhtml/icons/search-24.png share/gnome/gtkhtml/icons/search-and-replace-16.png share/gnome/gtkhtml/icons/search-and-replace-24.png share/gnome/gtkhtml/icons/transparent.png share/gnome/gtkhtml/icons/undo-16.png share/gnome/gtkhtml/icons/undo-24.png share/gnome/gtkhtml/keybindingsrc.emacs share/gnome/gtkhtml/keybindingsrc.ms share/gnome/gtkhtml/keybindingsrc.xemacs share/gnome/html/gtkhtml-decl.txt share/gnome/html/gtkhtml-sections.txt share/gnome/html/gtkhtml.hierarchy share/gnome/html/gtkhtml.sgml share/gnome/html/gtkhtml.types share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf share/gnome/oaf/GNOME_GtkHTML_Editor.oaf share/gnome/ui/GNOME_GtkHTML_Editor.xml share/locale/az/LC_MESSAGES/gtkhtml.mo share/locale/cs/LC_MESSAGES/gtkhtml.mo share/locale/da/LC_MESSAGES/gtkhtml.mo share/locale/de/LC_MESSAGES/gtkhtml.mo share/locale/el/LC_MESSAGES/gtkhtml.mo share/locale/es/LC_MESSAGES/gtkhtml.mo share/locale/fi/LC_MESSAGES/gtkhtml.mo share/locale/fr/LC_MESSAGES/gtkhtml.mo share/locale/gl/LC_MESSAGES/gtkhtml.mo share/locale/hu/LC_MESSAGES/gtkhtml.mo share/locale/it/LC_MESSAGES/gtkhtml.mo share/locale/ja/LC_MESSAGES/gtkhtml.mo share/locale/ko/LC_MESSAGES/gtkhtml.mo share/locale/lt/LC_MESSAGES/gtkhtml.mo share/locale/lv/LC_MESSAGES/gtkhtml.mo share/locale/nl/LC_MESSAGES/gtkhtml.mo share/locale/nn/LC_MESSAGES/gtkhtml.mo share/locale/no/LC_MESSAGES/gtkhtml.mo share/locale/pl/LC_MESSAGES/gtkhtml.mo share/locale/pt/LC_MESSAGES/gtkhtml.mo share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo share/locale/ru/LC_MESSAGES/gtkhtml.mo share/locale/sk/LC_MESSAGES/gtkhtml.mo share/locale/sl/LC_MESSAGES/gtkhtml.mo share/locale/sv/LC_MESSAGES/gtkhtml.mo share/locale/tr/LC_MESSAGES/gtkhtml.mo share/locale/uk/LC_MESSAGES/gtkhtml.mo share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo @dirrm share/gnome/html/gtkhtml @dirrm share/gnome/gtkhtml/icons @dirrm share/gnome/gtkhtml @dirrm include/gtkhtml Property changes on: head/www/gtkhtml/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/www/gtkhtml3/Makefile =================================================================== --- head/www/gtkhtml3/Makefile (revision 51074) +++ head/www/gtkhtml3/Makefile (revision 51075) @@ -1,38 +1,38 @@ # New ports collection makefile for: gtkhtml # Date created: 2nd June 2000 # Whom: Ade Lovett # # $FreeBSD$ # PORTNAME= gtkhtml -PORTVERSION= 0.16.1 +PORTVERSION= 1.0.0 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gtkhtml MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ pspell.4:${PORTSDIR}/textproc/pspell \ gal.18:${PORTSDIR}/x11-toolkits/gal \ ghttp.1:${PORTSDIR}/www/libghttp USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOMECTRL= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gconf=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' .include Property changes on: head/www/gtkhtml3/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.38 \ No newline at end of property +1.39 \ No newline at end of property Index: head/www/gtkhtml3/distinfo =================================================================== --- head/www/gtkhtml3/distinfo (revision 51074) +++ head/www/gtkhtml3/distinfo (revision 51075) @@ -1 +1 @@ -MD5 (gtkhtml-0.16.1.tar.gz) = da85f8d2f46db669c4b3e8b0eefdd882 +MD5 (gtkhtml-1.0.0.tar.gz) = 19b9d3a9b8f4d1d24a46a2f81984085b Property changes on: head/www/gtkhtml3/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/www/gtkhtml3/files/patch-src::gtkhtml-properties.c =================================================================== --- head/www/gtkhtml3/files/patch-src::gtkhtml-properties.c (revision 51074) +++ head/www/gtkhtml3/files/patch-src::gtkhtml-properties.c (nonexistent) @@ -1,125 +0,0 @@ - -$FreeBSD$ - ---- src/gtkhtml-properties.c 2001/11/20 09:55:00 1.1 -+++ src/gtkhtml-properties.c 2001/11/20 09:56:37 -@@ -75,6 +75,59 @@ - g_free (p); - } - -+static gchar * -+get_font_name (const GdkFont * font) -+{ -+ Atom font_atom, atom; -+ Bool status; -+ -+ font_atom = gdk_atom_intern ("FONT", FALSE); -+ -+ if (font->type == GDK_FONT_FONTSET) { -+ XFontStruct **font_structs; -+ gint num_fonts; -+ gchar **font_names; -+ -+ num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -+ status = XGetFontProperty (font_structs[0], font_atom, &atom); -+ } else { -+ status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -+ } -+ -+ if (status) { -+ return gdk_atom_name (atom); -+ } -+ -+ return NULL; -+} -+ -+static void -+get_default_fonts (gchar **var_name, gchar **fix_name) -+{ -+ GtkStyle *style; -+ char *font_name = NULL; -+ -+ style = gtk_widget_get_default_style (); -+ if (style->font) { -+ font_name = get_font_name (style->font); -+ } -+ -+ if (font_name) { -+ gchar *enc1, *enc2; -+ -+ enc1 = html_font_manager_get_attr (font_name, 13); -+ enc2 = html_font_manager_get_attr (font_name, 14); -+ -+ *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ -+ /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -+ } else { -+ *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -+ *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -+ } -+} -+ - #ifdef GTKHTML_HAVE_GCONF - #define GET(t,x,prop,f,c) \ - key = g_strconcat (GTK_HTML_GCONF_DIR, x, NULL); \ -@@ -180,59 +233,6 @@ - #define GETS(v,s) \ - g_free (p->v); \ - GET(string,v,s) -- --static gchar * --get_font_name (const GdkFont * font) --{ -- Atom font_atom, atom; -- Bool status; -- -- font_atom = gdk_atom_intern ("FONT", FALSE); -- -- if (font->type == GDK_FONT_FONTSET) { -- XFontStruct **font_structs; -- gint num_fonts; -- gchar **font_names; -- -- num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -- status = XGetFontProperty (font_structs[0], font_atom, &atom); -- } else { -- status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -- } -- -- if (status) { -- return gdk_atom_name (atom); -- } -- -- return NULL; --} -- --static void --get_default_fonts (gchar **var_name, gchar **fix_name) --{ -- GtkStyle *style; -- char *font_name = NULL; -- -- style = gtk_widget_get_default_style (); -- if (style->font) { -- font_name = get_font_name (style->font); -- } -- -- if (font_name) { -- gchar *enc1, *enc2; -- -- enc1 = html_font_manager_get_attr (font_name, 13); -- enc2 = html_font_manager_get_attr (font_name, 14); -- -- *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- -- /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -- } else { -- *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -- *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -- } --} - - void - gtk_html_class_properties_load (GtkHTMLClassProperties *p) Property changes on: head/www/gtkhtml3/files/patch-src::gtkhtml-properties.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/www/gtkhtml3/files/patch-aa =================================================================== --- head/www/gtkhtml3/files/patch-aa (revision 51074) +++ head/www/gtkhtml3/files/patch-aa (revision 51075) @@ -1,11 +1,14 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ + +$FreeBSD$ + +--- Makefile.in.orig Tue Dec 4 17:05:01 2001 ++++ Makefile.in Wed Dec 5 11:05:52 2001 +@@ -151,7 +151,7 @@ @BONOBO_TRUE@DIR_COMPONENTS = components @BONOBO_FALSE@DIR_COMPONENTS = -confexecdir = $(libdir) +confexecdir = $(sysconfdir) confexec_DATA = gtkhtmlConf.sh - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec + SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po Property changes on: head/www/gtkhtml3/files/patch-aa ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/www/gtkhtml3/pkg-plist =================================================================== --- head/www/gtkhtml3/pkg-plist (revision 51074) +++ head/www/gtkhtml3/pkg-plist (revision 51075) @@ -1,183 +1,183 @@ bin/ebrowser bin/gnome-gtkhtml-editor bin/gtkhtml-properties-capplet etc/CORBA/servers/html-component.gnorba etc/gtkhtmlConf.sh include/gtkhtml/gtkhtml-compat.h include/gtkhtml/gtkhtml-embedded.h include/gtkhtml/gtkhtml-enums.h include/gtkhtml/gtkhtml-im.h include/gtkhtml/gtkhtml-keybinding.h include/gtkhtml/gtkhtml-private.h include/gtkhtml/gtkhtml-properties.h include/gtkhtml/gtkhtml-search.h include/gtkhtml/gtkhtml-stream.h include/gtkhtml/gtkhtml-types.h include/gtkhtml/gtkhtml.h include/gtkhtml/gtkhtmldebug.h include/gtkhtml/gtkhtmlfontstyle.h include/gtkhtml/htmlanchor.h include/gtkhtml/htmlbutton.h include/gtkhtml/htmlcheckbox.h include/gtkhtml/htmlclue.h include/gtkhtml/htmlcluealigned.h include/gtkhtml/htmlclueflow.h include/gtkhtml/htmlclueh.h include/gtkhtml/htmlcluev.h include/gtkhtml/htmlcolor.h include/gtkhtml/htmlcolorset.h include/gtkhtml/htmlcursor.h include/gtkhtml/htmldrawqueue.h include/gtkhtml/htmlembedded.h include/gtkhtml/htmlengine-edit-clueflowstyle.h include/gtkhtml/htmlengine-edit-cursor.h include/gtkhtml/htmlengine-edit-cut-and-paste.h include/gtkhtml/htmlengine-edit-fontstyle.h include/gtkhtml/htmlengine-edit-images.c include/gtkhtml/htmlengine-edit-images.h include/gtkhtml/htmlengine-edit-movement.h include/gtkhtml/htmlengine-edit-rule.h include/gtkhtml/htmlengine-edit-selection-updater.h include/gtkhtml/htmlengine-edit-table.h include/gtkhtml/htmlengine-edit-tablecell.h include/gtkhtml/htmlengine-edit-text.h include/gtkhtml/htmlengine-edit.h include/gtkhtml/htmlengine-print.h include/gtkhtml/htmlengine-save.h include/gtkhtml/htmlengine-search.h include/gtkhtml/htmlengine.h include/gtkhtml/htmlentity.h include/gtkhtml/htmlenums.h include/gtkhtml/htmlenumutils.h include/gtkhtml/htmlfontmanager.h include/gtkhtml/htmlform.h include/gtkhtml/htmlframe.h include/gtkhtml/htmlframeset.h include/gtkhtml/htmlgdkpainter.h include/gtkhtml/htmlhidden.h include/gtkhtml/htmlhspace.h include/gtkhtml/htmliframe.h include/gtkhtml/htmlimage.h include/gtkhtml/htmlimageinput.h include/gtkhtml/htmlinterval.h include/gtkhtml/htmllinktext.h include/gtkhtml/htmllist.h include/gtkhtml/htmlmap.h include/gtkhtml/htmlobject.h include/gtkhtml/htmlpainter.h include/gtkhtml/htmlplainpainter.h include/gtkhtml/htmlprinter.h include/gtkhtml/htmlradio.h include/gtkhtml/htmlreplace.h include/gtkhtml/htmlrule.h include/gtkhtml/htmlsearch.h include/gtkhtml/htmlselect.h include/gtkhtml/htmlselection.h include/gtkhtml/htmlsettings.h include/gtkhtml/htmlshape.h include/gtkhtml/htmlstack.h include/gtkhtml/htmlstringtokenizer.h include/gtkhtml/htmltable.h include/gtkhtml/htmltablecell.h include/gtkhtml/htmltablepriv.h include/gtkhtml/htmltext.h include/gtkhtml/htmltextarea.h include/gtkhtml/htmltextinput.h include/gtkhtml/htmltextslave.h include/gtkhtml/htmltokenizer.h include/gtkhtml/htmltype.h include/gtkhtml/htmltypes.h include/gtkhtml/htmlundo-action.h include/gtkhtml/htmlundo.h include/gtkhtml/htmlvspace.h lib/bonobo/plugin/libstorage_http.a lib/bonobo/plugin/libstorage_http.so lib/libgtkhtml.a lib/libgtkhtml.so -lib/libgtkhtml.so.19 +lib/libgtkhtml.so.20 share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop share/gnome/control-center/Documents/gtkhtml-properties.desktop share/gnome/control-center/capplets/gtkhtml-properties.desktop share/gnome/gtkhtml/Editor.idl share/gnome/gtkhtml/gtkhtml-capplet.glade share/gnome/gtkhtml/gtkhtml-editor-properties.glade share/gnome/gtkhtml/icons/16_copy.png share/gnome/gtkhtml/icons/16_cut.png share/gnome/gtkhtml/icons/16_paste.png share/gnome/gtkhtml/icons/24_copy.png share/gnome/gtkhtml/icons/24_cut.png share/gnome/gtkhtml/icons/24_paste.png share/gnome/gtkhtml/icons/bulb.png share/gnome/gtkhtml/icons/empty_image.png share/gnome/gtkhtml/icons/flowers.png share/gnome/gtkhtml/icons/html-viewer.png share/gnome/gtkhtml/icons/insert-image-16.png share/gnome/gtkhtml/icons/insert-image-24.png share/gnome/gtkhtml/icons/insert-link-16.png share/gnome/gtkhtml/icons/insert-link-24.png share/gnome/gtkhtml/icons/insert-object-16.png share/gnome/gtkhtml/icons/insert-object-24.png share/gnome/gtkhtml/icons/insert-rule-16.png share/gnome/gtkhtml/icons/insert-rule-24.png share/gnome/gtkhtml/icons/insert-table-16.png share/gnome/gtkhtml/icons/insert-table-24.png share/gnome/gtkhtml/icons/properties-16.png share/gnome/gtkhtml/icons/redo-16.png share/gnome/gtkhtml/icons/redo-24.png share/gnome/gtkhtml/icons/rule-blue-center.png share/gnome/gtkhtml/icons/rule-blue-left.png share/gnome/gtkhtml/icons/rule-blue-right.png share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png share/gnome/gtkhtml/icons/search-16.png share/gnome/gtkhtml/icons/search-24.png share/gnome/gtkhtml/icons/search-and-replace-16.png share/gnome/gtkhtml/icons/search-and-replace-24.png share/gnome/gtkhtml/icons/transparent.png share/gnome/gtkhtml/icons/undo-16.png share/gnome/gtkhtml/icons/undo-24.png share/gnome/gtkhtml/keybindingsrc.emacs share/gnome/gtkhtml/keybindingsrc.ms share/gnome/gtkhtml/keybindingsrc.xemacs share/gnome/html/gtkhtml-decl.txt share/gnome/html/gtkhtml-sections.txt share/gnome/html/gtkhtml.hierarchy share/gnome/html/gtkhtml.sgml share/gnome/html/gtkhtml.types share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf share/gnome/oaf/GNOME_GtkHTML_Editor.oaf share/gnome/ui/GNOME_GtkHTML_Editor.xml share/locale/az/LC_MESSAGES/gtkhtml.mo share/locale/cs/LC_MESSAGES/gtkhtml.mo share/locale/da/LC_MESSAGES/gtkhtml.mo share/locale/de/LC_MESSAGES/gtkhtml.mo share/locale/el/LC_MESSAGES/gtkhtml.mo share/locale/es/LC_MESSAGES/gtkhtml.mo share/locale/fi/LC_MESSAGES/gtkhtml.mo share/locale/fr/LC_MESSAGES/gtkhtml.mo share/locale/gl/LC_MESSAGES/gtkhtml.mo share/locale/hu/LC_MESSAGES/gtkhtml.mo share/locale/it/LC_MESSAGES/gtkhtml.mo share/locale/ja/LC_MESSAGES/gtkhtml.mo share/locale/ko/LC_MESSAGES/gtkhtml.mo share/locale/lt/LC_MESSAGES/gtkhtml.mo share/locale/lv/LC_MESSAGES/gtkhtml.mo share/locale/nl/LC_MESSAGES/gtkhtml.mo share/locale/nn/LC_MESSAGES/gtkhtml.mo share/locale/no/LC_MESSAGES/gtkhtml.mo share/locale/pl/LC_MESSAGES/gtkhtml.mo share/locale/pt/LC_MESSAGES/gtkhtml.mo share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo share/locale/ru/LC_MESSAGES/gtkhtml.mo share/locale/sk/LC_MESSAGES/gtkhtml.mo share/locale/sl/LC_MESSAGES/gtkhtml.mo share/locale/sv/LC_MESSAGES/gtkhtml.mo share/locale/tr/LC_MESSAGES/gtkhtml.mo share/locale/uk/LC_MESSAGES/gtkhtml.mo share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo @dirrm share/gnome/html/gtkhtml @dirrm share/gnome/gtkhtml/icons @dirrm share/gnome/gtkhtml @dirrm include/gtkhtml Property changes on: head/www/gtkhtml3/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/www/gtkhtml38/Makefile =================================================================== --- head/www/gtkhtml38/Makefile (revision 51074) +++ head/www/gtkhtml38/Makefile (revision 51075) @@ -1,38 +1,38 @@ # New ports collection makefile for: gtkhtml # Date created: 2nd June 2000 # Whom: Ade Lovett # # $FreeBSD$ # PORTNAME= gtkhtml -PORTVERSION= 0.16.1 +PORTVERSION= 1.0.0 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gtkhtml MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ pspell.4:${PORTSDIR}/textproc/pspell \ gal.18:${PORTSDIR}/x11-toolkits/gal \ ghttp.1:${PORTSDIR}/www/libghttp USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOMECTRL= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gconf=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' .include Property changes on: head/www/gtkhtml38/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.38 \ No newline at end of property +1.39 \ No newline at end of property Index: head/www/gtkhtml38/distinfo =================================================================== --- head/www/gtkhtml38/distinfo (revision 51074) +++ head/www/gtkhtml38/distinfo (revision 51075) @@ -1 +1 @@ -MD5 (gtkhtml-0.16.1.tar.gz) = da85f8d2f46db669c4b3e8b0eefdd882 +MD5 (gtkhtml-1.0.0.tar.gz) = 19b9d3a9b8f4d1d24a46a2f81984085b Property changes on: head/www/gtkhtml38/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/www/gtkhtml38/files/patch-src::gtkhtml-properties.c =================================================================== --- head/www/gtkhtml38/files/patch-src::gtkhtml-properties.c (revision 51074) +++ head/www/gtkhtml38/files/patch-src::gtkhtml-properties.c (nonexistent) @@ -1,125 +0,0 @@ - -$FreeBSD$ - ---- src/gtkhtml-properties.c 2001/11/20 09:55:00 1.1 -+++ src/gtkhtml-properties.c 2001/11/20 09:56:37 -@@ -75,6 +75,59 @@ - g_free (p); - } - -+static gchar * -+get_font_name (const GdkFont * font) -+{ -+ Atom font_atom, atom; -+ Bool status; -+ -+ font_atom = gdk_atom_intern ("FONT", FALSE); -+ -+ if (font->type == GDK_FONT_FONTSET) { -+ XFontStruct **font_structs; -+ gint num_fonts; -+ gchar **font_names; -+ -+ num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -+ status = XGetFontProperty (font_structs[0], font_atom, &atom); -+ } else { -+ status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -+ } -+ -+ if (status) { -+ return gdk_atom_name (atom); -+ } -+ -+ return NULL; -+} -+ -+static void -+get_default_fonts (gchar **var_name, gchar **fix_name) -+{ -+ GtkStyle *style; -+ char *font_name = NULL; -+ -+ style = gtk_widget_get_default_style (); -+ if (style->font) { -+ font_name = get_font_name (style->font); -+ } -+ -+ if (font_name) { -+ gchar *enc1, *enc2; -+ -+ enc1 = html_font_manager_get_attr (font_name, 13); -+ enc2 = html_font_manager_get_attr (font_name, 14); -+ -+ *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ -+ /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -+ } else { -+ *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -+ *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -+ } -+} -+ - #ifdef GTKHTML_HAVE_GCONF - #define GET(t,x,prop,f,c) \ - key = g_strconcat (GTK_HTML_GCONF_DIR, x, NULL); \ -@@ -180,59 +233,6 @@ - #define GETS(v,s) \ - g_free (p->v); \ - GET(string,v,s) -- --static gchar * --get_font_name (const GdkFont * font) --{ -- Atom font_atom, atom; -- Bool status; -- -- font_atom = gdk_atom_intern ("FONT", FALSE); -- -- if (font->type == GDK_FONT_FONTSET) { -- XFontStruct **font_structs; -- gint num_fonts; -- gchar **font_names; -- -- num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -- status = XGetFontProperty (font_structs[0], font_atom, &atom); -- } else { -- status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -- } -- -- if (status) { -- return gdk_atom_name (atom); -- } -- -- return NULL; --} -- --static void --get_default_fonts (gchar **var_name, gchar **fix_name) --{ -- GtkStyle *style; -- char *font_name = NULL; -- -- style = gtk_widget_get_default_style (); -- if (style->font) { -- font_name = get_font_name (style->font); -- } -- -- if (font_name) { -- gchar *enc1, *enc2; -- -- enc1 = html_font_manager_get_attr (font_name, 13); -- enc2 = html_font_manager_get_attr (font_name, 14); -- -- *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- -- /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -- } else { -- *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -- *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -- } --} - - void - gtk_html_class_properties_load (GtkHTMLClassProperties *p) Property changes on: head/www/gtkhtml38/files/patch-src::gtkhtml-properties.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/www/gtkhtml38/files/patch-aa =================================================================== --- head/www/gtkhtml38/files/patch-aa (revision 51074) +++ head/www/gtkhtml38/files/patch-aa (revision 51075) @@ -1,11 +1,14 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ + +$FreeBSD$ + +--- Makefile.in.orig Tue Dec 4 17:05:01 2001 ++++ Makefile.in Wed Dec 5 11:05:52 2001 +@@ -151,7 +151,7 @@ @BONOBO_TRUE@DIR_COMPONENTS = components @BONOBO_FALSE@DIR_COMPONENTS = -confexecdir = $(libdir) +confexecdir = $(sysconfdir) confexec_DATA = gtkhtmlConf.sh - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec + SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po Property changes on: head/www/gtkhtml38/files/patch-aa ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/www/gtkhtml38/pkg-plist =================================================================== --- head/www/gtkhtml38/pkg-plist (revision 51074) +++ head/www/gtkhtml38/pkg-plist (revision 51075) @@ -1,183 +1,183 @@ bin/ebrowser bin/gnome-gtkhtml-editor bin/gtkhtml-properties-capplet etc/CORBA/servers/html-component.gnorba etc/gtkhtmlConf.sh include/gtkhtml/gtkhtml-compat.h include/gtkhtml/gtkhtml-embedded.h include/gtkhtml/gtkhtml-enums.h include/gtkhtml/gtkhtml-im.h include/gtkhtml/gtkhtml-keybinding.h include/gtkhtml/gtkhtml-private.h include/gtkhtml/gtkhtml-properties.h include/gtkhtml/gtkhtml-search.h include/gtkhtml/gtkhtml-stream.h include/gtkhtml/gtkhtml-types.h include/gtkhtml/gtkhtml.h include/gtkhtml/gtkhtmldebug.h include/gtkhtml/gtkhtmlfontstyle.h include/gtkhtml/htmlanchor.h include/gtkhtml/htmlbutton.h include/gtkhtml/htmlcheckbox.h include/gtkhtml/htmlclue.h include/gtkhtml/htmlcluealigned.h include/gtkhtml/htmlclueflow.h include/gtkhtml/htmlclueh.h include/gtkhtml/htmlcluev.h include/gtkhtml/htmlcolor.h include/gtkhtml/htmlcolorset.h include/gtkhtml/htmlcursor.h include/gtkhtml/htmldrawqueue.h include/gtkhtml/htmlembedded.h include/gtkhtml/htmlengine-edit-clueflowstyle.h include/gtkhtml/htmlengine-edit-cursor.h include/gtkhtml/htmlengine-edit-cut-and-paste.h include/gtkhtml/htmlengine-edit-fontstyle.h include/gtkhtml/htmlengine-edit-images.c include/gtkhtml/htmlengine-edit-images.h include/gtkhtml/htmlengine-edit-movement.h include/gtkhtml/htmlengine-edit-rule.h include/gtkhtml/htmlengine-edit-selection-updater.h include/gtkhtml/htmlengine-edit-table.h include/gtkhtml/htmlengine-edit-tablecell.h include/gtkhtml/htmlengine-edit-text.h include/gtkhtml/htmlengine-edit.h include/gtkhtml/htmlengine-print.h include/gtkhtml/htmlengine-save.h include/gtkhtml/htmlengine-search.h include/gtkhtml/htmlengine.h include/gtkhtml/htmlentity.h include/gtkhtml/htmlenums.h include/gtkhtml/htmlenumutils.h include/gtkhtml/htmlfontmanager.h include/gtkhtml/htmlform.h include/gtkhtml/htmlframe.h include/gtkhtml/htmlframeset.h include/gtkhtml/htmlgdkpainter.h include/gtkhtml/htmlhidden.h include/gtkhtml/htmlhspace.h include/gtkhtml/htmliframe.h include/gtkhtml/htmlimage.h include/gtkhtml/htmlimageinput.h include/gtkhtml/htmlinterval.h include/gtkhtml/htmllinktext.h include/gtkhtml/htmllist.h include/gtkhtml/htmlmap.h include/gtkhtml/htmlobject.h include/gtkhtml/htmlpainter.h include/gtkhtml/htmlplainpainter.h include/gtkhtml/htmlprinter.h include/gtkhtml/htmlradio.h include/gtkhtml/htmlreplace.h include/gtkhtml/htmlrule.h include/gtkhtml/htmlsearch.h include/gtkhtml/htmlselect.h include/gtkhtml/htmlselection.h include/gtkhtml/htmlsettings.h include/gtkhtml/htmlshape.h include/gtkhtml/htmlstack.h include/gtkhtml/htmlstringtokenizer.h include/gtkhtml/htmltable.h include/gtkhtml/htmltablecell.h include/gtkhtml/htmltablepriv.h include/gtkhtml/htmltext.h include/gtkhtml/htmltextarea.h include/gtkhtml/htmltextinput.h include/gtkhtml/htmltextslave.h include/gtkhtml/htmltokenizer.h include/gtkhtml/htmltype.h include/gtkhtml/htmltypes.h include/gtkhtml/htmlundo-action.h include/gtkhtml/htmlundo.h include/gtkhtml/htmlvspace.h lib/bonobo/plugin/libstorage_http.a lib/bonobo/plugin/libstorage_http.so lib/libgtkhtml.a lib/libgtkhtml.so -lib/libgtkhtml.so.19 +lib/libgtkhtml.so.20 share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop share/gnome/control-center/Documents/gtkhtml-properties.desktop share/gnome/control-center/capplets/gtkhtml-properties.desktop share/gnome/gtkhtml/Editor.idl share/gnome/gtkhtml/gtkhtml-capplet.glade share/gnome/gtkhtml/gtkhtml-editor-properties.glade share/gnome/gtkhtml/icons/16_copy.png share/gnome/gtkhtml/icons/16_cut.png share/gnome/gtkhtml/icons/16_paste.png share/gnome/gtkhtml/icons/24_copy.png share/gnome/gtkhtml/icons/24_cut.png share/gnome/gtkhtml/icons/24_paste.png share/gnome/gtkhtml/icons/bulb.png share/gnome/gtkhtml/icons/empty_image.png share/gnome/gtkhtml/icons/flowers.png share/gnome/gtkhtml/icons/html-viewer.png share/gnome/gtkhtml/icons/insert-image-16.png share/gnome/gtkhtml/icons/insert-image-24.png share/gnome/gtkhtml/icons/insert-link-16.png share/gnome/gtkhtml/icons/insert-link-24.png share/gnome/gtkhtml/icons/insert-object-16.png share/gnome/gtkhtml/icons/insert-object-24.png share/gnome/gtkhtml/icons/insert-rule-16.png share/gnome/gtkhtml/icons/insert-rule-24.png share/gnome/gtkhtml/icons/insert-table-16.png share/gnome/gtkhtml/icons/insert-table-24.png share/gnome/gtkhtml/icons/properties-16.png share/gnome/gtkhtml/icons/redo-16.png share/gnome/gtkhtml/icons/redo-24.png share/gnome/gtkhtml/icons/rule-blue-center.png share/gnome/gtkhtml/icons/rule-blue-left.png share/gnome/gtkhtml/icons/rule-blue-right.png share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png share/gnome/gtkhtml/icons/search-16.png share/gnome/gtkhtml/icons/search-24.png share/gnome/gtkhtml/icons/search-and-replace-16.png share/gnome/gtkhtml/icons/search-and-replace-24.png share/gnome/gtkhtml/icons/transparent.png share/gnome/gtkhtml/icons/undo-16.png share/gnome/gtkhtml/icons/undo-24.png share/gnome/gtkhtml/keybindingsrc.emacs share/gnome/gtkhtml/keybindingsrc.ms share/gnome/gtkhtml/keybindingsrc.xemacs share/gnome/html/gtkhtml-decl.txt share/gnome/html/gtkhtml-sections.txt share/gnome/html/gtkhtml.hierarchy share/gnome/html/gtkhtml.sgml share/gnome/html/gtkhtml.types share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf share/gnome/oaf/GNOME_GtkHTML_Editor.oaf share/gnome/ui/GNOME_GtkHTML_Editor.xml share/locale/az/LC_MESSAGES/gtkhtml.mo share/locale/cs/LC_MESSAGES/gtkhtml.mo share/locale/da/LC_MESSAGES/gtkhtml.mo share/locale/de/LC_MESSAGES/gtkhtml.mo share/locale/el/LC_MESSAGES/gtkhtml.mo share/locale/es/LC_MESSAGES/gtkhtml.mo share/locale/fi/LC_MESSAGES/gtkhtml.mo share/locale/fr/LC_MESSAGES/gtkhtml.mo share/locale/gl/LC_MESSAGES/gtkhtml.mo share/locale/hu/LC_MESSAGES/gtkhtml.mo share/locale/it/LC_MESSAGES/gtkhtml.mo share/locale/ja/LC_MESSAGES/gtkhtml.mo share/locale/ko/LC_MESSAGES/gtkhtml.mo share/locale/lt/LC_MESSAGES/gtkhtml.mo share/locale/lv/LC_MESSAGES/gtkhtml.mo share/locale/nl/LC_MESSAGES/gtkhtml.mo share/locale/nn/LC_MESSAGES/gtkhtml.mo share/locale/no/LC_MESSAGES/gtkhtml.mo share/locale/pl/LC_MESSAGES/gtkhtml.mo share/locale/pt/LC_MESSAGES/gtkhtml.mo share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo share/locale/ru/LC_MESSAGES/gtkhtml.mo share/locale/sk/LC_MESSAGES/gtkhtml.mo share/locale/sl/LC_MESSAGES/gtkhtml.mo share/locale/sv/LC_MESSAGES/gtkhtml.mo share/locale/tr/LC_MESSAGES/gtkhtml.mo share/locale/uk/LC_MESSAGES/gtkhtml.mo share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo @dirrm share/gnome/html/gtkhtml @dirrm share/gnome/gtkhtml/icons @dirrm share/gnome/gtkhtml @dirrm include/gtkhtml Property changes on: head/www/gtkhtml38/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property Index: head/www/libgtkhtml/Makefile =================================================================== --- head/www/libgtkhtml/Makefile (revision 51074) +++ head/www/libgtkhtml/Makefile (revision 51075) @@ -1,38 +1,38 @@ # New ports collection makefile for: gtkhtml # Date created: 2nd June 2000 # Whom: Ade Lovett # # $FreeBSD$ # PORTNAME= gtkhtml -PORTVERSION= 0.16.1 +PORTVERSION= 1.0.0 CATEGORIES= www gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= unstable/sources/gtkhtml MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= glibwww.1:${PORTSDIR}/www/glibwww \ pspell.4:${PORTSDIR}/textproc/pspell \ gal.18:${PORTSDIR}/x11-toolkits/gal \ ghttp.1:${PORTSDIR}/www/libghttp USE_X_PREFIX= yes USE_GMAKE= yes USE_GNOMECTRL= yes INSTALLS_SHLIB= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-gconf=yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL} pre-patch: @${PERL} -pi -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure @find ${WRKSRC} -name "Makefile.in" | xargs ${PERL} -pi -e \ 's|\$\(datadir\)/gnome/|\$\(datadir\)/|g ; \ s|\$\(datadir\)/locale|\$\(prefix\)/share/locale|g' .include Property changes on: head/www/libgtkhtml/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.38 \ No newline at end of property +1.39 \ No newline at end of property Index: head/www/libgtkhtml/distinfo =================================================================== --- head/www/libgtkhtml/distinfo (revision 51074) +++ head/www/libgtkhtml/distinfo (revision 51075) @@ -1 +1 @@ -MD5 (gtkhtml-0.16.1.tar.gz) = da85f8d2f46db669c4b3e8b0eefdd882 +MD5 (gtkhtml-1.0.0.tar.gz) = 19b9d3a9b8f4d1d24a46a2f81984085b Property changes on: head/www/libgtkhtml/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.15 \ No newline at end of property +1.16 \ No newline at end of property Index: head/www/libgtkhtml/files/patch-src::gtkhtml-properties.c =================================================================== --- head/www/libgtkhtml/files/patch-src::gtkhtml-properties.c (revision 51074) +++ head/www/libgtkhtml/files/patch-src::gtkhtml-properties.c (nonexistent) @@ -1,125 +0,0 @@ - -$FreeBSD$ - ---- src/gtkhtml-properties.c 2001/11/20 09:55:00 1.1 -+++ src/gtkhtml-properties.c 2001/11/20 09:56:37 -@@ -75,6 +75,59 @@ - g_free (p); - } - -+static gchar * -+get_font_name (const GdkFont * font) -+{ -+ Atom font_atom, atom; -+ Bool status; -+ -+ font_atom = gdk_atom_intern ("FONT", FALSE); -+ -+ if (font->type == GDK_FONT_FONTSET) { -+ XFontStruct **font_structs; -+ gint num_fonts; -+ gchar **font_names; -+ -+ num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -+ status = XGetFontProperty (font_structs[0], font_atom, &atom); -+ } else { -+ status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -+ } -+ -+ if (status) { -+ return gdk_atom_name (atom); -+ } -+ -+ return NULL; -+} -+ -+static void -+get_default_fonts (gchar **var_name, gchar **fix_name) -+{ -+ GtkStyle *style; -+ char *font_name = NULL; -+ -+ style = gtk_widget_get_default_style (); -+ if (style->font) { -+ font_name = get_font_name (style->font); -+ } -+ -+ if (font_name) { -+ gchar *enc1, *enc2; -+ -+ enc1 = html_font_manager_get_attr (font_name, 13); -+ enc2 = html_font_manager_get_attr (font_name, 14); -+ -+ *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -+ -+ /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -+ } else { -+ *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -+ *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -+ } -+} -+ - #ifdef GTKHTML_HAVE_GCONF - #define GET(t,x,prop,f,c) \ - key = g_strconcat (GTK_HTML_GCONF_DIR, x, NULL); \ -@@ -180,59 +233,6 @@ - #define GETS(v,s) \ - g_free (p->v); \ - GET(string,v,s) -- --static gchar * --get_font_name (const GdkFont * font) --{ -- Atom font_atom, atom; -- Bool status; -- -- font_atom = gdk_atom_intern ("FONT", FALSE); -- -- if (font->type == GDK_FONT_FONTSET) { -- XFontStruct **font_structs; -- gint num_fonts; -- gchar **font_names; -- -- num_fonts = XFontsOfFontSet (GDK_FONT_XFONT (font), &font_structs, &font_names); -- status = XGetFontProperty (font_structs[0], font_atom, &atom); -- } else { -- status = XGetFontProperty (GDK_FONT_XFONT (font), font_atom, &atom); -- } -- -- if (status) { -- return gdk_atom_name (atom); -- } -- -- return NULL; --} -- --static void --get_default_fonts (gchar **var_name, gchar **fix_name) --{ -- GtkStyle *style; -- char *font_name = NULL; -- -- style = gtk_widget_get_default_style (); -- if (style->font) { -- font_name = get_font_name (style->font); -- } -- -- if (font_name) { -- gchar *enc1, *enc2; -- -- enc1 = html_font_manager_get_attr (font_name, 13); -- enc2 = html_font_manager_get_attr (font_name, 14); -- -- *var_name = g_strdup_printf ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- *fix_name = g_strdup_printf ("-*-courier-*-*-*-*-12-*-*-*-*-*-%s-%s", enc1, enc2); -- -- /* printf ("default encoding %s-%s\n%s\n%s\n", enc1, enc2, *var_name, *fix_name); */ -- } else { -- *var_name = g_strdup ("-*-helvetica-*-*-*-*-12-*-*-*-*-*-*-*"); -- *fix_name = g_strdup ("-*-courier-*-*-*-*-12-*-*-*-*-*-*-*"); -- } --} - - void - gtk_html_class_properties_load (GtkHTMLClassProperties *p) Property changes on: head/www/libgtkhtml/files/patch-src::gtkhtml-properties.c ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: svn:keywords ## -1 +0,0 ## -FreeBSD=%H \ No newline at end of property Index: head/www/libgtkhtml/files/patch-aa =================================================================== --- head/www/libgtkhtml/files/patch-aa (revision 51074) +++ head/www/libgtkhtml/files/patch-aa (revision 51075) @@ -1,11 +1,14 @@ ---- Makefile.in.orig Fri Jun 2 09:18:22 2000 -+++ Makefile.in Fri Jun 2 14:04:24 2000 -@@ -107,7 +107,7 @@ + +$FreeBSD$ + +--- Makefile.in.orig Tue Dec 4 17:05:01 2001 ++++ Makefile.in Wed Dec 5 11:05:52 2001 +@@ -151,7 +151,7 @@ @BONOBO_TRUE@DIR_COMPONENTS = components @BONOBO_FALSE@DIR_COMPONENTS = -confexecdir = $(libdir) +confexecdir = $(sysconfdir) confexec_DATA = gtkhtmlConf.sh - EXTRA_DIST = html-component.gnorba gtkhtmlConf.sh.in gtkhtml.spec.in gtkhtml.spec + SUBDIRS = intl macros src capplet doc art $(DIR_COMPONENTS) po Property changes on: head/www/libgtkhtml/files/patch-aa ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/www/libgtkhtml/pkg-plist =================================================================== --- head/www/libgtkhtml/pkg-plist (revision 51074) +++ head/www/libgtkhtml/pkg-plist (revision 51075) @@ -1,183 +1,183 @@ bin/ebrowser bin/gnome-gtkhtml-editor bin/gtkhtml-properties-capplet etc/CORBA/servers/html-component.gnorba etc/gtkhtmlConf.sh include/gtkhtml/gtkhtml-compat.h include/gtkhtml/gtkhtml-embedded.h include/gtkhtml/gtkhtml-enums.h include/gtkhtml/gtkhtml-im.h include/gtkhtml/gtkhtml-keybinding.h include/gtkhtml/gtkhtml-private.h include/gtkhtml/gtkhtml-properties.h include/gtkhtml/gtkhtml-search.h include/gtkhtml/gtkhtml-stream.h include/gtkhtml/gtkhtml-types.h include/gtkhtml/gtkhtml.h include/gtkhtml/gtkhtmldebug.h include/gtkhtml/gtkhtmlfontstyle.h include/gtkhtml/htmlanchor.h include/gtkhtml/htmlbutton.h include/gtkhtml/htmlcheckbox.h include/gtkhtml/htmlclue.h include/gtkhtml/htmlcluealigned.h include/gtkhtml/htmlclueflow.h include/gtkhtml/htmlclueh.h include/gtkhtml/htmlcluev.h include/gtkhtml/htmlcolor.h include/gtkhtml/htmlcolorset.h include/gtkhtml/htmlcursor.h include/gtkhtml/htmldrawqueue.h include/gtkhtml/htmlembedded.h include/gtkhtml/htmlengine-edit-clueflowstyle.h include/gtkhtml/htmlengine-edit-cursor.h include/gtkhtml/htmlengine-edit-cut-and-paste.h include/gtkhtml/htmlengine-edit-fontstyle.h include/gtkhtml/htmlengine-edit-images.c include/gtkhtml/htmlengine-edit-images.h include/gtkhtml/htmlengine-edit-movement.h include/gtkhtml/htmlengine-edit-rule.h include/gtkhtml/htmlengine-edit-selection-updater.h include/gtkhtml/htmlengine-edit-table.h include/gtkhtml/htmlengine-edit-tablecell.h include/gtkhtml/htmlengine-edit-text.h include/gtkhtml/htmlengine-edit.h include/gtkhtml/htmlengine-print.h include/gtkhtml/htmlengine-save.h include/gtkhtml/htmlengine-search.h include/gtkhtml/htmlengine.h include/gtkhtml/htmlentity.h include/gtkhtml/htmlenums.h include/gtkhtml/htmlenumutils.h include/gtkhtml/htmlfontmanager.h include/gtkhtml/htmlform.h include/gtkhtml/htmlframe.h include/gtkhtml/htmlframeset.h include/gtkhtml/htmlgdkpainter.h include/gtkhtml/htmlhidden.h include/gtkhtml/htmlhspace.h include/gtkhtml/htmliframe.h include/gtkhtml/htmlimage.h include/gtkhtml/htmlimageinput.h include/gtkhtml/htmlinterval.h include/gtkhtml/htmllinktext.h include/gtkhtml/htmllist.h include/gtkhtml/htmlmap.h include/gtkhtml/htmlobject.h include/gtkhtml/htmlpainter.h include/gtkhtml/htmlplainpainter.h include/gtkhtml/htmlprinter.h include/gtkhtml/htmlradio.h include/gtkhtml/htmlreplace.h include/gtkhtml/htmlrule.h include/gtkhtml/htmlsearch.h include/gtkhtml/htmlselect.h include/gtkhtml/htmlselection.h include/gtkhtml/htmlsettings.h include/gtkhtml/htmlshape.h include/gtkhtml/htmlstack.h include/gtkhtml/htmlstringtokenizer.h include/gtkhtml/htmltable.h include/gtkhtml/htmltablecell.h include/gtkhtml/htmltablepriv.h include/gtkhtml/htmltext.h include/gtkhtml/htmltextarea.h include/gtkhtml/htmltextinput.h include/gtkhtml/htmltextslave.h include/gtkhtml/htmltokenizer.h include/gtkhtml/htmltype.h include/gtkhtml/htmltypes.h include/gtkhtml/htmlundo-action.h include/gtkhtml/htmlundo.h include/gtkhtml/htmlvspace.h lib/bonobo/plugin/libstorage_http.a lib/bonobo/plugin/libstorage_http.so lib/libgtkhtml.a lib/libgtkhtml.so -lib/libgtkhtml.so.19 +lib/libgtkhtml.so.20 share/gnome/apps/Settings/Documents/gtkhtml-properties.desktop share/gnome/control-center/Documents/gtkhtml-properties.desktop share/gnome/control-center/capplets/gtkhtml-properties.desktop share/gnome/gtkhtml/Editor.idl share/gnome/gtkhtml/gtkhtml-capplet.glade share/gnome/gtkhtml/gtkhtml-editor-properties.glade share/gnome/gtkhtml/icons/16_copy.png share/gnome/gtkhtml/icons/16_cut.png share/gnome/gtkhtml/icons/16_paste.png share/gnome/gtkhtml/icons/24_copy.png share/gnome/gtkhtml/icons/24_cut.png share/gnome/gtkhtml/icons/24_paste.png share/gnome/gtkhtml/icons/bulb.png share/gnome/gtkhtml/icons/empty_image.png share/gnome/gtkhtml/icons/flowers.png share/gnome/gtkhtml/icons/html-viewer.png share/gnome/gtkhtml/icons/insert-image-16.png share/gnome/gtkhtml/icons/insert-image-24.png share/gnome/gtkhtml/icons/insert-link-16.png share/gnome/gtkhtml/icons/insert-link-24.png share/gnome/gtkhtml/icons/insert-object-16.png share/gnome/gtkhtml/icons/insert-object-24.png share/gnome/gtkhtml/icons/insert-rule-16.png share/gnome/gtkhtml/icons/insert-rule-24.png share/gnome/gtkhtml/icons/insert-table-16.png share/gnome/gtkhtml/icons/insert-table-24.png share/gnome/gtkhtml/icons/properties-16.png share/gnome/gtkhtml/icons/redo-16.png share/gnome/gtkhtml/icons/redo-24.png share/gnome/gtkhtml/icons/rule-blue-center.png share/gnome/gtkhtml/icons/rule-blue-left.png share/gnome/gtkhtml/icons/rule-blue-right.png share/gnome/gtkhtml/icons/rule-yellow-flowers-center.png share/gnome/gtkhtml/icons/rule-yellow-flowers-left.png share/gnome/gtkhtml/icons/rule-yellow-flowers-right.png share/gnome/gtkhtml/icons/search-16.png share/gnome/gtkhtml/icons/search-24.png share/gnome/gtkhtml/icons/search-and-replace-16.png share/gnome/gtkhtml/icons/search-and-replace-24.png share/gnome/gtkhtml/icons/transparent.png share/gnome/gtkhtml/icons/undo-16.png share/gnome/gtkhtml/icons/undo-24.png share/gnome/gtkhtml/keybindingsrc.emacs share/gnome/gtkhtml/keybindingsrc.ms share/gnome/gtkhtml/keybindingsrc.xemacs share/gnome/html/gtkhtml-decl.txt share/gnome/html/gtkhtml-sections.txt share/gnome/html/gtkhtml.hierarchy share/gnome/html/gtkhtml.sgml share/gnome/html/gtkhtml.types share/gnome/oaf/GNOME_GtkHTML_EBrowser.oaf share/gnome/oaf/GNOME_GtkHTML_Editor.oaf share/gnome/ui/GNOME_GtkHTML_Editor.xml share/locale/az/LC_MESSAGES/gtkhtml.mo share/locale/cs/LC_MESSAGES/gtkhtml.mo share/locale/da/LC_MESSAGES/gtkhtml.mo share/locale/de/LC_MESSAGES/gtkhtml.mo share/locale/el/LC_MESSAGES/gtkhtml.mo share/locale/es/LC_MESSAGES/gtkhtml.mo share/locale/fi/LC_MESSAGES/gtkhtml.mo share/locale/fr/LC_MESSAGES/gtkhtml.mo share/locale/gl/LC_MESSAGES/gtkhtml.mo share/locale/hu/LC_MESSAGES/gtkhtml.mo share/locale/it/LC_MESSAGES/gtkhtml.mo share/locale/ja/LC_MESSAGES/gtkhtml.mo share/locale/ko/LC_MESSAGES/gtkhtml.mo share/locale/lt/LC_MESSAGES/gtkhtml.mo share/locale/lv/LC_MESSAGES/gtkhtml.mo share/locale/nl/LC_MESSAGES/gtkhtml.mo share/locale/nn/LC_MESSAGES/gtkhtml.mo share/locale/no/LC_MESSAGES/gtkhtml.mo share/locale/pl/LC_MESSAGES/gtkhtml.mo share/locale/pt/LC_MESSAGES/gtkhtml.mo share/locale/pt_BR/LC_MESSAGES/gtkhtml.mo share/locale/ru/LC_MESSAGES/gtkhtml.mo share/locale/sk/LC_MESSAGES/gtkhtml.mo share/locale/sl/LC_MESSAGES/gtkhtml.mo share/locale/sv/LC_MESSAGES/gtkhtml.mo share/locale/tr/LC_MESSAGES/gtkhtml.mo share/locale/uk/LC_MESSAGES/gtkhtml.mo share/locale/zh_CN/LC_MESSAGES/gtkhtml.mo share/locale/zh_TW/LC_MESSAGES/gtkhtml.mo @dirrm share/gnome/html/gtkhtml @dirrm share/gnome/gtkhtml/icons @dirrm share/gnome/gtkhtml @dirrm include/gtkhtml Property changes on: head/www/libgtkhtml/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.17 \ No newline at end of property +1.18 \ No newline at end of property