From 24a5e033cbdf70923c6ffc93844858a6a5dd0caf Mon Sep 17 00:00:00 2001 From: bland Date: Sun, 19 Sep 2004 17:56:34 +0000 Subject: Add gtk 2.4.10, Gimp Toolkit for X11 GUI (current stable version). git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@2867 df743ca5-7f9a-e211-a948-0013205c9059 --- x11-toolkits/gtk20/Makefile | 76 ++++ x11-toolkits/gtk20/distinfo | 4 + x11-toolkits/gtk20/files/patch-Makefile.in | 11 + x11-toolkits/gtk20/files/patch-ad | 23 + x11-toolkits/gtk20/files/patch-ag | 19 + x11-toolkits/gtk20/files/patch-ah | 11 + x11-toolkits/gtk20/files/patch-ai | 11 + x11-toolkits/gtk20/files/patch-ak | 14 + .../gtk20/files/patch-gdk-pixbuf_Makefile.in | 13 + x11-toolkits/gtk20/files/patch-gtk_gtkicontheme.c | 26 ++ .../gtk20/files/patch-gtk_xdgmime_xdgmime.c | 11 + x11-toolkits/gtk20/pkg-descr | 10 + x11-toolkits/gtk20/pkg-plist | 462 +++++++++++++++++++++ 13 files changed, 691 insertions(+) create mode 100644 x11-toolkits/gtk20/Makefile create mode 100644 x11-toolkits/gtk20/distinfo create mode 100644 x11-toolkits/gtk20/files/patch-Makefile.in create mode 100644 x11-toolkits/gtk20/files/patch-ad create mode 100644 x11-toolkits/gtk20/files/patch-ag create mode 100644 x11-toolkits/gtk20/files/patch-ah create mode 100644 x11-toolkits/gtk20/files/patch-ai create mode 100644 x11-toolkits/gtk20/files/patch-ak create mode 100644 x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in create mode 100644 x11-toolkits/gtk20/files/patch-gtk_gtkicontheme.c create mode 100644 x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c create mode 100644 x11-toolkits/gtk20/pkg-descr create mode 100644 x11-toolkits/gtk20/pkg-plist diff --git a/x11-toolkits/gtk20/Makefile b/x11-toolkits/gtk20/Makefile new file mode 100644 index 000000000..99c84828d --- /dev/null +++ b/x11-toolkits/gtk20/Makefile @@ -0,0 +1,76 @@ +# New ports collection makefile for: gtk13 +# Date Created: 28 Sep 1997 +# Whom: Vanilla I. Shu +# +# $FreeBSD: ports/x11-toolkits/gtk20/Makefile,v 1.139 2004/09/17 02:09:28 marcus Exp $ +# + +PORTNAME= gtk +PORTVERSION= 2.4.10 +CATEGORIES= x11-toolkits +MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/2.4,} \ + ftp://ftp.gtk.org/pub/gtk/v2.3/ \ + ftp://ftp.gimp.org/pub/%SUBDIR%/ \ + ftp://ftp.cs.umn.edu/pub/gimp/%SUBDIR%/ \ + http://www.ameth.org/gimp/%SUBDIR%/ \ + ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/%SUBDIR%/ \ + ${MASTER_SITE_RINGSERVER:S,%SUBDIR%,graphics/gimp/%SUBDIR%,} +MASTER_SITE_SUBDIR= gtk/v${PORTVERSION:R} +DISTNAME= gtk+-${PORTVERSION} +DIST_SUBDIR= gnome2 + +.if defined(WITH_DROPSHADOW) +PATCH_SITES= ${MASTER_SITE_SOURCEFORGE} +PATCH_SITE_SUBDIR= xfce +PATCHFILES= gtk+-2.4.0-menushadow.patch +PATCH_DIST_STRIP= -p1 +.endif + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Gimp Toolkit for X11 GUI (current stable version) + +LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png \ + tiff.4:${PORTSDIR}/graphics/tiff \ + jpeg.9:${PORTSDIR}/graphics/jpeg +RUN_DEPENDS= ${LOCALBASE}/share/mime/magic:${PORTSDIR}/misc/shared-mime-info \ + ${X11BASE}/share/icons/hicolor/index.theme:${PORTSDIR}/misc/hicolor-icon-theme + +USE_BZIP2= yes +LATEST_LINK= gtk20 +USE_X_PREFIX= yes +USE_XPM= yes +USE_REINPLACE= yes +USE_PERL5= yes +INSTALLS_SHLIB= yes +USE_LIBTOOL_VER=15 +USE_GNOME= gnomehack atk pango +CONFIGURE_ARGS= --enable-static --with-xinput=yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ + -I${LOCALBASE}/include -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" +PLIST_SUB= GTK_VERSION="2.4.0" + +pre-everything:: +.if !defined(WITH_DROPSHADOW) + @${ECHO_MSG} + @${ECHO_MSG} "If you want to compile with experimental menu dropshadow patch," + @${ECHO_MSG} "hit Ctrl-C right now and use make \"WITH_DROPSHADOW=yes\"" + @${ECHO_MSG} "NOTE: This option is not supported by the FreeBSD GNOME Team." + @${ECHO_MSG} "If the patch does not work or causes the build to fail, just" + @${ECHO_MSG} "stop using the patch; we will not further debug it." + @${ECHO_MSG} +.endif + +post-patch: + @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${GREP} -l lgmodule | \ + ${XARGS} ${REINPLACE_CMD} -e 's|-lgmodule|@GMODULE_LIBS@|g' + @${REINPLACE_CMD} -e 's|[{]libdir[}]/locale|{datadir}/locale|g' \ + ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \ + s|%%X11BASE%%|${X11BASE}|g' \ + ${WRKSRC}/gtk/xdgmime/xdgmime.c + +pre-build: + @${RM} -rf ${WRKSRC}/docs/gtk.info* + +.include diff --git a/x11-toolkits/gtk20/distinfo b/x11-toolkits/gtk20/distinfo new file mode 100644 index 000000000..0e94b34be --- /dev/null +++ b/x11-toolkits/gtk20/distinfo @@ -0,0 +1,4 @@ +MD5 (gnome2/gtk+-2.4.10.tar.bz2) = d74a4eaa2cded9c125c6b322cc6622ec +SIZE (gnome2/gtk+-2.4.10.tar.bz2) = 9587307 +MD5 (gnome2/gtk+-2.4.0-menushadow.patch) = 5dde5c5af8f25d282c365663a7256b5c +SIZE (gnome2/gtk+-2.4.0-menushadow.patch) = 15603 diff --git a/x11-toolkits/gtk20/files/patch-Makefile.in b/x11-toolkits/gtk20/files/patch-Makefile.in new file mode 100644 index 000000000..c47baaab5 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-Makefile.in @@ -0,0 +1,11 @@ +--- Makefile.in.orig Thu Jan 22 19:40:10 2004 ++++ Makefile.in Thu Jan 22 19:40:52 2004 +@@ -286,7 +286,7 @@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + +-SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos tests contrib ++SRC_SUBDIRS = gdk-pixbuf gdk gtk modules demos contrib + SUBDIRS = po po-properties $(SRC_SUBDIRS) docs build m4macros + + # require automake 1.4 diff --git a/x11-toolkits/gtk20/files/patch-ad b/x11-toolkits/gtk20/files/patch-ad new file mode 100644 index 000000000..e9e4f314a --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-ad @@ -0,0 +1,23 @@ + +$FreeBSD: ports/x11-toolkits/gtk20/files/patch-ad,v 1.13 2004/04/05 03:11:37 marcus Exp $ + +--- gtk/gtkrc.c.orig Thu Dec 13 21:51:18 2001 ++++ gtk/gtkrc.c Fri Jan 18 11:14:14 2002 +@@ -336,7 +336,7 @@ + if (im_module_file) + result = g_strdup (im_module_file); + else +- result = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtk.immodules", NULL); ++ result = g_build_filename (GTK_DATA_PREFIX, "etc", "gtk-2.0", "gtk.immodules", NULL); + } + + return result; +@@ -418,7 +418,7 @@ + } + else + { +- str = g_build_filename (GTK_SYSCONFDIR, "gtk-2.0", "gtkrc", NULL); ++ str = g_build_filename (GTK_SYSCONFDIR, "gtk", NULL); + + gtk_rc_add_default_file (str); + g_free (str); diff --git a/x11-toolkits/gtk20/files/patch-ag b/x11-toolkits/gtk20/files/patch-ag new file mode 100644 index 000000000..b34d2b3f2 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-ag @@ -0,0 +1,19 @@ +--- gtk/Makefile.in.orig Fri Oct 24 21:45:12 2003 ++++ gtk/Makefile.in Fri Oct 24 21:46:49 2003 +@@ -301,7 +301,7 @@ + -DGTK_LIBDIR=\"$(libdir)\" \ + -DGTK_DATADIR=\"$(datadir)\" \ + -DGTK_DATA_PREFIX=\"$(prefix)\" \ +- -DGTK_SYSCONFDIR=\"$(sysconfdir)\" \ ++ -DGTK_SYSCONFDIR=\"$(datadir)/themes/Default/gtk-2.0\" \ + -DGTK_VERSION=\"$(GTK_VERSION)\" \ + -DGTK_BINARY_VERSION=\"$(GTK_BINARY_VERSION)\" \ + -DGTK_HOST=\"$(host)\" \ +@@ -856,6 +856,7 @@ + TEST_DEPS = $(DEPS) gtk.immodules + + LDADDS = \ ++ $(GLIB_LIBS) \ + $(gtktargetlib) \ + $(top_builddir)/gdk-pixbuf/libgdk_pixbuf-$(GTK_API_VERSION).la \ + $(top_builddir)/gdk/$(gdktargetlib) diff --git a/x11-toolkits/gtk20/files/patch-ah b/x11-toolkits/gtk20/files/patch-ah new file mode 100644 index 000000000..88bfe209d --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-ah @@ -0,0 +1,11 @@ +--- docs/Makefile.in.orig Fri Oct 24 21:47:52 2003 ++++ docs/Makefile.in Fri Oct 24 23:35:09 2003 +@@ -179,7 +179,7 @@ + MAINT = @MAINT@ + MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ + MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ +-MAKEINFO = @MAKEINFO@ ++MAKEINFO = @MAKEINFO@ --no-split + MKINSTALLDIRS = @MKINSTALLDIRS@ + MSGFMT = @MSGFMT@ + MS_LIB_AVAILABLE_FALSE = @MS_LIB_AVAILABLE_FALSE@ diff --git a/x11-toolkits/gtk20/files/patch-ai b/x11-toolkits/gtk20/files/patch-ai new file mode 100644 index 000000000..a04d08ef5 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-ai @@ -0,0 +1,11 @@ +--- docs/reference/Makefile.in.orig Fri Oct 24 23:38:06 2003 ++++ docs/reference/Makefile.in Fri Oct 24 23:48:00 2003 +@@ -286,7 +286,7 @@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ + +-SUBDIRS = gdk-pixbuf gdk gtk ++SUBDIRS = #gdk-pixbuf gdk gtk + subdir = docs/reference + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = $(top_builddir)/config.h diff --git a/x11-toolkits/gtk20/files/patch-ak b/x11-toolkits/gtk20/files/patch-ak new file mode 100644 index 000000000..182426010 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-ak @@ -0,0 +1,14 @@ + +$FreeBSD: ports/x11-toolkits/gtk20/files/patch-ak,v 1.5 2004/04/05 03:11:37 marcus Exp $ + +--- gdk/Makefile.in.orig Thu Feb 14 12:38:26 2002 ++++ gdk/Makefile.in Thu Feb 14 12:45:37 2002 +@@ -315,7 +315,7 @@ + # + # Rule to install gdkconfig.h header file + # +-configexecincludedir = $(libdir)/gtk-2.0/include ++configexecincludedir = $(prefix)/include/gtk-2.0 + + #note: not gdkconfig.h + BUILT_SOURCES = stamp-gc-h @REBUILD@ gdkenumtypes.c gdkenumtypes.h diff --git a/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in new file mode 100644 index 000000000..c2cb10b54 --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gdk-pixbuf_Makefile.in @@ -0,0 +1,13 @@ +--- gdk-pixbuf/Makefile.in.orig Thu Nov 20 15:39:55 2003 ++++ gdk-pixbuf/Makefile.in Thu Nov 20 15:40:17 2003 +@@ -517,7 +517,9 @@ + + + AM_CPPFLAGS = "-DPIXBUF_LIBDIR=\"$(loaderdir)\"" "-DBUILT_MODULES_DIR=\"$(srcdir)/.libs\"" +-LDADDS = libgdk_pixbuf-$(GTK_API_VERSION).la ++LDADDS = \ ++ $(GLIB_LIBS) \ ++ libgdk_pixbuf-$(GTK_API_VERSION).la + + noinst_PROGRAMS = test-gdk-pixbuf + test_gdk_pixbuf_LDADD = $(LDADDS) diff --git a/x11-toolkits/gtk20/files/patch-gtk_gtkicontheme.c b/x11-toolkits/gtk20/files/patch-gtk_gtkicontheme.c new file mode 100644 index 000000000..07bb57a6d --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gtk_gtkicontheme.c @@ -0,0 +1,26 @@ +--- gtk/gtkicontheme.c.orig Thu Jan 29 16:53:42 2004 ++++ gtk/gtkicontheme.c Thu Jan 29 16:54:56 2004 +@@ -526,7 +526,7 @@ + + priv->custom_theme = FALSE; + priv->current_theme = g_strdup (DEFAULT_THEME_NAME); +- priv->search_path = g_new (char *, 5); ++ priv->search_path = g_new (char *, 7); + + + priv->search_path[0] = g_build_filename (g_get_home_dir (), +@@ -534,9 +534,11 @@ + NULL); + priv->search_path[1] = g_build_filename (GTK_DATADIR, "pixmaps", NULL); + priv->search_path[2] = g_build_filename (GTK_DATADIR, "icons", NULL); +- priv->search_path[3] = g_strdup ("/usr/share/icons"); +- priv->search_path[4] = g_strdup ("/usr/share/pixmaps"); +- priv->search_path_len = 5; ++ priv->search_path[3] = g_build_filename (GTK_DATADIR, "gnome", "pixmaps", NULL); ++ priv->search_path[4] = g_build_filename (GTK_DATADIR, "gnome", "icons", NULL); ++ priv->search_path[5] = g_strdup ("/usr/share/icons"); ++ priv->search_path[6] = g_strdup ("/usr/share/pixmaps"); ++ priv->search_path_len = 7; + + priv->themes_valid = FALSE; + priv->themes = NULL; diff --git a/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c b/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c new file mode 100644 index 000000000..76c5eea6c --- /dev/null +++ b/x11-toolkits/gtk20/files/patch-gtk_xdgmime_xdgmime.c @@ -0,0 +1,11 @@ +--- gtk/xdgmime/xdgmime.c.orig Wed Jun 23 20:19:43 2004 ++++ gtk/xdgmime/xdgmime.c Wed Jun 23 20:19:56 2004 +@@ -98,7 +98,7 @@ + + xdg_data_dirs = getenv ("XDG_DATA_DIRS"); + if (xdg_data_dirs == NULL) +- xdg_data_dirs = "/usr/local/share/:/usr/share/"; ++ xdg_data_dirs = "%%X11BASE%%/share/gnome/:/usr/local/share/gnome/:%%X11BASE%%/share/:/usr/local/share/:/usr/share/"; + + ptr = xdg_data_dirs; + diff --git a/x11-toolkits/gtk20/pkg-descr b/x11-toolkits/gtk20/pkg-descr new file mode 100644 index 000000000..8cee4afc7 --- /dev/null +++ b/x11-toolkits/gtk20/pkg-descr @@ -0,0 +1,10 @@ +The GIMP ToolKit (GTK+) is a collection of GUI widgets. GTK+ +essentially provides the building blocks from which GUIs can be +built. It is highly themable, and its functionality is highly +extensible. + +GTK+-2 is a very stable release, similar only in design to GTK+-1. +GTK+-2 can coexist happily alongside GTK+-1, but applications are +written for one version or the other. + +WWW: http://www.gtk.org/ diff --git a/x11-toolkits/gtk20/pkg-plist b/x11-toolkits/gtk20/pkg-plist new file mode 100644 index 000000000..3e19bed37 --- /dev/null +++ b/x11-toolkits/gtk20/pkg-plist @@ -0,0 +1,462 @@ +bin/gdk-pixbuf-csource +bin/gdk-pixbuf-query-loaders +bin/gtk-demo +bin/gtk-query-immodules-2.0 +etc/gtk-2.0/gdk-pixbuf.loaders +etc/gtk-2.0/gtk.immodules +include/gtk-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlib.h +include/gtk-2.0/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-animation.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-enum-types.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-features.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-io.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-loader.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf-marshal.h +include/gtk-2.0/gdk-pixbuf/gdk-pixbuf.h +include/gtk-2.0/gdk-pixbuf/gdk-pixdata.h +include/gtk-2.0/gdk/gdk.h +include/gtk-2.0/gdk/gdkcolor.h +include/gtk-2.0/gdk/gdkcursor.h +include/gtk-2.0/gdk/gdkdisplay.h +include/gtk-2.0/gdk/gdkdisplaymanager.h +include/gtk-2.0/gdk/gdkdnd.h +include/gtk-2.0/gdk/gdkdrawable.h +include/gtk-2.0/gdk/gdkenumtypes.h +include/gtk-2.0/gdk/gdkevents.h +include/gtk-2.0/gdk/gdkfont.h +include/gtk-2.0/gdk/gdkgc.h +include/gtk-2.0/gdk/gdki18n.h +include/gtk-2.0/gdk/gdkimage.h +include/gtk-2.0/gdk/gdkinput.h +include/gtk-2.0/gdk/gdkkeys.h +include/gtk-2.0/gdk/gdkkeysyms.h +include/gtk-2.0/gdk/gdkpango.h +include/gtk-2.0/gdk/gdkpixbuf.h +include/gtk-2.0/gdk/gdkpixmap.h +include/gtk-2.0/gdk/gdkprivate.h +include/gtk-2.0/gdk/gdkproperty.h +include/gtk-2.0/gdk/gdkregion.h +include/gtk-2.0/gdk/gdkrgb.h +include/gtk-2.0/gdk/gdkscreen.h +include/gtk-2.0/gdk/gdkselection.h +include/gtk-2.0/gdk/gdkspawn.h +include/gtk-2.0/gdk/gdktypes.h +include/gtk-2.0/gdk/gdkvisual.h +include/gtk-2.0/gdk/gdkwindow.h +include/gtk-2.0/gdk/gdkx.h +include/gtk-2.0/gdkconfig.h +include/gtk-2.0/gtk/gtk.h +include/gtk-2.0/gtk/gtkaccelgroup.h +include/gtk-2.0/gtk/gtkaccellabel.h +include/gtk-2.0/gtk/gtkaccelmap.h +include/gtk-2.0/gtk/gtkaccessible.h +include/gtk-2.0/gtk/gtkaction.h +include/gtk-2.0/gtk/gtkactiongroup.h +include/gtk-2.0/gtk/gtkadjustment.h +include/gtk-2.0/gtk/gtkalignment.h +include/gtk-2.0/gtk/gtkarrow.h +include/gtk-2.0/gtk/gtkaspectframe.h +include/gtk-2.0/gtk/gtkbbox.h +include/gtk-2.0/gtk/gtkbin.h +include/gtk-2.0/gtk/gtkbindings.h +include/gtk-2.0/gtk/gtkbox.h +include/gtk-2.0/gtk/gtkbutton.h +include/gtk-2.0/gtk/gtkcalendar.h +include/gtk-2.0/gtk/gtkcelleditable.h +include/gtk-2.0/gtk/gtkcelllayout.h +include/gtk-2.0/gtk/gtkcellrenderer.h +include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +include/gtk-2.0/gtk/gtkcellrenderertext.h +include/gtk-2.0/gtk/gtkcellrenderertoggle.h +include/gtk-2.0/gtk/gtkcheckbutton.h +include/gtk-2.0/gtk/gtkcheckmenuitem.h +include/gtk-2.0/gtk/gtkclipboard.h +include/gtk-2.0/gtk/gtkclist.h +include/gtk-2.0/gtk/gtkcolorbutton.h +include/gtk-2.0/gtk/gtkcolorsel.h +include/gtk-2.0/gtk/gtkcolorseldialog.h +include/gtk-2.0/gtk/gtkcombo.h +include/gtk-2.0/gtk/gtkcombobox.h +include/gtk-2.0/gtk/gtkcomboboxentry.h +include/gtk-2.0/gtk/gtkcontainer.h +include/gtk-2.0/gtk/gtkctree.h +include/gtk-2.0/gtk/gtkcurve.h +include/gtk-2.0/gtk/gtkdebug.h +include/gtk-2.0/gtk/gtkdialog.h +include/gtk-2.0/gtk/gtkdnd.h +include/gtk-2.0/gtk/gtkdrawingarea.h +include/gtk-2.0/gtk/gtkeditable.h +include/gtk-2.0/gtk/gtkentry.h +include/gtk-2.0/gtk/gtkentrycompletion.h +include/gtk-2.0/gtk/gtkenums.h +include/gtk-2.0/gtk/gtkeventbox.h +include/gtk-2.0/gtk/gtkexpander.h +include/gtk-2.0/gtk/gtkfilechooser.h +include/gtk-2.0/gtk/gtkfilechooserdialog.h +include/gtk-2.0/gtk/gtkfilechooserwidget.h +include/gtk-2.0/gtk/gtkfilefilter.h +include/gtk-2.0/gtk/gtkfilesel.h +include/gtk-2.0/gtk/gtkfilesystem.h +include/gtk-2.0/gtk/gtkfixed.h +include/gtk-2.0/gtk/gtkfontbutton.h +include/gtk-2.0/gtk/gtkfontsel.h +include/gtk-2.0/gtk/gtkframe.h +include/gtk-2.0/gtk/gtkgamma.h +include/gtk-2.0/gtk/gtkgc.h +include/gtk-2.0/gtk/gtkhandlebox.h +include/gtk-2.0/gtk/gtkhbbox.h +include/gtk-2.0/gtk/gtkhbox.h +include/gtk-2.0/gtk/gtkhpaned.h +include/gtk-2.0/gtk/gtkhruler.h +include/gtk-2.0/gtk/gtkhscale.h +include/gtk-2.0/gtk/gtkhscrollbar.h +include/gtk-2.0/gtk/gtkhseparator.h +include/gtk-2.0/gtk/gtkiconfactory.h +include/gtk-2.0/gtk/gtkicontheme.h +include/gtk-2.0/gtk/gtkimage.h +include/gtk-2.0/gtk/gtkimagemenuitem.h +include/gtk-2.0/gtk/gtkimcontext.h +include/gtk-2.0/gtk/gtkimcontextsimple.h +include/gtk-2.0/gtk/gtkimmodule.h +include/gtk-2.0/gtk/gtkimmulticontext.h +include/gtk-2.0/gtk/gtkinputdialog.h +include/gtk-2.0/gtk/gtkinvisible.h +include/gtk-2.0/gtk/gtkitem.h +include/gtk-2.0/gtk/gtkitemfactory.h +include/gtk-2.0/gtk/gtklabel.h +include/gtk-2.0/gtk/gtklayout.h +include/gtk-2.0/gtk/gtklist.h +include/gtk-2.0/gtk/gtklistitem.h +include/gtk-2.0/gtk/gtkliststore.h +include/gtk-2.0/gtk/gtkmain.h +include/gtk-2.0/gtk/gtkmarshal.h +include/gtk-2.0/gtk/gtkmenu.h +include/gtk-2.0/gtk/gtkmenubar.h +include/gtk-2.0/gtk/gtkmenuitem.h +include/gtk-2.0/gtk/gtkmenushell.h +include/gtk-2.0/gtk/gtkmessagedialog.h +include/gtk-2.0/gtk/gtkmisc.h +include/gtk-2.0/gtk/gtknotebook.h +include/gtk-2.0/gtk/gtkobject.h +include/gtk-2.0/gtk/gtkoldeditable.h +include/gtk-2.0/gtk/gtkoptionmenu.h +include/gtk-2.0/gtk/gtkpaned.h +include/gtk-2.0/gtk/gtkpixmap.h +include/gtk-2.0/gtk/gtkplug.h +include/gtk-2.0/gtk/gtkpreview.h +include/gtk-2.0/gtk/gtkprivate.h +include/gtk-2.0/gtk/gtkprogress.h +include/gtk-2.0/gtk/gtkprogressbar.h +include/gtk-2.0/gtk/gtkradioaction.h +include/gtk-2.0/gtk/gtkradiobutton.h +include/gtk-2.0/gtk/gtkradiomenuitem.h +include/gtk-2.0/gtk/gtkradiotoolbutton.h +include/gtk-2.0/gtk/gtkrange.h +include/gtk-2.0/gtk/gtkrc.h +include/gtk-2.0/gtk/gtkruler.h +include/gtk-2.0/gtk/gtkscale.h +include/gtk-2.0/gtk/gtkscrollbar.h +include/gtk-2.0/gtk/gtkscrolledwindow.h +include/gtk-2.0/gtk/gtkselection.h +include/gtk-2.0/gtk/gtkseparator.h +include/gtk-2.0/gtk/gtkseparatormenuitem.h +include/gtk-2.0/gtk/gtkseparatortoolitem.h +include/gtk-2.0/gtk/gtksettings.h +include/gtk-2.0/gtk/gtksignal.h +include/gtk-2.0/gtk/gtksizegroup.h +include/gtk-2.0/gtk/gtksocket.h +include/gtk-2.0/gtk/gtkspinbutton.h +include/gtk-2.0/gtk/gtkstatusbar.h +include/gtk-2.0/gtk/gtkstock.h +include/gtk-2.0/gtk/gtkstyle.h +include/gtk-2.0/gtk/gtktable.h +include/gtk-2.0/gtk/gtktearoffmenuitem.h +include/gtk-2.0/gtk/gtktext.h +include/gtk-2.0/gtk/gtktextbuffer.h +include/gtk-2.0/gtk/gtktextchild.h +include/gtk-2.0/gtk/gtktextdisplay.h +include/gtk-2.0/gtk/gtktextiter.h +include/gtk-2.0/gtk/gtktextlayout.h +include/gtk-2.0/gtk/gtktextmark.h +include/gtk-2.0/gtk/gtktexttag.h +include/gtk-2.0/gtk/gtktexttagtable.h +include/gtk-2.0/gtk/gtktextview.h +include/gtk-2.0/gtk/gtktipsquery.h +include/gtk-2.0/gtk/gtktoggleaction.h +include/gtk-2.0/gtk/gtktogglebutton.h +include/gtk-2.0/gtk/gtktoggletoolbutton.h +include/gtk-2.0/gtk/gtktoolbar.h +include/gtk-2.0/gtk/gtktoolbutton.h +include/gtk-2.0/gtk/gtktoolitem.h +include/gtk-2.0/gtk/gtktooltips.h +include/gtk-2.0/gtk/gtktree.h +include/gtk-2.0/gtk/gtktreednd.h +include/gtk-2.0/gtk/gtktreeitem.h +include/gtk-2.0/gtk/gtktreemodel.h +include/gtk-2.0/gtk/gtktreemodelfilter.h +include/gtk-2.0/gtk/gtktreemodelsort.h +include/gtk-2.0/gtk/gtktreeselection.h +include/gtk-2.0/gtk/gtktreesortable.h +include/gtk-2.0/gtk/gtktreestore.h +include/gtk-2.0/gtk/gtktreeview.h +include/gtk-2.0/gtk/gtktreeviewcolumn.h +include/gtk-2.0/gtk/gtktypebuiltins.h +include/gtk-2.0/gtk/gtktypeutils.h +include/gtk-2.0/gtk/gtkuimanager.h +include/gtk-2.0/gtk/gtkvbbox.h +include/gtk-2.0/gtk/gtkvbox.h +include/gtk-2.0/gtk/gtkversion.h +include/gtk-2.0/gtk/gtkviewport.h +include/gtk-2.0/gtk/gtkvpaned.h +include/gtk-2.0/gtk/gtkvruler.h +include/gtk-2.0/gtk/gtkvscale.h +include/gtk-2.0/gtk/gtkvscrollbar.h +include/gtk-2.0/gtk/gtkvseparator.h +include/gtk-2.0/gtk/gtkwidget.h +include/gtk-2.0/gtk/gtkwindow.h +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-am-et.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cedilla.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-cyrillic-translit.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-inuktitut.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ipa.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-thai-broken.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-er.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-ti-et.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-viqr.so +lib/gtk-2.0/%%GTK_VERSION%%/immodules/im-xim.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ani.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-bmp.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-gif.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ico.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-jpeg.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pcx.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-png.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-pnm.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-ras.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tga.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-tiff.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-wbmp.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xbm.so +lib/gtk-2.0/%%GTK_VERSION%%/loaders/libpixbufloader-xpm.so +lib/libgdk-x11-2.0.a +lib/libgdk-x11-2.0.so +lib/libgdk-x11-2.0.so.400 +lib/libgdk_pixbuf-2.0.a +lib/libgdk_pixbuf-2.0.so +lib/libgdk_pixbuf-2.0.so.400 +lib/libgdk_pixbuf_xlib-2.0.a +lib/libgdk_pixbuf_xlib-2.0.so +lib/libgdk_pixbuf_xlib-2.0.so.400 +lib/libgtk-x11-2.0.a +lib/libgtk-x11-2.0.so +lib/libgtk-x11-2.0.so.400 +libdata/pkgconfig/gdk-2.0.pc +libdata/pkgconfig/gdk-pixbuf-2.0.pc +libdata/pkgconfig/gdk-pixbuf-xlib-2.0.pc +libdata/pkgconfig/gdk-x11-2.0.pc +libdata/pkgconfig/gtk+-2.0.pc +libdata/pkgconfig/gtk+-x11-2.0.pc +share/aclocal/gtk-2.0.m4 +share/gtk-2.0/demo/alphatest.png +share/gtk-2.0/demo/apple-red.png +share/gtk-2.0/demo/appwindow.c +share/gtk-2.0/demo/background.jpg +share/gtk-2.0/demo/button_box.c +share/gtk-2.0/demo/changedisplay.c +share/gtk-2.0/demo/colorsel.c +share/gtk-2.0/demo/dialog.c +share/gtk-2.0/demo/drawingarea.c +share/gtk-2.0/demo/editable_cells.c +share/gtk-2.0/demo/entry_completion.c +share/gtk-2.0/demo/expander.c +share/gtk-2.0/demo/floppybuddy.gif +share/gtk-2.0/demo/gnome-applets.png +share/gtk-2.0/demo/gnome-calendar.png +share/gtk-2.0/demo/gnome-foot.png +share/gtk-2.0/demo/gnome-gimp.png +share/gtk-2.0/demo/gnome-gmush.png +share/gtk-2.0/demo/gnome-gsame.png +share/gtk-2.0/demo/gnu-keys.png +share/gtk-2.0/demo/gtk-logo-rgb.gif +share/gtk-2.0/demo/hypertext.c +share/gtk-2.0/demo/images.c +share/gtk-2.0/demo/list_store.c +share/gtk-2.0/demo/menus.c +share/gtk-2.0/demo/panes.c +share/gtk-2.0/demo/pixbufs.c +share/gtk-2.0/demo/sizegroup.c +share/gtk-2.0/demo/stock_browser.c +share/gtk-2.0/demo/textview.c +share/gtk-2.0/demo/tree_store.c +share/gtk-2.0/demo/ui_manager.c +share/locale/af/LC_MESSAGES/gtk20-properties.mo +share/locale/af/LC_MESSAGES/gtk20.mo +share/locale/am/LC_MESSAGES/gtk20-properties.mo +share/locale/am/LC_MESSAGES/gtk20.mo +share/locale/ar/LC_MESSAGES/gtk20-properties.mo +share/locale/ar/LC_MESSAGES/gtk20.mo +share/locale/az/LC_MESSAGES/gtk20-properties.mo +share/locale/az/LC_MESSAGES/gtk20.mo +share/locale/be/LC_MESSAGES/gtk20-properties.mo +share/locale/be/LC_MESSAGES/gtk20.mo +share/locale/bg/LC_MESSAGES/gtk20-properties.mo +share/locale/bg/LC_MESSAGES/gtk20.mo +share/locale/bn/LC_MESSAGES/gtk20-properties.mo +share/locale/bn/LC_MESSAGES/gtk20.mo +share/locale/br/LC_MESSAGES/gtk20-properties.mo +share/locale/br/LC_MESSAGES/gtk20.mo +share/locale/bs/LC_MESSAGES/gtk20-properties.mo +share/locale/bs/LC_MESSAGES/gtk20.mo +share/locale/ca/LC_MESSAGES/gtk20-properties.mo +share/locale/ca/LC_MESSAGES/gtk20.mo +share/locale/cs/LC_MESSAGES/gtk20-properties.mo +share/locale/cs/LC_MESSAGES/gtk20.mo +share/locale/cy/LC_MESSAGES/gtk20-properties.mo +share/locale/cy/LC_MESSAGES/gtk20.mo +share/locale/da/LC_MESSAGES/gtk20-properties.mo +share/locale/da/LC_MESSAGES/gtk20.mo +share/locale/de/LC_MESSAGES/gtk20-properties.mo +share/locale/de/LC_MESSAGES/gtk20.mo +share/locale/el/LC_MESSAGES/gtk20-properties.mo +share/locale/el/LC_MESSAGES/gtk20.mo +share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +share/locale/en_CA/LC_MESSAGES/gtk20.mo +share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +share/locale/en_GB/LC_MESSAGES/gtk20.mo +share/locale/es/LC_MESSAGES/gtk20-properties.mo +share/locale/es/LC_MESSAGES/gtk20.mo +share/locale/et/LC_MESSAGES/gtk20-properties.mo +share/locale/et/LC_MESSAGES/gtk20.mo +share/locale/eu/LC_MESSAGES/gtk20-properties.mo +share/locale/eu/LC_MESSAGES/gtk20.mo +share/locale/fa/LC_MESSAGES/gtk20-properties.mo +share/locale/fa/LC_MESSAGES/gtk20.mo +share/locale/fi/LC_MESSAGES/gtk20-properties.mo +share/locale/fi/LC_MESSAGES/gtk20.mo +share/locale/fr/LC_MESSAGES/gtk20-properties.mo +share/locale/fr/LC_MESSAGES/gtk20.mo +share/locale/ga/LC_MESSAGES/gtk20-properties.mo +share/locale/ga/LC_MESSAGES/gtk20.mo +share/locale/gl/LC_MESSAGES/gtk20-properties.mo +share/locale/gl/LC_MESSAGES/gtk20.mo +share/locale/gu/LC_MESSAGES/gtk20-properties.mo +share/locale/gu/LC_MESSAGES/gtk20.mo +share/locale/he/LC_MESSAGES/gtk20-properties.mo +share/locale/he/LC_MESSAGES/gtk20.mo +share/locale/hi/LC_MESSAGES/gtk20-properties.mo +share/locale/hi/LC_MESSAGES/gtk20.mo +share/locale/hr/LC_MESSAGES/gtk20-properties.mo +share/locale/hr/LC_MESSAGES/gtk20.mo +share/locale/hu/LC_MESSAGES/gtk20-properties.mo +share/locale/hu/LC_MESSAGES/gtk20.mo +share/locale/ia/LC_MESSAGES/gtk20-properties.mo +share/locale/ia/LC_MESSAGES/gtk20.mo +share/locale/id/LC_MESSAGES/gtk20-properties.mo +share/locale/id/LC_MESSAGES/gtk20.mo +share/locale/is/LC_MESSAGES/gtk20-properties.mo +share/locale/is/LC_MESSAGES/gtk20.mo +share/locale/it/LC_MESSAGES/gtk20-properties.mo +share/locale/it/LC_MESSAGES/gtk20.mo +share/locale/ja/LC_MESSAGES/gtk20-properties.mo +share/locale/ja/LC_MESSAGES/gtk20.mo +share/locale/ko/LC_MESSAGES/gtk20-properties.mo +share/locale/ko/LC_MESSAGES/gtk20.mo +share/locale/li/LC_MESSAGES/gtk20-properties.mo +share/locale/li/LC_MESSAGES/gtk20.mo +share/locale/lt/LC_MESSAGES/gtk20-properties.mo +share/locale/lt/LC_MESSAGES/gtk20.mo +share/locale/lv/LC_MESSAGES/gtk20-properties.mo +share/locale/lv/LC_MESSAGES/gtk20.mo +share/locale/mi/LC_MESSAGES/gtk20-properties.mo +share/locale/mi/LC_MESSAGES/gtk20.mo +share/locale/mk/LC_MESSAGES/gtk20-properties.mo +share/locale/mk/LC_MESSAGES/gtk20.mo +share/locale/ml/LC_MESSAGES/gtk20-properties.mo +share/locale/ml/LC_MESSAGES/gtk20.mo +share/locale/mn/LC_MESSAGES/gtk20-properties.mo +share/locale/mn/LC_MESSAGES/gtk20.mo +share/locale/mr/LC_MESSAGES/gtk20-properties.mo +share/locale/mr/LC_MESSAGES/gtk20.mo +share/locale/ms/LC_MESSAGES/gtk20-properties.mo +share/locale/ms/LC_MESSAGES/gtk20.mo +share/locale/nb/LC_MESSAGES/gtk20-properties.mo +share/locale/nb/LC_MESSAGES/gtk20.mo +share/locale/ne/LC_MESSAGES/gtk20-properties.mo +share/locale/ne/LC_MESSAGES/gtk20.mo +share/locale/nl/LC_MESSAGES/gtk20-properties.mo +share/locale/nl/LC_MESSAGES/gtk20.mo +share/locale/nn/LC_MESSAGES/gtk20-properties.mo +share/locale/nn/LC_MESSAGES/gtk20.mo +share/locale/no/LC_MESSAGES/gtk20-properties.mo +share/locale/no/LC_MESSAGES/gtk20.mo +share/locale/pa/LC_MESSAGES/gtk20-properties.mo +share/locale/pa/LC_MESSAGES/gtk20.mo +share/locale/pl/LC_MESSAGES/gtk20-properties.mo +share/locale/pl/LC_MESSAGES/gtk20.mo +share/locale/pt/LC_MESSAGES/gtk20-properties.mo +share/locale/pt/LC_MESSAGES/gtk20.mo +share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +share/locale/pt_BR/LC_MESSAGES/gtk20.mo +share/locale/ro/LC_MESSAGES/gtk20-properties.mo +share/locale/ro/LC_MESSAGES/gtk20.mo +share/locale/ru/LC_MESSAGES/gtk20-properties.mo +share/locale/ru/LC_MESSAGES/gtk20.mo +share/locale/sk/LC_MESSAGES/gtk20-properties.mo +share/locale/sk/LC_MESSAGES/gtk20.mo +share/locale/sl/LC_MESSAGES/gtk20-properties.mo +share/locale/sl/LC_MESSAGES/gtk20.mo +share/locale/sq/LC_MESSAGES/gtk20-properties.mo +share/locale/sq/LC_MESSAGES/gtk20.mo +share/locale/sr/LC_MESSAGES/gtk20-properties.mo +share/locale/sr/LC_MESSAGES/gtk20.mo +share/locale/sr@Latn/LC_MESSAGES/gtk20-properties.mo +share/locale/sr@Latn/LC_MESSAGES/gtk20.mo +share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +share/locale/sr@ije/LC_MESSAGES/gtk20.mo +share/locale/sv/LC_MESSAGES/gtk20-properties.mo +share/locale/sv/LC_MESSAGES/gtk20.mo +share/locale/ta/LC_MESSAGES/gtk20-properties.mo +share/locale/ta/LC_MESSAGES/gtk20.mo +share/locale/th/LC_MESSAGES/gtk20-properties.mo +share/locale/th/LC_MESSAGES/gtk20.mo +share/locale/tk/LC_MESSAGES/gtk20-properties.mo +share/locale/tk/LC_MESSAGES/gtk20.mo +share/locale/tr/LC_MESSAGES/gtk20-properties.mo +share/locale/tr/LC_MESSAGES/gtk20.mo +share/locale/uk/LC_MESSAGES/gtk20-properties.mo +share/locale/uk/LC_MESSAGES/gtk20.mo +share/locale/uz/LC_MESSAGES/gtk20-properties.mo +share/locale/uz/LC_MESSAGES/gtk20.mo +share/locale/uz@Latn/LC_MESSAGES/gtk20-properties.mo +share/locale/uz@Latn/LC_MESSAGES/gtk20.mo +share/locale/vi/LC_MESSAGES/gtk20-properties.mo +share/locale/vi/LC_MESSAGES/gtk20.mo +share/locale/wa/LC_MESSAGES/gtk20-properties.mo +share/locale/wa/LC_MESSAGES/gtk20.mo +share/locale/yi/LC_MESSAGES/gtk20-properties.mo +share/locale/yi/LC_MESSAGES/gtk20.mo +share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +share/locale/zh_CN/LC_MESSAGES/gtk20.mo +share/locale/zh_TW/LC_MESSAGES/gtk20-properties.mo +share/locale/zh_TW/LC_MESSAGES/gtk20.mo +share/themes/Default/gtk-2.0-key/gtkrc +share/themes/Default/gtk-2.0/gtkrc +share/themes/Emacs/gtk-2.0-key/gtkrc +@dirrm share/themes/Emacs/gtk-2.0-key +@dirrm share/themes/Emacs +@dirrm share/themes/Default/gtk-2.0-key +@dirrm share/themes/Default/gtk-2.0 +@dirrm share/gtk-2.0/demo +@dirrm share/gtk-2.0 +@dirrm lib/gtk-2.0/%%GTK_VERSION%%/loaders +@dirrm lib/gtk-2.0/%%GTK_VERSION%%/immodules +@dirrm lib/gtk-2.0/%%GTK_VERSION%% +@dirrm lib/gtk-2.0 +@dirrm include/gtk-2.0/gtk +@dirrm include/gtk-2.0/gdk-pixbuf-xlib +@dirrm include/gtk-2.0/gdk-pixbuf +@dirrm include/gtk-2.0/gdk +@dirrm include/gtk-2.0 +@dirrm etc/gtk-2.0 +@unexec /bin/rmdir %D/share/themes/Default 2>/dev/null || /usr/bin/true +@unexec /bin/rmdir %D/share/themes 2>/dev/null || /usr/bin/true -- cgit v1.2.3