diff options
author | William Grzybowski <wg@FreeBSD.org> | 2014-10-04 21:29:10 +0000 |
---|---|---|
committer | William Grzybowski <wg@FreeBSD.org> | 2014-10-04 21:29:10 +0000 |
commit | 91874587dc05432dca799ec25981432a15bb8c7e (patch) | |
tree | 58c8679b69c45ea5685264829a2cfaacbf28a757 /games/gnomesudoku/files/patch-setup.py | |
parent | editors/zim: take maintainership (diff) |
games/gnomesudoku: switch from py-imaging to py-pillow
With hat: python
Approved by: portmgr (bdrewery, implicit)
Notes
Notes:
svn path=/head/; revision=369995
Diffstat (limited to 'games/gnomesudoku/files/patch-setup.py')
-rw-r--r-- | games/gnomesudoku/files/patch-setup.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/gnomesudoku/files/patch-setup.py b/games/gnomesudoku/files/patch-setup.py new file mode 100644 index 000000000000..16e918486268 --- /dev/null +++ b/games/gnomesudoku/files/patch-setup.py @@ -0,0 +1,11 @@ +--- setup.py.orig 2014-10-04 20:26:24 UTC ++++ setup.py +@@ -43,7 +43,7 @@ + except ImportError: + sys.exit('Error: PyGTK-2.6 or newer is required.') + raise +- mod_list = ['Image','gnomeprint','Numeric'] ++ mod_list = ['PIL','gnomeprint','Numeric'] + ok = 1 + for m in mod_list: + try: |