-DIST Soya-0.14.tar.bz2 905659 BLAKE2B bf759b7c599ee338a39388a15e95c0007aaef5d8f45aaee01e7c20671789454701383e89fb20b6c809bc3e7f3f0826fbb3c18ed27aa0c4e41c0eb8493f15c26c SHA512 3a6d8d0523cd13d1e9e8e2260612f23dfd2d33526b40d11ea1568a3b3c3eb7172ab94b8c8e9490203128c1fbe0b840d29a04d1c7b9d93bd273eb318ad286b711
DIST Soya-0.15rc1.tar.bz2 910576 BLAKE2B 2ec129869cdabcdb974dbfea24a3eebda1b55f4696f978335dd7e34a813c361eec9d27aa5b395a3ced0693335b34eb8f533f049e0240f443a8f1859fff5686cb SHA512 698ad3ebb446b49dc6fb70f53cfa6b1d9f35fc854d6f5fd1dafcb1478fce01c8de694a86af02580bb2b149f086122450f1bd6fe002f87d45a5c7555911c23fc6
DIST SoyaTutorial-0.14.tar.bz2 5223674 BLAKE2B 2cc3927a058936aa497846a300e9093f169898cf1bb13f3df88c6f75d344b689d95ea386ce50a3d93c6b14b3675211855d4515b3bcc3e297411b081007eb6784 SHA512 484bc93c2561aa1f2c8bd7101b75c8ea5d42a2bae7c0431ef1e7719bd86da2f47fb68129d60ce1923b26cce1b7915ab6576d0c5f6c8ee889736971be166b4623
+++ /dev/null
-Index: setup.py
-===================================================================
---- setup.py (revision 550)
-+++ setup.py (working copy)
-@@ -130,7 +130,7 @@
- if sys.platform[:3] == "win":
- LIBS = ["m", "glew32", "SDL", "SDL_mixer", "freetype", "cal3d", "stdc++", "ode"]
- else:
-- LIBS = ["m", "GLEW", "SDL", "freetype", "cal3d", "stdc++","ode"]
-+ LIBS = ["m", "GLEW", "GLU" , "SDL", "freetype", "cal3d", "stdc++","ode"]
- FRAMEWORKS=[]
-
- SOYA_PYREX_SOURCES = ["_soya.pyx", "matrix.c", "chunk.c"]
+++ /dev/null
-https://bugs.gentoo.org/show_bug.cgi?id=471510
---- a/editor/__init__.py
-+++ b/editor/__init__.py
-@@ -52,7 +52,7 @@
-
- if obj.face.material and obj.face.material.texture:
- try:
-- import Image, ImageTk
-+ from PIL import Image, ImageTk
-
- self.image = Image.open(os.path.join(soya.path[0], obj.face.material.texture.filename))
-
-@@ -71,7 +71,7 @@
- self.cancel = self.master.cancel
-
- def label_conf(self, event = None):
-- import Image, ImageTk
-+ from PIL import Image, ImageTk
-
- if self.image_width != self.label.winfo_width():
- self.image_width = self.label.winfo_width()
+++ /dev/null
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 flag-o-matic
-
-MY_PV="${PV/_}"
-MY_P="Soya-${MY_PV}"
-TUT_P="SoyaTutorial-${MY_PV}"
-
-DESCRIPTION="A high-level 3D engine for Python, designed with games in mind"
-HOMEPAGE="http://oomadness.nekeme.net/Soya/FrontPage"
-SRC_URI="
- http://download.gna.org/soya/${MY_P}.tar.bz2
- doc? ( http://download.gna.org/soya/${TUT_P}.tar.bz2 )
- examples? ( http://download.gna.org/soya/${TUT_P}.tar.bz2 )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc examples"
-
-DEPEND="
- =dev-games/ode-0.11.1
- dev-python/editobj
- >=dev-python/pyopenal-0.1.6[${PYTHON_USEDEP}]
- media-fonts/freefonts
- media-libs/freetype:2
- >=media-libs/cal3d-0.10
- media-libs/freeglut
- >=media-libs/freetype-2.5
- >=media-libs/glew-1.3.3:*
- >=media-libs/libsdl-1.2.8[opengl]
- media-libs/openal
- virtual/opengl
- dev-python/pillow[${PYTHON_USEDEP}]
-"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${P}-glu.patch"
- "${FILESDIR}/${PN}-pillow.patch"
-)
-
-python_compile() {
- local CFLAGS=${CFLAGS}
- append-cflags -fno-strict-aliasing
- distutils-r1_python_compile
-}
-
-python_install_all() {
- use doc && DOCS=( "${WORKDIR}/${TUT_P}/doc"/{soya_guide,pudding/pudding}.pdf )
- use examples && EXAMPLES=( "${WORKDIR}/${TUT_P}"/tutorial )
-
- distutils-r1_python_install_all
-}