diff options
author | nectar <nectar@FreeBSD.org> | 2001-08-30 23:45:01 +0800 |
---|---|---|
committer | nectar <nectar@FreeBSD.org> | 2001-08-30 23:45:01 +0800 |
commit | a29449e5094c01629ec0d0af9fdc5eb6cc4962ea (patch) | |
tree | 1fd38cf4d042602aee608e214f320fdf63fdff8d /www | |
parent | 7e26d06c739cb32e3c82835aa92edc79fec9c598 (diff) | |
download | freebsd-ports-gnome-a29449e5094c01629ec0d0af9fdc5eb6cc4962ea.tar.gz freebsd-ports-gnome-a29449e5094c01629ec0d0af9fdc5eb6cc4962ea.tar.zst freebsd-ports-gnome-a29449e5094c01629ec0d0af9fdc5eb6cc4962ea.zip |
= Update MASTER_SITES
= Patch misuse of `append' that is no longer acceptable in Python 2
= Mark BROKEN: it doesn't seem to work with Python 2
= Release MAINTAINERship in the hopes that someone else will want to
play with this and fix it
Diffstat (limited to 'www')
-rw-r--r-- | www/grail/Makefile | 9 | ||||
-rw-r--r-- | www/grail/distinfo | 2 | ||||
-rw-r--r-- | www/grail/files/patch-Stylesheet.py | 11 |
3 files changed, 18 insertions, 4 deletions
diff --git a/www/grail/Makefile b/www/grail/Makefile index b77959161df6..6745eeb36db8 100644 --- a/www/grail/Makefile +++ b/www/grail/Makefile @@ -7,14 +7,17 @@ PORTNAME= grail PORTVERSION= 0.6 +PORTREVISION= 1 CATEGORIES= www python -MASTER_SITES= ftp://ftp.python.org/pub/grail/ -DISTFILES= ${PORTNAME}-06.tgz +MASTER_SITES= http://prdownloads.sourceforge.net/grail/ +EXTRACT_SUFX= .tgz -MAINTAINER= nectar@freebsd.org +MAINTAINER= ports@freebsd.org RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter +BROKEN= "Doesn't seem to work with Python 2.x" + USE_PYTHON= yes GRAILSUBDIR= share/grail GRAILDIR= ${PREFIX}/${GRAILSUBDIR} diff --git a/www/grail/distinfo b/www/grail/distinfo index 2b94ba3a236a..56dade3170f5 100644 --- a/www/grail/distinfo +++ b/www/grail/distinfo @@ -1 +1 @@ -MD5 (grail-06.tgz) = 527d8400d463560e9c10c7eca0f9f11b +MD5 (grail-0.6.tgz) = 527d8400d463560e9c10c7eca0f9f11b diff --git a/www/grail/files/patch-Stylesheet.py b/www/grail/files/patch-Stylesheet.py new file mode 100644 index 000000000000..be028001f7b9 --- /dev/null +++ b/www/grail/files/patch-Stylesheet.py @@ -0,0 +1,11 @@ +--- Stylesheet.py.orig Thu Aug 30 10:35:51 2001 ++++ Stylesheet.py Thu Aug 30 10:36:05 2001 +@@ -42,7 +42,7 @@ + fonts = self.prefs.GetGroup('styles-fonts') + massaged = [] + for ((g, c), v) in fonts: +- massaged.append((g, c), v % fparms_dict) ++ massaged.append(((g, c), v % fparms_dict)) + self.dictify_group(massaged) + + def __getattr__(self, composite): |