summaryrefslogtreecommitdiffstats
path: root/x11-toolkits
diff options
context:
space:
mode:
authorkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-09-26 16:01:18 +0800
committerkwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059>2010-09-26 16:01:18 +0800
commitf586300595a5d2937f38a85ab91d9f50c3743a4b (patch)
tree1f5ccc78c11951aa37396afc1922f70121692fe0 /x11-toolkits
parent5cbf8784c245acb5c3fb25b58b7f6facb57b8f55 (diff)
downloadmarcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar.gz
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar.bz2
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar.lz
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar.xz
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.tar.zst
marcuscom-ports-f586300595a5d2937f38a85ab91d9f50c3743a4b.zip
Update to 2.22.0
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14659 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/py-gtk2/Makefile88
-rw-r--r--x11-toolkits/py-gtk2/distinfo3
-rw-r--r--x11-toolkits/py-gtk2/files/patch-Makefile.in11
-rw-r--r--x11-toolkits/py-gtk2/files/patch-configure11
-rw-r--r--x11-toolkits/py-gtk2/files/patch-doc_Makefile.in11
-rw-r--r--x11-toolkits/py-gtk2/pkg-descr11
-rw-r--r--x11-toolkits/py-gtk2/pkg-plist766
7 files changed, 901 insertions, 0 deletions
diff --git a/x11-toolkits/py-gtk2/Makefile b/x11-toolkits/py-gtk2/Makefile
new file mode 100644
index 000000000..013e16ee3
--- /dev/null
+++ b/x11-toolkits/py-gtk2/Makefile
@@ -0,0 +1,88 @@
+# New ports collection makefile for: py-gtk2
+# Date created: 08/13/2002
+# Whom: marc@informatik.uni-bremen.de
+#
+# $FreeBSD$
+# $MCom: ports/x11-toolkits/py-gtk2/Makefile,v 1.69 2009/12/27 16:45:09 kwm Exp $
+#
+
+PORTNAME= gtk
+PORTVERSION= 2.22.0
+CATEGORIES= x11-toolkits python
+MASTER_SITES= GNOME
+MASTER_SITE_SUBDIR= sources/pygtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= pygtk-${PORTVERSION}
+DIST_SUBDIR= gnome2
+
+MAINTAINER= gnome@FreeBSD.org
+COMMENT= A set of Python bindings for GTK+
+
+BUILD_DEPENDS= \
+ ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \
+ ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject
+RUN_DEPENDS= \
+ ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \
+ ${PYTHON_SITELIBDIR}/gtk-2.0/gobject/_gobject.so:${PORTSDIR}/devel/py-gobject
+
+LATEST_LINK= py-gtk2
+USE_BZIP2= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack libglade2
+USE_PYTHON= yes
+USE_GETTEXT= yes
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
+ LIBS="-lintl" \
+ PYTHON="${PYTHON_VERSION}"
+CONFIGURE_ARGS= --disable-docs
+LDFLAGS+= -L${LOCALBASE}/lib
+
+DOCSDIR= ${PREFIX}/share/doc/py-gtk
+EG_SRC_DIR= ${WRKSRC}/examples
+EXAMPLESDIR= ${PREFIX}/share/examples/py-gtk
+
+CONFLICTS= py*-gtk-0*
+
+OPTIONS= NUMPY "Enable numpy support (pulls in gcc44)" off
+
+.include <bsd.port.pre.mk>
+
+.if defined(WITH_NUMPY)
+BUILD_DEPENDS+= ${PYNUMPY}
+RUN_DEPENDS+= ${PYNUMPY}
+CONFIGURE_ARGS+=--enable-numpy
+.else
+CONFIGURE_ARGS+=--disable-numpy
+.endif
+
+#
+# Use the same way as the Python port to determine if we want
+# threading support.
+#
+.if !defined(WITHOUT_THREADS)
+CONFIGURE_ARGS+= --enable-thread
+CFLAGS+= ${PTHREAD_CFLAGS}
+CONFIGURE_ENV+= LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}"
+.else
+CONFIGURE_ARGS+= --disable-thread
+.if defined(LDFLAGS)
+CONFIGURE_ENV+= LDFLAGS="${LDFLAGS}"
+.endif
+.endif
+
+post-install:
+.if !defined(NOPORTEXAMPLES)
+ ${MKDIR} ${EXAMPLESDIR}
+ ${TAR} -C ${EG_SRC_DIR} -cf - . | ${TAR} -C ${EXAMPLESDIR} -xf -
+ ${CHOWN} -R ${BINOWN}:${BINGRP} ${EXAMPLESDIR}
+ ${FIND} ${EXAMPLESDIR} -type d -print | ${XARGS} ${CHMOD} 0555
+ ${FIND} ${EXAMPLESDIR} -type f -print | ${XARGS} ${CHMOD} 0444
+.endif
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/MAPPING ${DOCSDIR}
+ ${INSTALL_DATA} ${WRKSRC}/THREADS ${DOCSDIR}
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/x11-toolkits/py-gtk2/distinfo b/x11-toolkits/py-gtk2/distinfo
new file mode 100644
index 000000000..e2734ab7c
--- /dev/null
+++ b/x11-toolkits/py-gtk2/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/pygtk-2.22.0.tar.bz2) = e9bba9cd4cdaccb22a7991cc2f7c8373
+SHA256 (gnome2/pygtk-2.22.0.tar.bz2) = 4acf0ef2bde8574913c40ee4a43d9c4f43bb77b577b67147271b534501a54cc8
+SIZE (gnome2/pygtk-2.22.0.tar.bz2) = 2285379
diff --git a/x11-toolkits/py-gtk2/files/patch-Makefile.in b/x11-toolkits/py-gtk2/files/patch-Makefile.in
new file mode 100644
index 000000000..1ddb1d6b9
--- /dev/null
+++ b/x11-toolkits/py-gtk2/files/patch-Makefile.in
@@ -0,0 +1,11 @@
+--- Makefile.in.orig 2008-09-01 08:50:06.000000000 +0000
++++ Makefile.in 2008-09-01 08:51:03.000000000 +0000
+@@ -124,7 +124,7 @@
+ DATA = $(defs_DATA) $(pkgconfig_DATA)
+ ETAGS = etags
+ CTAGS = ctags
+-DIST_SUBDIRS = . gtk examples tests docs
++DIST_SUBDIRS = . gtk examples
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
+ distdir = $(PACKAGE)-$(VERSION)
+ top_distdir = $(distdir)
diff --git a/x11-toolkits/py-gtk2/files/patch-configure b/x11-toolkits/py-gtk2/files/patch-configure
new file mode 100644
index 000000000..6491c015d
--- /dev/null
+++ b/x11-toolkits/py-gtk2/files/patch-configure
@@ -0,0 +1,11 @@
+--- configure.orig 2010-09-26 09:47:52.000000000 +0000
++++ configure 2010-09-26 09:48:06.000000000 +0000
+@@ -12288,7 +12288,7 @@
+ $as_echo_n "(cached) " >&6
+ else
+
+- for am_cv_pathless_PYTHON in python python2 python3 python3.0 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
++ for am_cv_pathless_PYTHON in python python2 python3 python3.0 python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python2.0 none; do
+ test "$am_cv_pathless_PYTHON" = none && break
+ prog="import sys
+ # split strings by '.' and convert to numeric. Append some zeros
diff --git a/x11-toolkits/py-gtk2/files/patch-doc_Makefile.in b/x11-toolkits/py-gtk2/files/patch-doc_Makefile.in
new file mode 100644
index 000000000..857b4fa66
--- /dev/null
+++ b/x11-toolkits/py-gtk2/files/patch-doc_Makefile.in
@@ -0,0 +1,11 @@
+--- docs/Makefile.in.orig 2008-09-03 16:07:35.000000000 +0000
++++ docs/Makefile.in 2008-09-03 16:07:55.000000000 +0000
+@@ -812,7 +812,7 @@
+ html/unixprint-functions.html
+
+ CSS_FILES = $(PYGOBJECT_PYGDOCS)/style.css
+-TARGET_DIR = $(datadir)/gtk-doc/html/pygtk
++TARGET_DIR = $(datadir)/doc/py-gtk
+ CSSdir = $(TARGET_DIR)
+ EXTRA_DIST = \
+ cursors icons \
diff --git a/x11-toolkits/py-gtk2/pkg-descr b/x11-toolkits/py-gtk2/pkg-descr
new file mode 100644
index 000000000..41145fa4a
--- /dev/null
+++ b/x11-toolkits/py-gtk2/pkg-descr
@@ -0,0 +1,11 @@
+Excerpt from the README:
+
+ PyGTK
+ =====
+ Author: James Henstridge <james@daa.com.au>
+
+ This archive contains modules that allow you to use gtk in Python
+ programs. At present, it is a fairly complete set of bindings.
+
+WWW: http://www.pygtk.org/
+-- Jacques Vidrine <nectar@FreeBSD.ORG>
diff --git a/x11-toolkits/py-gtk2/pkg-plist b/x11-toolkits/py-gtk2/pkg-plist
new file mode 100644
index 000000000..1a6b6d40d
--- /dev/null
+++ b/x11-toolkits/py-gtk2/pkg-plist
@@ -0,0 +1,766 @@
+bin/pygtk-codegen-2.0
+bin/pygtk-demo
+include/pygtk-2.0/pygtk/pygtk.h
+lib/pygtk/2.0/demos/__init__.py
+lib/pygtk/2.0/demos/__init__.pyc
+lib/pygtk/2.0/demos/__init__.pyo
+lib/pygtk/2.0/demos/appwindow.py
+lib/pygtk/2.0/demos/appwindow.pyc
+lib/pygtk/2.0/demos/appwindow.pyo
+lib/pygtk/2.0/demos/buttonbox.py
+lib/pygtk/2.0/demos/buttonbox.pyc
+lib/pygtk/2.0/demos/buttonbox.pyo
+lib/pygtk/2.0/demos/changedisplay.py
+lib/pygtk/2.0/demos/changedisplay.pyc
+lib/pygtk/2.0/demos/changedisplay.pyo
+lib/pygtk/2.0/demos/colorsel.py
+lib/pygtk/2.0/demos/colorsel.pyc
+lib/pygtk/2.0/demos/colorsel.pyo
+lib/pygtk/2.0/demos/dialogs.py
+lib/pygtk/2.0/demos/dialogs.pyc
+lib/pygtk/2.0/demos/dialogs.pyo
+lib/pygtk/2.0/demos/dnd.py
+lib/pygtk/2.0/demos/dnd.pyc
+lib/pygtk/2.0/demos/dnd.pyo
+lib/pygtk/2.0/demos/dndpixmap.py
+lib/pygtk/2.0/demos/dndpixmap.pyc
+lib/pygtk/2.0/demos/dndpixmap.pyo
+lib/pygtk/2.0/demos/editable_cells.py
+lib/pygtk/2.0/demos/editable_cells.pyc
+lib/pygtk/2.0/demos/editable_cells.pyo
+lib/pygtk/2.0/demos/entry_completion.py
+lib/pygtk/2.0/demos/entry_completion.pyc
+lib/pygtk/2.0/demos/entry_completion.pyo
+lib/pygtk/2.0/demos/expander.py
+lib/pygtk/2.0/demos/expander.pyc
+lib/pygtk/2.0/demos/expander.pyo
+lib/pygtk/2.0/demos/hypertext.py
+lib/pygtk/2.0/demos/hypertext.pyc
+lib/pygtk/2.0/demos/hypertext.pyo
+lib/pygtk/2.0/demos/images.py
+lib/pygtk/2.0/demos/images.pyc
+lib/pygtk/2.0/demos/images.pyo
+lib/pygtk/2.0/demos/images/alphatest.png
+lib/pygtk/2.0/demos/images/apple-red.png
+lib/pygtk/2.0/demos/images/background.jpg
+lib/pygtk/2.0/demos/images/floppybuddy.gif
+lib/pygtk/2.0/demos/images/gnome-applets.png
+lib/pygtk/2.0/demos/images/gnome-calendar.png
+lib/pygtk/2.0/demos/images/gnome-foot.png
+lib/pygtk/2.0/demos/images/gnome-gimp.png
+lib/pygtk/2.0/demos/images/gnome-gmush.png
+lib/pygtk/2.0/demos/images/gnome-gsame.png
+lib/pygtk/2.0/demos/images/gnu-keys.png
+lib/pygtk/2.0/demos/images/gtk-logo-rgb.gif
+lib/pygtk/2.0/demos/infobar.py
+lib/pygtk/2.0/demos/infobar.pyc
+lib/pygtk/2.0/demos/infobar.pyo
+lib/pygtk/2.0/demos/list_store.py
+lib/pygtk/2.0/demos/list_store.pyc
+lib/pygtk/2.0/demos/list_store.pyo
+lib/pygtk/2.0/demos/menu.py
+lib/pygtk/2.0/demos/menu.pyc
+lib/pygtk/2.0/demos/menu.pyo
+lib/pygtk/2.0/demos/panes.py
+lib/pygtk/2.0/demos/panes.pyc
+lib/pygtk/2.0/demos/panes.pyo
+lib/pygtk/2.0/demos/pixbufs.py
+lib/pygtk/2.0/demos/pixbufs.pyc
+lib/pygtk/2.0/demos/pixbufs.pyo
+lib/pygtk/2.0/demos/print_editor.py
+lib/pygtk/2.0/demos/print_editor.pyc
+lib/pygtk/2.0/demos/print_editor.pyo
+lib/pygtk/2.0/demos/sizegroup.py
+lib/pygtk/2.0/demos/sizegroup.pyc
+lib/pygtk/2.0/demos/sizegroup.pyo
+lib/pygtk/2.0/demos/statusicon.py
+lib/pygtk/2.0/demos/statusicon.pyc
+lib/pygtk/2.0/demos/statusicon.pyo
+lib/pygtk/2.0/demos/stock_browser.py
+lib/pygtk/2.0/demos/stock_browser.pyc
+lib/pygtk/2.0/demos/stock_browser.pyo
+lib/pygtk/2.0/demos/textscroll.py
+lib/pygtk/2.0/demos/textscroll.pyc
+lib/pygtk/2.0/demos/textscroll.pyo
+lib/pygtk/2.0/demos/textview.py
+lib/pygtk/2.0/demos/textview.pyc
+lib/pygtk/2.0/demos/textview.pyo
+lib/pygtk/2.0/demos/tooltip.py
+lib/pygtk/2.0/demos/tooltip.pyc
+lib/pygtk/2.0/demos/tooltip.pyo
+lib/pygtk/2.0/demos/tree_store.py
+lib/pygtk/2.0/demos/tree_store.pyc
+lib/pygtk/2.0/demos/tree_store.pyo
+lib/pygtk/2.0/demos/treemodel.py
+lib/pygtk/2.0/demos/treemodel.pyc
+lib/pygtk/2.0/demos/treemodel.pyo
+lib/pygtk/2.0/demos/ui_manager.py
+lib/pygtk/2.0/demos/ui_manager.pyc
+lib/pygtk/2.0/demos/ui_manager.pyo
+lib/pygtk/2.0/pygtk-demo.py
+lib/pygtk/2.0/pygtk-demo.pyc
+lib/pygtk/2.0/pygtk-demo.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/atk.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/atk.so
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/__init__.py
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/__init__.pyc
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/__init__.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/_gtk.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/_gtk.so
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/_lazyutils.py
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/_lazyutils.pyc
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/_lazyutils.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/compat.py
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/compat.pyc
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/compat.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/deprecation.py
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/deprecation.pyc
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/deprecation.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/glade.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/glade.so
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/keysyms.py
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/keysyms.pyc
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtk/keysyms.pyo
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkunixprint.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/gtkunixprint.so
+%%PYTHON_SITELIBDIR%%/gtk-2.0/pango.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/pango.so
+%%PYTHON_SITELIBDIR%%/gtk-2.0/pangocairo.la
+%%PYTHON_SITELIBDIR%%/gtk-2.0/pangocairo.so
+libdata/pkgconfig/pygtk-2.0.pc
+%%PORTDOCS%%%%DOCSDIR%%/MAPPING
+%%PORTDOCS%%%%DOCSDIR%%/THREADS
+%%DOCSDIR%%/atk-class-reference.html
+%%DOCSDIR%%/atk-constants.html
+%%DOCSDIR%%/class-atkaction.html
+%%DOCSDIR%%/class-atkcomponent.html
+%%DOCSDIR%%/class-atkdocument.html
+%%DOCSDIR%%/class-atkeditabletext.html
+%%DOCSDIR%%/class-atkgobjectaccessible.html
+%%DOCSDIR%%/class-atkhyperlink.html
+%%DOCSDIR%%/class-atkhypertext.html
+%%DOCSDIR%%/class-atkimage.html
+%%DOCSDIR%%/class-atkimplementor.html
+%%DOCSDIR%%/class-atknoopobject.html
+%%DOCSDIR%%/class-atknoopobjectfactory.html
+%%DOCSDIR%%/class-atkobject.html
+%%DOCSDIR%%/class-atkobjectfactory.html
+%%DOCSDIR%%/class-atkrectangle.html
+%%DOCSDIR%%/class-atkregistry.html
+%%DOCSDIR%%/class-atkrelation.html
+%%DOCSDIR%%/class-atkrelationset.html
+%%DOCSDIR%%/class-atkselection.html
+%%DOCSDIR%%/class-atkstateset.html
+%%DOCSDIR%%/class-atkstreamablecontent.html
+%%DOCSDIR%%/class-atktable.html
+%%DOCSDIR%%/class-atktext.html
+%%DOCSDIR%%/class-atkvalue.html
+%%DOCSDIR%%/class-gdkapplaunchcontext.html
+%%DOCSDIR%%/class-gdkatom.html
+%%DOCSDIR%%/class-gdkcairocontext.html
+%%DOCSDIR%%/class-gdkcolor.html
+%%DOCSDIR%%/class-gdkcolormap.html
+%%DOCSDIR%%/class-gdkcursor.html
+%%DOCSDIR%%/class-gdkdevice.html
+%%DOCSDIR%%/class-gdkdisplay.html
+%%DOCSDIR%%/class-gdkdisplaymanager.html
+%%DOCSDIR%%/class-gdkdragcontext.html
+%%DOCSDIR%%/class-gdkdrawable.html
+%%DOCSDIR%%/class-gdkevent.html
+%%DOCSDIR%%/class-gdkgc.html
+%%DOCSDIR%%/class-gdkimage.html
+%%DOCSDIR%%/class-gdkkeymap.html
+%%DOCSDIR%%/class-gdkpangorenderer.html
+%%DOCSDIR%%/class-gdkpixbuf.html
+%%DOCSDIR%%/class-gdkpixbufanimation.html
+%%DOCSDIR%%/class-gdkpixbufanimationiter.html
+%%DOCSDIR%%/class-gdkpixbufloader.html
+%%DOCSDIR%%/class-gdkpixmap.html
+%%DOCSDIR%%/class-gdkrectangle.html
+%%DOCSDIR%%/class-gdkregion.html
+%%DOCSDIR%%/class-gdkscreen.html
+%%DOCSDIR%%/class-gdkvisual.html
+%%DOCSDIR%%/class-gdkwindow.html
+%%DOCSDIR%%/class-gladexml.html
+%%DOCSDIR%%/class-gtkaboutdialog.html
+%%DOCSDIR%%/class-gtkaccelgroup.html
+%%DOCSDIR%%/class-gtkaccellabel.html
+%%DOCSDIR%%/class-gtkaccelmap.html
+%%DOCSDIR%%/class-gtkaccessible.html
+%%DOCSDIR%%/class-gtkaction.html
+%%DOCSDIR%%/class-gtkactiongroup.html
+%%DOCSDIR%%/class-gtkactivatable.html
+%%DOCSDIR%%/class-gtkadjustment.html
+%%DOCSDIR%%/class-gtkalignment.html
+%%DOCSDIR%%/class-gtkarrow.html
+%%DOCSDIR%%/class-gtkaspectframe.html
+%%DOCSDIR%%/class-gtkassistant.html
+%%DOCSDIR%%/class-gtkbin.html
+%%DOCSDIR%%/class-gtkborder.html
+%%DOCSDIR%%/class-gtkbox.html
+%%DOCSDIR%%/class-gtkbuildable.html
+%%DOCSDIR%%/class-gtkbuilder.html
+%%DOCSDIR%%/class-gtkbutton.html
+%%DOCSDIR%%/class-gtkbuttonbox.html
+%%DOCSDIR%%/class-gtkcalendar.html
+%%DOCSDIR%%/class-gtkcelleditable.html
+%%DOCSDIR%%/class-gtkcelllayout.html
+%%DOCSDIR%%/class-gtkcellrenderer.html
+%%DOCSDIR%%/class-gtkcellrendereraccel.html
+%%DOCSDIR%%/class-gtkcellrenderercombo.html
+%%DOCSDIR%%/class-gtkcellrendererpixbuf.html
+%%DOCSDIR%%/class-gtkcellrendererprogress.html
+%%DOCSDIR%%/class-gtkcellrendererspin.html
+%%DOCSDIR%%/class-gtkcellrenderertext.html
+%%DOCSDIR%%/class-gtkcellrenderertoggle.html
+%%DOCSDIR%%/class-gtkcellview.html
+%%DOCSDIR%%/class-gtkcheckbutton.html
+%%DOCSDIR%%/class-gtkcheckmenuitem.html
+%%DOCSDIR%%/class-gtkclipboard.html
+%%DOCSDIR%%/class-gtkcolorbutton.html
+%%DOCSDIR%%/class-gtkcolorselection.html
+%%DOCSDIR%%/class-gtkcolorselectiondialog.html
+%%DOCSDIR%%/class-gtkcombo.html
+%%DOCSDIR%%/class-gtkcombobox.html
+%%DOCSDIR%%/class-gtkcomboboxentry.html
+%%DOCSDIR%%/class-gtkcontainer.html
+%%DOCSDIR%%/class-gtkcurve.html
+%%DOCSDIR%%/class-gtkdialog.html
+%%DOCSDIR%%/class-gtkdrawingarea.html
+%%DOCSDIR%%/class-gtkeditable.html
+%%DOCSDIR%%/class-gtkentry.html
+%%DOCSDIR%%/class-gtkentrycompletion.html
+%%DOCSDIR%%/class-gtkeventbox.html
+%%DOCSDIR%%/class-gtkexpander.html
+%%DOCSDIR%%/class-gtkfilechooser.html
+%%DOCSDIR%%/class-gtkfilechooserbutton.html
+%%DOCSDIR%%/class-gtkfilechooserdialog.html
+%%DOCSDIR%%/class-gtkfilechooserwidget.html
+%%DOCSDIR%%/class-gtkfilefilter.html
+%%DOCSDIR%%/class-gtkfileselection.html
+%%DOCSDIR%%/class-gtkfixed.html
+%%DOCSDIR%%/class-gtkfontbutton.html
+%%DOCSDIR%%/class-gtkfontselection.html
+%%DOCSDIR%%/class-gtkfontselectiondialog.html
+%%DOCSDIR%%/class-gtkframe.html
+%%DOCSDIR%%/class-gtkgammacurve.html
+%%DOCSDIR%%/class-gtkhandlebox.html
+%%DOCSDIR%%/class-gtkhbox.html
+%%DOCSDIR%%/class-gtkhbuttonbox.html
+%%DOCSDIR%%/class-gtkhpaned.html
+%%DOCSDIR%%/class-gtkhruler.html
+%%DOCSDIR%%/class-gtkhscale.html
+%%DOCSDIR%%/class-gtkhscrollbar.html
+%%DOCSDIR%%/class-gtkhseparator.html
+%%DOCSDIR%%/class-gtkiconfactory.html
+%%DOCSDIR%%/class-gtkiconinfo.html
+%%DOCSDIR%%/class-gtkiconset.html
+%%DOCSDIR%%/class-gtkiconsource.html
+%%DOCSDIR%%/class-gtkicontheme.html
+%%DOCSDIR%%/class-gtkiconview.html
+%%DOCSDIR%%/class-gtkimage.html
+%%DOCSDIR%%/class-gtkimagemenuitem.html
+%%DOCSDIR%%/class-gtkimcontext.html
+%%DOCSDIR%%/class-gtkimcontextsimple.html
+%%DOCSDIR%%/class-gtkimmulticontext.html
+%%DOCSDIR%%/class-gtkinputdialog.html
+%%DOCSDIR%%/class-gtkinvisible.html
+%%DOCSDIR%%/class-gtkitem.html
+%%DOCSDIR%%/class-gtkitemfactory.html
+%%DOCSDIR%%/class-gtklabel.html
+%%DOCSDIR%%/class-gtklayout.html
+%%DOCSDIR%%/class-gtklinkbutton.html
+%%DOCSDIR%%/class-gtkliststore.html
+%%DOCSDIR%%/class-gtkmenu.html
+%%DOCSDIR%%/class-gtkmenubar.html
+%%DOCSDIR%%/class-gtkmenuitem.html
+%%DOCSDIR%%/class-gtkmenushell.html
+%%DOCSDIR%%/class-gtkmenutoolbutton.html
+%%DOCSDIR%%/class-gtkmessagedialog.html
+%%DOCSDIR%%/class-gtkmisc.html
+%%DOCSDIR%%/class-gtkmountoperation.html
+%%DOCSDIR%%/class-gtknotebook.html
+%%DOCSDIR%%/class-gtkobject.html
+%%DOCSDIR%%/class-gtkoptionmenu.html
+%%DOCSDIR%%/class-gtkpagesetup.html
+%%DOCSDIR%%/class-gtkpagesetupunixdialog.html
+%%DOCSDIR%%/class-gtkpaned.html
+%%DOCSDIR%%/class-gtkpapersize.html
+%%DOCSDIR%%/class-gtkplug.html
+%%DOCSDIR%%/class-gtkprintcontext.html
+%%DOCSDIR%%/class-gtkprinter.html
+%%DOCSDIR%%/class-gtkprintjob.html
+%%DOCSDIR%%/class-gtkprintoperation.html
+%%DOCSDIR%%/class-gtkprintoperationpreview.html
+%%DOCSDIR%%/class-gtkprintsettings.html
+%%DOCSDIR%%/class-gtkprintunixdialog.html
+%%DOCSDIR%%/class-gtkprogressbar.html
+%%DOCSDIR%%/class-gtkradioaction.html
+%%DOCSDIR%%/class-gtkradiobutton.html
+%%DOCSDIR%%/class-gtkradiomenuitem.html
+%%DOCSDIR%%/class-gtkradiotoolbutton.html
+%%DOCSDIR%%/class-gtkrange.html
+%%DOCSDIR%%/class-gtkrcstyle.html
+%%DOCSDIR%%/class-gtkrecentaction.html
+%%DOCSDIR%%/class-gtkrecentchooser.html
+%%DOCSDIR%%/class-gtkrecentchooserdialog.html
+%%DOCSDIR%%/class-gtkrecentchoosermenu.html
+%%DOCSDIR%%/class-gtkrecentchooserwidget.html
+%%DOCSDIR%%/class-gtkrecentfilter.html
+%%DOCSDIR%%/class-gtkrecentinfo.html
+%%DOCSDIR%%/class-gtkrecentmanager.html
+%%DOCSDIR%%/class-gtkrequisition.html
+%%DOCSDIR%%/class-gtkruler.html
+%%DOCSDIR%%/class-gtkscale.html
+%%DOCSDIR%%/class-gtkscalebutton.html
+%%DOCSDIR%%/class-gtkscrollbar.html
+%%DOCSDIR%%/class-gtkscrolledwindow.html
+%%DOCSDIR%%/class-gtkselectiondata.html
+%%DOCSDIR%%/class-gtkseparator.html
+%%DOCSDIR%%/class-gtkseparatormenuitem.html
+%%DOCSDIR%%/class-gtkseparatortoolitem.html
+%%DOCSDIR%%/class-gtksettings.html
+%%DOCSDIR%%/class-gtksizegroup.html
+%%DOCSDIR%%/class-gtksocket.html
+%%DOCSDIR%%/class-gtkspinbutton.html
+%%DOCSDIR%%/class-gtkstatusbar.html
+%%DOCSDIR%%/class-gtkstatusicon.html
+%%DOCSDIR%%/class-gtkstyle.html
+%%DOCSDIR%%/class-gtktable.html
+%%DOCSDIR%%/class-gtktearoffmenuitem.html
+%%DOCSDIR%%/class-gtktextattributes.html
+%%DOCSDIR%%/class-gtktextbuffer.html
+%%DOCSDIR%%/class-gtktextchildanchor.html
+%%DOCSDIR%%/class-gtktextiter.html
+%%DOCSDIR%%/class-gtktextmark.html
+%%DOCSDIR%%/class-gtktexttag.html
+%%DOCSDIR%%/class-gtktexttagtable.html
+%%DOCSDIR%%/class-gtktextview.html
+%%DOCSDIR%%/class-gtktoggleaction.html
+%%DOCSDIR%%/class-gtktogglebutton.html
+%%DOCSDIR%%/class-gtktoggletoolbutton.html
+%%DOCSDIR%%/class-gtktoolbar.html
+%%DOCSDIR%%/class-gtktoolbutton.html
+%%DOCSDIR%%/class-gtktoolitem.html
+%%DOCSDIR%%/class-gtktoolshell.html
+%%DOCSDIR%%/class-gtktooltip.html
+%%DOCSDIR%%/class-gtktooltips.html
+%%DOCSDIR%%/class-gtktreedragdest.html
+%%DOCSDIR%%/class-gtktreedragsource.html
+%%DOCSDIR%%/class-gtktreeiter.html
+%%DOCSDIR%%/class-gtktreemodel.html
+%%DOCSDIR%%/class-gtktreemodelfilter.html
+%%DOCSDIR%%/class-gtktreemodelsort.html
+%%DOCSDIR%%/class-gtktreerowreference.html
+%%DOCSDIR%%/class-gtktreeselection.html
+%%DOCSDIR%%/class-gtktreesortable.html
+%%DOCSDIR%%/class-gtktreestore.html
+%%DOCSDIR%%/class-gtktreeview.html
+%%DOCSDIR%%/class-gtktreeviewcolumn.html
+%%DOCSDIR%%/class-gtkuimanager.html
+%%DOCSDIR%%/class-gtkvbox.html
+%%DOCSDIR%%/class-gtkvbuttonbox.html
+%%DOCSDIR%%/class-gtkviewport.html
+%%DOCSDIR%%/class-gtkvolumebutton.html
+%%DOCSDIR%%/class-gtkvpaned.html
+%%DOCSDIR%%/class-gtkvruler.html
+%%DOCSDIR%%/class-gtkvscale.html
+%%DOCSDIR%%/class-gtkvscrollbar.html
+%%DOCSDIR%%/class-gtkvseparator.html
+%%DOCSDIR%%/class-gtkwidget.html
+%%DOCSDIR%%/class-gtkwindow.html
+%%DOCSDIR%%/class-gtkwindowgroup.html
+%%DOCSDIR%%/class-hierarchy.html
+%%DOCSDIR%%/class-pangoattribute.html
+%%DOCSDIR%%/class-pangoattriterator.html
+%%DOCSDIR%%/class-pangoattrlist.html
+%%DOCSDIR%%/class-pangocairocairocontext.html
+%%DOCSDIR%%/class-pangocairocairofontmap.html
+%%DOCSDIR%%/class-pangocolor.html
+%%DOCSDIR%%/class-pangocontext.html
+%%DOCSDIR%%/class-pangofont.html
+%%DOCSDIR%%/class-pangofontdescription.html
+%%DOCSDIR%%/class-pangofontface.html
+%%DOCSDIR%%/class-pangofontfamily.html
+%%DOCSDIR%%/class-pangofontmap.html
+%%DOCSDIR%%/class-pangofontmetrics.html
+%%DOCSDIR%%/class-pangofontset.html
+%%DOCSDIR%%/class-pangofontsetsimple.html
+%%DOCSDIR%%/class-pangoglyphstring.html
+%%DOCSDIR%%/class-pangolanguage.html
+%%DOCSDIR%%/class-pangolayout.html
+%%DOCSDIR%%/class-pangolayoutiter.html
+%%DOCSDIR%%/class-pangolayoutline.html
+%%DOCSDIR%%/class-pangorenderer.html
+%%DOCSDIR%%/class-pangotabarray.html
+%%DOCSDIR%%/class-pygtkgenericcellrenderer.html
+%%DOCSDIR%%/class-pygtkgenerictreemodel.html
+%%DOCSDIR%%/class-pygtktreemodelrow.html
+%%DOCSDIR%%/class-pygtktreemodelrowiter.html
+%%DOCSDIR%%/cursors/X_cursor.png
+%%DOCSDIR%%/cursors/arrow.png
+%%DOCSDIR%%/cursors/based_arrow_down.png
+%%DOCSDIR%%/cursors/based_arrow_up.png
+%%DOCSDIR%%/cursors/boat.png
+%%DOCSDIR%%/cursors/bogosity.png
+%%DOCSDIR%%/cursors/bottom_left_corner.png
+%%DOCSDIR%%/cursors/bottom_right_corner.png
+%%DOCSDIR%%/cursors/bottom_side.png
+%%DOCSDIR%%/cursors/bottom_tee.png
+%%DOCSDIR%%/cursors/box_spiral.png
+%%DOCSDIR%%/cursors/center_ptr.png
+%%DOCSDIR%%/cursors/circle.png
+%%DOCSDIR%%/cursors/clock.png
+%%DOCSDIR%%/cursors/coffee_mug.png
+%%DOCSDIR%%/cursors/cross.png
+%%DOCSDIR%%/cursors/cross_reverse.png
+%%DOCSDIR%%/cursors/crosshair.png
+%%DOCSDIR%%/cursors/diamond_cross.png
+%%DOCSDIR%%/cursors/dot.png
+%%DOCSDIR%%/cursors/dotbox.png
+%%DOCSDIR%%/cursors/double_arrow.png
+%%DOCSDIR%%/cursors/draft_large.png
+%%DOCSDIR%%/cursors/draft_small.png
+%%DOCSDIR%%/cursors/draped_box.png
+%%DOCSDIR%%/cursors/exchange.png
+%%DOCSDIR%%/cursors/fleur.png
+%%DOCSDIR%%/cursors/gobbler.png
+%%DOCSDIR%%/cursors/gumby.png
+%%DOCSDIR%%/cursors/hand1.png
+%%DOCSDIR%%/cursors/hand2.png
+%%DOCSDIR%%/cursors/heart.png
+%%DOCSDIR%%/cursors/icon.png
+%%DOCSDIR%%/cursors/iron_cross.png
+%%DOCSDIR%%/cursors/left_ptr.png
+%%DOCSDIR%%/cursors/left_side.png
+%%DOCSDIR%%/cursors/left_tee.png
+%%DOCSDIR%%/cursors/leftbutton.png
+%%DOCSDIR%%/cursors/ll_angle.png
+%%DOCSDIR%%/cursors/lr_angle.png
+%%DOCSDIR%%/cursors/man.png
+%%DOCSDIR%%/cursors/middlebutton.png
+%%DOCSDIR%%/cursors/mouse.png
+%%DOCSDIR%%/cursors/pencil.png
+%%DOCSDIR%%/cursors/pirate.png
+%%DOCSDIR%%/cursors/plus.png
+%%DOCSDIR%%/cursors/question_arrow.png
+%%DOCSDIR%%/cursors/right_ptr.png
+%%DOCSDIR%%/cursors/right_side.png
+%%DOCSDIR%%/cursors/right_tee.png
+%%DOCSDIR%%/cursors/rightbutton.png
+%%DOCSDIR%%/cursors/rtl_logo.png
+%%DOCSDIR%%/cursors/sailboat.png
+%%DOCSDIR%%/cursors/sb_down_arrow.png
+%%DOCSDIR%%/cursors/sb_h_double_arrow.png
+%%DOCSDIR%%/cursors/sb_left_arrow.png
+%%DOCSDIR%%/cursors/sb_right_arrow.png
+%%DOCSDIR%%/cursors/sb_up_arrow.png
+%%DOCSDIR%%/cursors/sb_v_double_arrow.png
+%%DOCSDIR%%/cursors/shuttle.png
+%%DOCSDIR%%/cursors/sizing.png
+%%DOCSDIR%%/cursors/spider.png
+%%DOCSDIR%%/cursors/spraycan.png
+%%DOCSDIR%%/cursors/star.png
+%%DOCSDIR%%/cursors/target.png
+%%DOCSDIR%%/cursors/tcross.png
+%%DOCSDIR%%/cursors/top_left_arrow.png
+%%DOCSDIR%%/cursors/top_left_corner.png
+%%DOCSDIR%%/cursors/top_right_corner.png
+%%DOCSDIR%%/cursors/top_side.png
+%%DOCSDIR%%/cursors/top_tee.png
+%%DOCSDIR%%/cursors/trek.png
+%%DOCSDIR%%/cursors/ul_angle.png
+%%DOCSDIR%%/cursors/umbrella.png
+%%DOCSDIR%%/cursors/ur_angle.png
+%%DOCSDIR%%/cursors/watch.png
+%%DOCSDIR%%/cursors/xterm.png
+%%DOCSDIR%%/gdk-class-reference.html
+%%DOCSDIR%%/gdk-constants.html
+%%DOCSDIR%%/gdk-functions.html
+%%DOCSDIR%%/glade-class-reference.html
+%%DOCSDIR%%/gtk-class-reference.html
+%%DOCSDIR%%/gtk-constants.html
+%%DOCSDIR%%/gtk-functions.html
+%%DOCSDIR%%/gtk-stock-items.html
+%%DOCSDIR%%/icons/stock_about_24.png
+%%DOCSDIR%%/icons/stock_add_24.png
+%%DOCSDIR%%/icons/stock_align_center_24.png
+%%DOCSDIR%%/icons/stock_align_justify_24.png
+%%DOCSDIR%%/icons/stock_align_left_24.png
+%%DOCSDIR%%/icons/stock_align_right_24.png
+%%DOCSDIR%%/icons/stock_apply_20.png
+%%DOCSDIR%%/icons/stock_bottom_24.png
+%%DOCSDIR%%/icons/stock_broken_image_24.png
+%%DOCSDIR%%/icons/stock_cancel_20.png
+%%DOCSDIR%%/icons/stock_cdrom_24.png
+%%DOCSDIR%%/icons/stock_clear_24.png
+%%DOCSDIR%%/icons/stock_close_24.png
+%%DOCSDIR%%/icons/stock_color_picker_25.png
+%%DOCSDIR%%/icons/stock_colorselector_24.png
+%%DOCSDIR%%/icons/stock_connect_24.png
+%%DOCSDIR%%/icons/stock_convert_24.png
+%%DOCSDIR%%/icons/stock_copy_24.png
+%%DOCSDIR%%/icons/stock_cut_24.png
+%%DOCSDIR%%/icons/stock_dialog_authentication_48.png
+%%DOCSDIR%%/icons/stock_dialog_error_48.png
+%%DOCSDIR%%/icons/stock_dialog_info_48.png
+%%DOCSDIR%%/icons/stock_dialog_question_48.png
+%%DOCSDIR%%/icons/stock_dialog_warning_48.png
+%%DOCSDIR%%/icons/stock_directory_24.png
+%%DOCSDIR%%/icons/stock_disconnect_24.png
+%%DOCSDIR%%/icons/stock_dnd_32.png
+%%DOCSDIR%%/icons/stock_dnd_multiple_32.png
+%%DOCSDIR%%/icons/stock_down_arrow_24.png
+%%DOCSDIR%%/icons/stock_edit_24.png
+%%DOCSDIR%%/icons/stock_exec_24.png
+%%DOCSDIR%%/icons/stock_exit_24.png
+%%DOCSDIR%%/icons/stock_file_24.png
+%%DOCSDIR%%/icons/stock_first_24.png
+%%DOCSDIR%%/icons/stock_font_24.png
+%%DOCSDIR%%/icons/stock_fullscreen_24.png
+%%DOCSDIR%%/icons/stock_harddisk_24.png
+%%DOCSDIR%%/icons/stock_help_24.png
+%%DOCSDIR%%/icons/stock_home_24.png
+%%DOCSDIR%%/icons/stock_index_24.png
+%%DOCSDIR%%/icons/stock_info_24.png
+%%DOCSDIR%%/icons/stock_jump_to_24.png
+%%DOCSDIR%%/icons/stock_jump_to_rtl_24.png
+%%DOCSDIR%%/icons/stock_last_24.png
+%%DOCSDIR%%/icons/stock_leave_fullscreen_24.png
+%%DOCSDIR%%/icons/stock_left_arrow_24.png
+%%DOCSDIR%%/icons/stock_media_forward_24.png
+%%DOCSDIR%%/icons/stock_media_next_24.png
+%%DOCSDIR%%/icons/stock_media_pause_24.png
+%%DOCSDIR%%/icons/stock_media_play_24.png
+%%DOCSDIR%%/icons/stock_media_play_rtl_24.png
+%%DOCSDIR%%/icons/stock_media_previous_24.png
+%%DOCSDIR%%/icons/stock_media_record_24.png
+%%DOCSDIR%%/icons/stock_media_rewind_24.png
+%%DOCSDIR%%/icons/stock_media_stop_24.png
+%%DOCSDIR%%/icons/stock_network_24.png
+%%DOCSDIR%%/icons/stock_new_24.png
+%%DOCSDIR%%/icons/stock_no_20.png
+%%DOCSDIR%%/icons/stock_ok_20.png
+%%DOCSDIR%%/icons/stock_open_24.png
+%%DOCSDIR%%/icons/stock_page_setup_24.png
+%%DOCSDIR%%/icons/stock_paste_24.png
+%%DOCSDIR%%/icons/stock_preferences_24.png
+%%DOCSDIR%%/icons/stock_print_24.png
+%%DOCSDIR%%/icons/stock_print_error_24.png
+%%DOCSDIR%%/icons/stock_print_paused_24.png
+%%DOCSDIR%%/icons/stock_print_preview_24.png
+%%DOCSDIR%%/icons/stock_print_report_24.png
+%%DOCSDIR%%/icons/stock_properties_24.png
+%%DOCSDIR%%/icons/stock_redo_24.png
+%%DOCSDIR%%/icons/stock_redo_rtl_24.png
+%%DOCSDIR%%/icons/stock_refresh_24.png
+%%DOCSDIR%%/icons/stock_remove_24.png
+%%DOCSDIR%%/icons/stock_revert_24.png
+%%DOCSDIR%%/icons/stock_revert_rtl_24.png
+%%DOCSDIR%%/icons/stock_right_arrow_24.png
+%%DOCSDIR%%/icons/stock_save_24.png
+%%DOCSDIR%%/icons/stock_save_as_24.png
+%%DOCSDIR%%/icons/stock_search_24.png
+%%DOCSDIR%%/icons/stock_search_replace_24.png
+%%DOCSDIR%%/icons/stock_sort_ascending_24.png
+%%DOCSDIR%%/icons/stock_sort_descending_24.png
+%%DOCSDIR%%/icons/stock_spellcheck_24.png
+%%DOCSDIR%%/icons/stock_stop_24.png
+%%DOCSDIR%%/icons/stock_text_bold_24.png
+%%DOCSDIR%%/icons/stock_text_indent_24.png
+%%DOCSDIR%%/icons/stock_text_italic_24.png
+%%DOCSDIR%%/icons/stock_text_strikethrough_24.png
+%%DOCSDIR%%/icons/stock_text_underline_24.png
+%%DOCSDIR%%/icons/stock_text_unindent_24.png
+%%DOCSDIR%%/icons/stock_top_24.png
+%%DOCSDIR%%/icons/stock_trash_24.png
+%%DOCSDIR%%/icons/stock_undelete_24.png
+%%DOCSDIR%%/icons/stock_undelete_rtl_24.png
+%%DOCSDIR%%/icons/stock_undo_24.png
+%%DOCSDIR%%/icons/stock_undo_rtl_24.png
+%%DOCSDIR%%/icons/stock_up_arrow_24.png
+%%DOCSDIR%%/icons/stock_print_warning_24.png
+%%DOCSDIR%%/icons/stock_yes_20.png
+%%DOCSDIR%%/icons/stock_zoom_1_24.png
+%%DOCSDIR%%/icons/stock_zoom_fit_24.png
+%%DOCSDIR%%/icons/stock_zoom_in_24.png
+%%DOCSDIR%%/icons/stock_zoom_out_24.png
+%%DOCSDIR%%/images/layout-btlr.png
+%%DOCSDIR%%/images/layout-btrl.png
+%%DOCSDIR%%/images/layout-lrbt.png
+%%DOCSDIR%%/images/layout-lrtb.png
+%%DOCSDIR%%/images/layout-rlbt.png
+%%DOCSDIR%%/images/layout-rltb.png
+%%DOCSDIR%%/images/layout-tblr.png
+%%DOCSDIR%%/images/layout-tbrl.png
+%%DOCSDIR%%/index.html
+%%DOCSDIR%%/index.sgml
+%%DOCSDIR%%/pango-class-reference.html
+%%DOCSDIR%%/pango-constants.html
+%%DOCSDIR%%/pango-functions.html
+%%DOCSDIR%%/pango-markup-language.html
+%%DOCSDIR%%/pangocairo-class-reference.html
+%%DOCSDIR%%/pangocairo-constants.html
+%%DOCSDIR%%/pangocairo-functions.html
+%%DOCSDIR%%/pygtk-introduction.html
+%%DOCSDIR%%/pygtk-reference-format.html
+%%DOCSDIR%%/pygtk.devhelp
+%%DOCSDIR%%/unixprint-class-reference.html
+%%DOCSDIR%%/unixprint-constants.html
+%%DOCSDIR%%/unixprint-functions.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.am
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.in
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/Makefile.in.bak
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/atk/atk-demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glade/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glade/autoconnect.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glade/glade-demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glade/test.glade
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/glade/test2.glade
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gobject/editable-interface.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gobject/properties.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gobject/signal.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/application.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/bin.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/customtreemodel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/filechooser.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/scrollable.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/sizegroup.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/testprint.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/uimanager.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gtk/widget.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/break.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/browse.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/continue.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/dialogs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/edit.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/edit.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/gtkcons.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/gtkdb.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/gtkprof.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/minibreak.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/next.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/pyide.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/quit.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/return.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/run.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ide/step.xpm
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pango/extentdemo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pango/pangocairo-simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pango/utf8-demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/__init__.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/appwindow.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/buttonbox.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/changedisplay.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/colorsel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/dialogs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/dnd.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/dndpixmap.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/editable_cells.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/entry_completion.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/expander.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/hypertext.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/alphatest.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/apple-red.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/background.jpg
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/floppybuddy.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-applets.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-calendar.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-foot.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-gimp.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-gmush.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnome-gsame.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gnu-keys.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/images/gtk-logo-rgb.gif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/infobar.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/list_store.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/menu.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/panes.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/pixbufs.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/print_editor.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/sizegroup.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/statusicon.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/stock_browser.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/textscroll.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/textview.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/tooltip.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/tree_store.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/treemodel.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/demos/ui_manager.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/pygtk-demo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/pygtk-demo.in
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pygtk-demo/pygtk-demo.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/dnd.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/dndpixmap.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/hello.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/scribble.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/simple.py
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/simple/tooltip.py
+share/pygtk/2.0/defs/atk-types.defs
+share/pygtk/2.0/defs/atk.defs
+share/pygtk/2.0/defs/gdk-2.10.defs
+share/pygtk/2.0/defs/gdk-2.12.defs
+share/pygtk/2.0/defs/gdk-2.14.defs
+share/pygtk/2.0/defs/gdk-2.16.defs
+share/pygtk/2.0/defs/gdk-2.18.defs
+share/pygtk/2.0/defs/gdk-2.20.defs
+share/pygtk/2.0/defs/gdk-base-types.defs
+share/pygtk/2.0/defs/gdk-base.defs
+share/pygtk/2.0/defs/gdk-types.defs
+share/pygtk/2.0/defs/gdk.defs
+share/pygtk/2.0/defs/gtk-2.10-types.defs
+share/pygtk/2.0/defs/gtk-2.10.defs
+share/pygtk/2.0/defs/gtk-2.12-types.defs
+share/pygtk/2.0/defs/gtk-2.12.defs
+share/pygtk/2.0/defs/gtk-2.14-types.defs
+share/pygtk/2.0/defs/gtk-2.14.defs
+share/pygtk/2.0/defs/gtk-2.16-types.defs
+share/pygtk/2.0/defs/gtk-2.16.defs
+share/pygtk/2.0/defs/gtk-2.18-types.defs
+share/pygtk/2.0/defs/gtk-2.18.defs
+share/pygtk/2.0/defs/gtk-2.20-types.defs
+share/pygtk/2.0/defs/gtk-2.20.defs
+share/pygtk/2.0/defs/gtk-base-types.defs
+share/pygtk/2.0/defs/gtk-base.defs
+share/pygtk/2.0/defs/gtk-extrafuncs.defs
+share/pygtk/2.0/defs/gtk-types.defs
+share/pygtk/2.0/defs/gtk.defs
+share/pygtk/2.0/defs/gtkunixprint-2.12.defs
+share/pygtk/2.0/defs/gtkunixprint-2.14.defs
+share/pygtk/2.0/defs/gtkunixprint-base-types.defs
+share/pygtk/2.0/defs/gtkunixprint-base.defs
+share/pygtk/2.0/defs/libglade.defs
+share/pygtk/2.0/defs/pango-types.defs
+share/pygtk/2.0/defs/pango.defs
+share/pygtk/2.0/defs/pangocairo.defs
+share/pygtk/2.0/defs/pangocairo.override
+@dirrm share/pygtk/2.0/defs
+@dirrm share/pygtk/2.0
+@dirrm share/pygtk
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/simple
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pygtk-demo/demos/images
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pygtk-demo/demos
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pygtk-demo
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/pango
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/ide
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gtk
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/gobject
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/glade
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%/atk
+%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
+@dirrm %%DOCSDIR%%/images
+@dirrm %%DOCSDIR%%/icons
+@dirrm %%DOCSDIR%%/cursors
+@dirrm %%DOCSDIR%%
+@dirrm %%PYTHON_SITELIBDIR%%/gtk-2.0/gtk
+@dirrmtry %%PYTHON_SITELIBDIR%%/gtk-2.0
+@dirrm lib/pygtk/2.0/demos/images
+@dirrm lib/pygtk/2.0/demos
+@dirrm lib/pygtk/2.0
+@dirrm lib/pygtk
+@dirrm include/pygtk-2.0/pygtk
+@dirrmtry include/pygtk-2.0