summaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorrh <rh>1999-03-14 17:12:53 +0000
committerrh <rh>1999-03-14 17:12:53 +0000
commite58457d585c355dc821d4ee0541a8d88fc06f228 (patch)
treeab27cd1245735305cb5b4c0072fd1d7195097b8e /x11
parentb147f6dce31e0f0bc315931179a309471480db06 (diff)
downloadpkgsrc-e58457d585c355dc821d4ee0541a8d88fc06f228.tar.gz
convert FreeBSD port to NetBSD package
update to gtk---1.0.0
Diffstat (limited to 'x11')
-rw-r--r--x11/gtk--/Makefile44
-rw-r--r--x11/gtk--/files/md54
-rw-r--r--x11/gtk--/patches/patch-aa33
-rw-r--r--x11/gtk--/patches/patch-ab16
-rw-r--r--x11/gtk--/patches/patch-ac15
-rw-r--r--x11/gtk--/patches/patch-ad13
-rw-r--r--x11/gtk--/patches/patch-ae97
-rw-r--r--x11/gtk--/patches/patch-af33
-rw-r--r--x11/gtk--/patches/patch-ag13
-rw-r--r--x11/gtk--/patches/patch-ah13
-rw-r--r--x11/gtk--/pkg/PLIST281
11 files changed, 345 insertions, 217 deletions
diff --git a/x11/gtk--/Makefile b/x11/gtk--/Makefile
index c0ffe6516bb..6761f286348 100644
--- a/x11/gtk--/Makefile
+++ b/x11/gtk--/Makefile
@@ -1,31 +1,29 @@
-# New ports collection makefile for: gtk--
-# Version required: 0.9.14
-# Date created: 11 May 1998
-# Whom: Yukihiro Nakai <Nakai@technologist.com>
+# $NetBSD: Makefile,v 1.2 1999/03/14 17:12:53 rh Exp $
+# FreeBSD Id: Makefile,v 1.6 1999/01/12 16:50:43 vanilla Exp
#
-# $Id: Makefile,v 1.1.1.1 1999/03/14 17:08:59 rh Exp $
-#
-
-DISTNAME= Gtk---0.9.14
-PKGNAME= gtk---0.9.14
-CATEGORIES= x11-toolkits
-MASTER_SITES= ftp://ftp.gimp.org/pub/gtk/gtk--/
-MAINTAINER= nacai@iname.com
+DISTNAME= Gtk---1.0.0
+PKGNAME= gtk---1.0.0
+CATEGORIES= devel
+MASTER_SITES= ftp://ftp.gtk.org/pub/gtk/gtk--/ \
+ ftp://gd.tuwien.ac.at/graphics/gimp/gtk/gtk--/ \
+ ftp://ftp.u-aizu.ac.jp/pub/graphics/tools/gimp/gtk/gtk--/ \
+ ftp://ftp.flirble.org/pub/X/gimp/gtk/gtk--/ \
+ http://lazy.ton.tut.fi/terop/iki/gtk/ \
+ http://gd.tuwien.ac.at/graphics/gimp/gtk/gtk--/
-BROKEN= build
+MAINTAINER= packages@netbsd.org
+HOMEPAGE= http://lazy.ton.tut.fi/gtk--/gtk--.html
-LIB_DEPENDS= gtk11.1:${PORTSDIR}/x11-toolkits/gtk11
-BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
+DEPENDS+= gtk+-1.2.0:../../x11/gtk
+BUILD_DEPENDS+= gm4:../../devel/m4
-# Why gtk11 port renames gtk-config to gtk11-config? (patch-ae)
-#GNU_CONFIGURE= yes
-USE_AUTOCONF= yes
-# for the future GNOME support
-#CONFIGURE_ARGS= --with-gnome=${X11BASE}
+USE_LIBTOOL= yes
+USE_X11BASE= yes
USE_GMAKE= yes
-post-install:
- ${LDCONFIG} -m ${PREFIX}/lib
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= INSTALL_SCRIPT="${INSTALL_SCRIPT}"
+CONFIGURE_ARGS= --without-gnome
-.include <bsd.port.mk>
+.include "../../mk/bsd.pkg.mk"
diff --git a/x11/gtk--/files/md5 b/x11/gtk--/files/md5
index c3f1636e827..15c4ec4c11a 100644
--- a/x11/gtk--/files/md5
+++ b/x11/gtk--/files/md5
@@ -1 +1,3 @@
-MD5 (Gtk---0.9.14.tar.gz) = d06ab557247b3b223c6661d41633f256
+$NetBSD: md5,v 1.2 1999/03/14 17:12:53 rh Exp $
+
+MD5 (Gtk---1.0.0.tar.gz) = 0fc011d97e099766166f8689bd8880d4
diff --git a/x11/gtk--/patches/patch-aa b/x11/gtk--/patches/patch-aa
deleted file mode 100644
index e79f6967f99..00000000000
--- a/x11/gtk--/patches/patch-aa
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/gensig/gensig.cc.orig Wed May 13 16:25:09 1998
-+++ src/gensig/gensig.cc Wed May 13 16:26:02 1998
-@@ -680,3 +680,30 @@
- system(buf);
- return 0;
- }
-+
-+
-+/* basename function from MOROHOSHI Akihiko <moro@race.u-tokyo.ac.jp> */
-+char *
-+basename(const char * str) {
-+ const char *s,*t;
-+ char *r;
-+ if (str == NULL)
-+ return strdup(".");
-+
-+ if( *str == '\0' )
-+ return strdup(".");
-+
-+ for (s=str+strlen(str)-1; *s=='/' && s>str; s--) /* trim trailing '/'s */
-+ ;
-+ t=s+1;
-+ for (; s>=str; s--)
-+ if (*s == '/') {
-+ if (t-s>1)
-+ str=s+1; /* t-s==1 is special case: str=~^/+$ */
-+ break;
-+ }
-+ r=(char *)malloc(t-str+1);
-+ strncpy(r,str,t-str);
-+ r[t-str]='\0';
-+ return r;
-+}
diff --git a/x11/gtk--/patches/patch-ab b/x11/gtk--/patches/patch-ab
deleted file mode 100644
index 67b05290351..00000000000
--- a/x11/gtk--/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/build_sources/Makefile.in.orig Sun Aug 23 07:09:33 1998
-+++ src/build_sources/Makefile.in Mon Aug 24 20:03:46 1998
-@@ -324,10 +324,12 @@
-
- $(gensourcedir)/%.h: $(srcdir)/%.h.m4
- rm -f $(gensourcedir)/$(notdir $*).h
-- m4 $(srcdir)/$(notdir $*).h.m4 >$(gensourcedir)/$(notdir $*).h
-+ gm4 $(srcdir)/$(notdir $*).h.m4 >$(gensourcedir)/$(notdir $*).h
-
- $(gensourcedir)/%.cc $(gensourcedir)/%.h: $(srcdir)/../%.gen_h $(srcdir)/../gensig/gensig.cc
- ../gensig/gensig $(srcdir)/../$(notdir $*).gen_h $(gensourcedir)/$(notdir $*)
-+ perl -pi -e 's/^#line.*$$//' $(gensourcedir)/$(notdir $*).h
-+ perl -pi -e 's/^#line.*$$//' $(gensourcedir)/$(notdir $*).cc
-
- # Tell versions [3.59,3.63) of GNU make to not export all variables.
- # Otherwise a system limit (for SysV at least) may be exceeded.
diff --git a/x11/gtk--/patches/patch-ac b/x11/gtk--/patches/patch-ac
deleted file mode 100644
index b22f366b43d..00000000000
--- a/x11/gtk--/patches/patch-ac
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/fontselection.gen_h.orig Mon Aug 24 20:10:08 1998
-+++ src/fontselection.gen_h Mon Aug 24 20:10:55 1998
-@@ -169,7 +169,11 @@
- apply_button(GTK_BUTTON(gtkobj()->apply_button)),
- cancel_button(GTK_BUTTON(gtkobj()->cancel_button))
- {
-- set_title(title.length() ? title : "Font Selection");
-+ if( title.length() ) {
-+ set_title(title);
-+ } else {
-+ set_title("Font Selection");
-+ }
- }
-
- Gtk_FontSelectionDialog::Gtk_FontSelectionDialog(GtkFontSelectionDialog *castitem)
diff --git a/x11/gtk--/patches/patch-ad b/x11/gtk--/patches/patch-ad
deleted file mode 100644
index 189603b5002..00000000000
--- a/x11/gtk--/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
---- Makefile.in.orig Mon Aug 24 20:14:17 1998
-+++ Makefile.in Mon Aug 24 20:16:23 1998
-@@ -97,8 +97,8 @@
- gnomemm_libdir = @gnomemm_libdir@
- gnomemm_prefix = @gnomemm_prefix@
-
--SUBDIRS = src examples docgen docs html @GNOME_SUBDIR@
--DIST_SUBDIRS = src examples docgen docs html macros gnome--
-+SUBDIRS = src examples docgen docs html #@GNOME_SUBDIR@
-+DIST_SUBDIRS = src examples docgen docs html macros #gnome--
-
- bin_SCRIPTS = gtkmm-config
-
diff --git a/x11/gtk--/patches/patch-ae b/x11/gtk--/patches/patch-ae
deleted file mode 100644
index a61eb7a5289..00000000000
--- a/x11/gtk--/patches/patch-ae
+++ /dev/null
@@ -1,97 +0,0 @@
---- aclocal.m4.orig Sun Aug 23 07:04:16 1998
-+++ aclocal.m4 Sat Aug 29 14:42:00 1998
-@@ -176,7 +176,7 @@
- dnl
- AC_DEFUN(AM_PATH_GTK,
- [dnl
--dnl Get the cflags and libraries from the gtk-config script
-+dnl Get the cflags and libraries from the gtk11-config script
- dnl
- AC_ARG_WITH(gtk-prefix,[ --with-gtk-prefix=PFX Prefix where GTK is installed (optional)],
- gtk_config_prefix="$withval", gtk_config_prefix="")
-@@ -188,17 +188,17 @@
- if test x$gtk_config_exec_prefix != x ; then
- gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix"
- if test x${GTK_CONFIG+set} != xset ; then
-- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config
-+ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk11-config
- fi
- fi
- if test x$gtk_config_prefix != x ; then
- gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix"
- if test x${GTK_CONFIG+set} != xset ; then
-- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config
-+ GTK_CONFIG=$gtk_config_prefix/bin/gtk11-config
- fi
- fi
-
-- AC_PATH_PROG(GTK_CONFIG, gtk-config, no)
-+ AC_PATH_PROG(GTK_CONFIG, gtk11-config, no)
- min_gtk_version=ifelse([$1], ,0.99.7,$1)
- AC_MSG_CHECKING(for GTK - version >= $min_gtk_version)
- no_gtk=""
-@@ -220,7 +220,7 @@
- LIBS="$LIBS $GTK_LIBS"
- dnl
- dnl Now check if the installed GTK is sufficiently new. (Also sanity
--dnl checks the results of gtk-config to some extent
-+dnl checks the results of gtk11-config to some extent
- dnl
- rm -f conf.gtktest
- AC_TRY_RUN([
-@@ -247,16 +247,16 @@
- (gtk_minor_version != $gtk_config_minor_version) ||
- (gtk_micro_version != $gtk_config_micro_version))
- {
-- printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
-+ printf("\n*** 'gtk11-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n",
- $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version,
- gtk_major_version, gtk_minor_version, gtk_micro_version);
-- printf ("*** was found! If gtk-config was correct, then it is best\n");
-+ printf ("*** was found! If gtk11-config was correct, then it is best\n");
- printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n");
- printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n");
- printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n");
- printf("*** required on your system.\n");
-- printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n");
-- printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n");
-+ printf("*** If gtk11-config was wrong, set the environment variable GTK_CONFIG\n");
-+ printf("*** to point to the correct copy of gtk11-config, and remove the file config.cache\n");
- printf("*** before re-running configure\n");
- }
- else if ((gtk_major_version != GTK_MAJOR_VERSION) ||
-@@ -285,10 +285,10 @@
- printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n");
- printf("***\n");
- printf("*** If you have already installed a sufficiently new version, this error\n");
-- printf("*** probably means that the wrong copy of the gtk-config shell script is\n");
-+ printf("*** probably means that the wrong copy of the gtk11-config shell script is\n");
- printf("*** being found. The easiest way to fix this is to remove the old version\n");
- printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n");
-- printf("*** correct copy of gtk-config. (In this case, you will have to\n");
-+ printf("*** correct copy of gtk11-config. (In this case, you will have to\n");
- printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n");
- printf("*** so that the correct libraries are found at run-time))\n");
- }
-@@ -306,10 +306,10 @@
- else
- AC_MSG_RESULT(no)
- if test "$GTK_CONFIG" = "no" ; then
-- echo "*** The gtk-config script installed by GTK could not be found"
-+ echo "*** The gtk11-config script installed by GTK could not be found"
- echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in"
- echo "*** your path, or set the GTK_CONFIG environment variable to the"
-- echo "*** full path to gtk-config."
-+ echo "*** full path to gtk11-config."
- else
- if test -f conf.gtktest ; then
- :
-@@ -338,7 +338,7 @@
- [ echo "*** The test program failed to compile or link. See the file config.log for the"
- echo "*** exact error that occured. This usually means GTK was incorrectly installed"
- echo "*** or that you have moved GTK since it was installed. In the latter case, you"
-- echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ])
-+ echo "*** may want to edit the gtk11-config script: $GTK_CONFIG" ])
- CFLAGS="$ac_save_CFLAGS"
- LIBS="$ac_save_LIBS"
- fi
diff --git a/x11/gtk--/patches/patch-af b/x11/gtk--/patches/patch-af
new file mode 100644
index 00000000000..871d241e238
--- /dev/null
+++ b/x11/gtk--/patches/patch-af
@@ -0,0 +1,33 @@
+$NetBSD: patch-af,v 1.1 1999/03/14 17:12:54 rh Exp $
+
+--- configure.orig Tue Mar 9 02:53:45 1999
++++ configure Wed Mar 10 20:44:43 1999
+@@ -1699,6 +1699,7 @@
+ ac_tool_prefix=
+ fi
+
++if false; then
+ # Always use our own libtool.
+ LIBTOOL='$(SHELL) $(top_builddir)/libtool'
+
+@@ -1931,6 +1932,7 @@
+ ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig --no-reexec \
+ $libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
+ || { echo "configure: error: libtool configure failed" 1>&2; exit 1; }
++fi
+
+ # Redirect the config.log output again, so that the ltconfig log is not
+ # clobbered by the next message.
+@@ -4046,10 +4048,12 @@
+ top_srcdir="$ac_dots$ac_given_srcdir" ;;
+ esac
+
++if false; then
+ case "$ac_given_INSTALL" in
+ [/$]*) INSTALL="$ac_given_INSTALL" ;;
+ *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
+ esac
++fi
+
+ echo creating "$ac_file"
+ rm -f "$ac_file"
diff --git a/x11/gtk--/patches/patch-ag b/x11/gtk--/patches/patch-ag
new file mode 100644
index 00000000000..d65d21a2723
--- /dev/null
+++ b/x11/gtk--/patches/patch-ag
@@ -0,0 +1,13 @@
+$NetBSD: patch-ag,v 1.1 1999/03/14 17:12:54 rh Exp $
+
+--- gdk--/gdk--/Makefile.in.orig Tue Mar 9 02:57:22 1999
++++ gdk--/gdk--/Makefile.in Wed Mar 10 20:53:39 1999
+@@ -123,7 +123,7 @@
+
+ libgdkmm_la_SOURCES = bitmap.cc colormap.cc font.cc main.cc window.cc color.cc drawable.cc gc.cc pixmap.cc visual.cc image.cc
+
+-libgdkmm_la_LDFLAGS = -version-info $(LIBGDKMM_SO_VERSION) -release $(GTKMM_RELEASE)
++libgdkmm_la_LDFLAGS = -version-info $(LIBGDKMM_SO_VERSION)
+
+ libgdkmmincludedir = $(includedir)/gdk--
+ libgdkmminclude_HEADERS = bitmap.h colormap.h gc.h main.h color.h drawable.h pixmap.h font.h types.h window.h visual.h image.h list.h
diff --git a/x11/gtk--/patches/patch-ah b/x11/gtk--/patches/patch-ah
new file mode 100644
index 00000000000..6b1f0621956
--- /dev/null
+++ b/x11/gtk--/patches/patch-ah
@@ -0,0 +1,13 @@
+$NetBSD: patch-ah,v 1.1 1999/03/14 17:12:54 rh Exp $
+
+--- src/gtk--/Makefile.in.orig Tue Mar 9 02:57:49 1999
++++ src/gtk--/Makefile.in Wed Mar 10 20:54:33 1999
+@@ -155,7 +155,7 @@
+
+ # This builds the library
+ libgtkmm_la_SOURCES = $(gtkmmc)
+-libgtkmm_la_LDFLAGS = -version-info $(LIBGTKMM_SO_VERSION) -release $(GTKMM_RELEASE) -no-undefined
++libgtkmm_la_LDFLAGS = -version-info $(LIBGTKMM_SO_VERSION) -no-undefined
+ libgtkmm_la_INCLUDES = $(GTK_CFLAGS)
+ libgtkmm_la_LIBADD = $(GTK_LIBS) @LA_FILES@
+ libgtkmm_la_DEPENDENCIES = @LA_FILES@
diff --git a/x11/gtk--/pkg/PLIST b/x11/gtk--/pkg/PLIST
index f048bbca9fe..0c478162d82 100644
--- a/x11/gtk--/pkg/PLIST
+++ b/x11/gtk--/pkg/PLIST
@@ -1,9 +1,107 @@
+@comment $NetBSD: PLIST,v 1.2 1999/03/14 17:12:54 rh Exp $
bin/gensig
bin/gtkmm-config
-include/gtk--.h
-include/gtk--/accelgroup.h
+include/gdk--/bitmap.h
+include/gdk--/colormap.h
+include/gdk--/gc.h
+include/gdk--/main.h
+include/gdk--/color.h
+include/gdk--/drawable.h
+include/gdk--/pixmap.h
+include/gdk--/font.h
+include/gdk--/types.h
+include/gdk--/window.h
+include/gdk--/visual.h
+include/gdk--/image.h
+include/gdk--/list.h
+include/gdk--/extra/imlib.h
+include/gdk--.h
+include/gtk--/private/adjustment_p.h
+include/gtk--/private/alignment_p.h
+include/gtk--/private/arg_p.h
+include/gtk--/private/arrow_p.h
+include/gtk--/private/aspectframe_p.h
+include/gtk--/private/base_p.h
+include/gtk--/private/bin_p.h
+include/gtk--/private/box_p.h
+include/gtk--/private/button_p.h
+include/gtk--/private/buttonbox_p.h
+include/gtk--/private/checkbutton_p.h
+include/gtk--/private/checkmenuitem_p.h
+include/gtk--/private/clist_p.h
+include/gtk--/private/colorselection_p.h
+include/gtk--/private/combo_p.h
+include/gtk--/private/container_p.h
+include/gtk--/private/curve_p.h
+include/gtk--/private/data_p.h
+include/gtk--/private/dialog_p.h
+include/gtk--/private/drawingarea_p.h
+include/gtk--/private/editable_p.h
+include/gtk--/private/entry_p.h
+include/gtk--/private/eventbox_p.h
+include/gtk--/private/fileselection_p.h
+include/gtk--/private/fixed_p.h
+include/gtk--/private/frame_p.h
+include/gtk--/private/handlebox_p.h
+include/gtk--/private/image_p.h
+include/gtk--/private/inputdialog_p.h
+include/gtk--/private/item_p.h
+include/gtk--/private/label_p.h
+include/gtk--/private/list_p.h
+include/gtk--/private/listitem_p.h
+include/gtk--/private/main_p.h
+include/gtk--/private/menu_p.h
+include/gtk--/private/menubar_p.h
+include/gtk--/private/menuitem_p.h
+include/gtk--/private/menupath_p.h
+include/gtk--/private/menushell_p.h
+include/gtk--/private/misc_p.h
+include/gtk--/private/notebook_p.h
+include/gtk--/private/object_p.h
+include/gtk--/private/optionmenu_p.h
+include/gtk--/private/paned_p.h
+include/gtk--/private/pixmap_p.h
+include/gtk--/private/preview_p.h
+include/gtk--/private/progressbar_p.h
+include/gtk--/private/radiobutton_p.h
+include/gtk--/private/radiomenuitem_p.h
+include/gtk--/private/range_p.h
+include/gtk--/private/rc_p.h
+include/gtk--/private/ruler_p.h
+include/gtk--/private/scale_p.h
+include/gtk--/private/scrollbar_p.h
+include/gtk--/private/scrolledwindow_p.h
+include/gtk--/private/separator_p.h
+include/gtk--/private/spinbutton_p.h
+include/gtk--/private/statusbar_p.h
+include/gtk--/private/style_p.h
+include/gtk--/private/table_p.h
+include/gtk--/private/text_p.h
+include/gtk--/private/tipsquery_p.h
+include/gtk--/private/togglebutton_p.h
+include/gtk--/private/toolbar_p.h
+include/gtk--/private/tooltips_p.h
+include/gtk--/private/tree_p.h
+include/gtk--/private/treeitem_p.h
+include/gtk--/private/viewport_p.h
+include/gtk--/private/widget_p.h
+include/gtk--/private/window_p.h
+include/gtk--/private/accelgroup_p.h
+include/gtk--/private/accellabel_p.h
+include/gtk--/private/calendar_p.h
+include/gtk--/private/ctree_p.h
+include/gtk--/private/fontselection_p.h
+include/gtk--/private/invisible_p.h
+include/gtk--/private/itemfactory_p.h
+include/gtk--/private/layout_p.h
+include/gtk--/private/menufactory_p.h
+include/gtk--/private/packer_p.h
+include/gtk--/private/plug_p.h
+include/gtk--/private/progress_p.h
+include/gtk--/private/socket_p.h
include/gtk--/adjustment.h
include/gtk--/alignment.h
+include/gtk--/arg.h
include/gtk--/arrow.h
include/gtk--/aspectframe.h
include/gtk--/base.h
@@ -15,10 +113,8 @@ include/gtk--/checkbutton.h
include/gtk--/checkmenuitem.h
include/gtk--/clist.h
include/gtk--/colorselection.h
-include/gtk--/colorselectiondialog.h
include/gtk--/combo.h
include/gtk--/container.h
-include/gtk--/ctree.h
include/gtk--/curve.h
include/gtk--/data.h
include/gtk--/dialog.h
@@ -28,21 +124,17 @@ include/gtk--/entry.h
include/gtk--/eventbox.h
include/gtk--/fileselection.h
include/gtk--/fixed.h
-include/gtk--/fontselection.h
include/gtk--/frame.h
-include/gtk--/gc.h
include/gtk--/handlebox.h
include/gtk--/image.h
include/gtk--/inputdialog.h
include/gtk--/item.h
-include/gtk--/itemfactory.h
include/gtk--/label.h
include/gtk--/list.h
include/gtk--/listitem.h
include/gtk--/main.h
include/gtk--/menu.h
include/gtk--/menubar.h
-include/gtk--/menufactory.h
include/gtk--/menuitem.h
include/gtk--/menupath.h
include/gtk--/menushell.h
@@ -53,11 +145,11 @@ include/gtk--/optionmenu.h
include/gtk--/paned.h
include/gtk--/pixmap.h
include/gtk--/preview.h
-include/gtk--/progress.h
include/gtk--/progressbar.h
include/gtk--/radiobutton.h
include/gtk--/radiomenuitem.h
include/gtk--/range.h
+include/gtk--/rc.h
include/gtk--/ruler.h
include/gtk--/scale.h
include/gtk--/scrollbar.h
@@ -77,20 +169,171 @@ include/gtk--/treeitem.h
include/gtk--/viewport.h
include/gtk--/widget.h
include/gtk--/window.h
-include/gtk--sig.h
-include/gtk--sigcommon.h
-include/gtk--sigconn.h
+include/gtk--/accelgroup.h
+include/gtk--/accellabel.h
+include/gtk--/calendar.h
+include/gtk--/ctree.h
+include/gtk--/fontselection.h
+include/gtk--/invisible.h
+include/gtk--/itemfactory.h
+include/gtk--/layout.h
+include/gtk--/menufactory.h
+include/gtk--/packer.h
+include/gtk--/plug.h
+include/gtk--/progress.h
+include/gtk--/socket.h
+include/gtk--sigslot.h
include/gtk--sigcpp.h
include/gtk--sigproxy.h
-include/gtk--sigslot.h
+include/gtk--.h
+include/gtk--sig.h
+include/gtk--sigconn.h
+include/gtk--sigcommon.h
+include/glib--.h
+lib/Gtk--/include/gdk--config.h
lib/Gtk--/include/gtk--config.h
-lib/libgtkmm-1.1.a
-lib/libgtkmm-1.1.la
-lib/libgtkmm-1.1.so
-lib/libgtkmm-1.1.so.1.1
-@exec /sbin/ldconfig -m %B
-@unexec /sbin/ldconfig -R
+lib/libgdkmm.so.1.0
+lib/libgdkmm.a
+lib/libgtkmm.so.5.0
+lib/libgtkmm.a
+man/man3/G_SList_Iterator.3
+man/man3/G_IntList.3
+man/man3/G_IntList_Iterator.3
+man/man3/G_List.3
+man/man3/G_List_Cpp_Iterator.3
+man/man3/G_List_Iterator.3
+man/man3/GtkBase.3
+man/man3/GtkBaseClass.3
+man/man3/Gtk_AccelEntry.3
+man/man3/Gtk_AccelGroup.3
+man/man3/Gtk_AccelLabel.3
+man/man3/Gtk_Adjustment.3
+man/man3/Gtk_Alignment.3
+man/man3/Gtk_ArgBase.3
+man/man3/Gtk_ArgObject.3
+man/man3/Gtk_ArgSimple.3
+man/man3/Gtk_ArgString.3
+man/man3/Gtk_Arrow.3
+man/man3/Gtk_AspectFrame.3
+man/man3/Gtk_Base.3
+man/man3/Gtk_Base_Class.3
+man/man3/Gtk_Bin.3
+man/man3/Gtk_Box.3
+man/man3/Gtk_Button.3
+man/man3/Gtk_ButtonBox.3
+man/man3/Gtk_CList.3
+man/man3/Gtk_CTree.3
+man/man3/Gtk_CTreeNode.3
+man/man3/Gtk_CTreeRow.3
+man/man3/Gtk_Calendar.3
+man/man3/Gtk_CheckButton.3
+man/man3/Gtk_CheckMenuItem.3
+man/man3/Gtk_ColorSelection.3
+man/man3/Gtk_ColorSelectionDialog.3
+man/man3/Gtk_Combo.3
+man/man3/Gtk_Container.3
+man/man3/Gtk_Curve.3
+man/man3/Gtk_Data.3
+man/man3/Gtk_Dialog.3
+man/man3/Gtk_DrawingArea.3
+man/man3/Gtk_Editable.3
+man/man3/Gtk_Entry.3
+man/man3/Gtk_EventBox.3
+man/man3/Gtk_FileSelection.3
+man/man3/Gtk_Fixed.3
+man/man3/Gtk_FontSelection.3
+man/man3/Gtk_FontSelectionDialog.3
+man/man3/Gtk_Frame.3
+man/man3/Gtk_GammaCurve.3
+man/man3/Gtk_HBox.3
+man/man3/Gtk_HButtonBox.3
+man/man3/Gtk_HPaned.3
+man/man3/Gtk_HRuler.3
+man/man3/Gtk_HScale.3
+man/man3/Gtk_HScrollbar.3
+man/man3/Gtk_HSeparator.3
+man/man3/Gtk_HandleBox.3
+man/man3/Gtk_Image.3
+man/man3/Gtk_InputDialog.3
+man/man3/Gtk_Invisible.3
+man/man3/Gtk_Item.3
+man/man3/Gtk_ItemFactory.3
+man/man3/Gtk_ItemFactory_Menu.3
+man/man3/Gtk_ItemFactory_MenuBar.3
+man/man3/Gtk_ItemFactory_OptionMenu.3
+man/man3/Gtk_Label.3
+man/man3/Gtk_Layout.3
+man/man3/Gtk_List.3
+man/man3/Gtk_ListItem.3
+man/man3/Gtk_Main.3
+man/man3/Gtk_Menu.3
+man/man3/Gtk_MenuBar.3
+man/man3/Gtk_MenuFactory.3
+man/man3/Gtk_MenuItem.3
+man/man3/Gtk_MenuPath.3
+man/man3/Gtk_MenuShell.3
+man/man3/Gtk_Misc.3
+man/man3/Gtk_Notebook.3
+man/man3/Gtk_NotebookPage.3
+man/man3/Gtk_Object.3
+man/man3/Gtk_ObjectHandle.3
+man/man3/Gtk_ObjectHandle_ref.3
+man/man3/Gtk_OptionMenu.3
+man/man3/Gtk_Packer.3
+man/man3/Gtk_Paned.3
+man/man3/Gtk_Pixmap.3
+man/man3/Gtk_Plug.3
+man/man3/Gtk_Preview.3
+man/man3/Gtk_Progress.3
+man/man3/Gtk_ProgressBar.3
+man/man3/Gtk_RC.3
+man/man3/Gtk_RadioButton.3
+man/man3/Gtk_RadioMenuItem.3
+man/man3/Gtk_Range.3
+man/man3/Gtk_RcStyle.3
+man/man3/Gtk_Ruler.3
+man/man3/Gtk_Scale.3
+man/man3/Gtk_Scrollbar.3
+man/man3/Gtk_ScrolledWindow.3
+man/man3/Gtk_Separator.3
+man/man3/Gtk_Socket.3
+man/man3/Gtk_SpinButton.3
+man/man3/Gtk_Statusbar.3
+man/man3/Gtk_Style.3
+man/man3/Gtk_Table.3
+man/man3/Gtk_Text.3
+man/man3/Gtk_TipsQuery.3
+man/man3/Gtk_ToggleButton.3
+man/man3/Gtk_Toolbar.3
+man/man3/Gtk_Tooltips.3
+man/man3/Gtk_Trashcan.3
+man/man3/Gtk_Trashcan_Helper.3
+man/man3/Gtk_Tree.3
+man/man3/Gtk_TreeItem.3
+man/man3/Gtk_VBox.3
+man/man3/Gtk_VButtonBox.3
+man/man3/Gtk_VPaned.3
+man/man3/Gtk_VRuler.3
+man/man3/Gtk_VScale.3
+man/man3/Gtk_VScrollbar.3
+man/man3/Gtk_VSeparator.3
+man/man3/Gtk_Viewport.3
+man/man3/Gtk_Widget.3
+man/man3/Gtk_Window.3
+man/man3/ItemFactoryConnector.3
+man/man3/ItemFactoryConnectorBase.3
+man/man3/MenuFactoryConnector.3
+man/man3/MenuFactoryConnectorBase.3
+man/man3/ToolbarConnector.3
+man/man3/ToolbarConnectorBase.3
+man/man3/Toolbar_Child.3
+man/man3/_gtk_string.3
+man/man3/gtkmm_add_signal_class.3
share/aclocal/gtk--.m4
+@unexec rmdir %D/share/aclocal 2>/dev/null || true
+@dirrm include/gdk--/extra
+@dirrm include/gdk--
+@dirrm include/gtk--/private
@dirrm include/gtk--
@dirrm lib/Gtk--/include
@dirrm lib/Gtk--