summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gtk2
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-16 02:20:46 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-16 02:20:46 +0800
commit86cb65fbbc1db966e7a414ef5a293e6d3b90f997 (patch)
treea890063987ebb1345672e22f6a0ac637e03a5b94 /x11-toolkits/py-gtk2
parent0403d6b2de26a6a675cca73d922dde8cc0efa15a (diff)
downloadmarcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.gz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.bz2
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.lz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.xz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.zst
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.zip
Fix a typo that caused dependents to fail to build.
Obtained from: pygtk CVS git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6450 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/py-gtk2')
-rw-r--r--x11-toolkits/py-gtk2/Makefile3
-rw-r--r--x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py11
2 files changed, 13 insertions, 1 deletions
diff --git a/x11-toolkits/py-gtk2/Makefile b/x11-toolkits/py-gtk2/Makefile
index bf59d8c9b..c473c689e 100644
--- a/x11-toolkits/py-gtk2/Makefile
+++ b/x11-toolkits/py-gtk2/Makefile
@@ -3,11 +3,12 @@
# Whom: marc@informatik.uni-bremen.de
#
# $FreeBSD$
-# $MCom: ports/x11-toolkits/py-gtk2/Makefile,v 1.38 2006/04/13 07:52:43 bland Exp $
+# $MCom: ports/x11-toolkits/py-gtk2/Makefile,v 1.40 2006/06/14 22:00:26 marcus Exp $
#
PORTNAME= gtk
PORTVERSION= 2.9.1
+PORTREVISION= 1
CATEGORIES= x11-toolkits python
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= sources/pygtk/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
diff --git a/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py b/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py
new file mode 100644
index 000000000..c787e2385
--- /dev/null
+++ b/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py
@@ -0,0 +1,11 @@
+--- codegen/defsparser.py.orig Thu Jun 15 14:13:39 2006
++++ codegen/defsparser.py Thu Jun 15 14:13:50 2006
+@@ -20,7 +20,7 @@ class IncludeParser(scmexpr.Parser):
+ else:
+ inc_path = [os.path.dirname(self.filename)] + include_path
+ for filename in [os.path.join(path_entry, input_filename)
+- for path_entry in include_path]:
++ for path_entry in inc_path]:
+ if not os.path.exists(filename):
+ continue
+ # set self.filename to the include name, to handle recursive includes