Index: branches/2016Q4/devel/renpy6/Makefile =================================================================== --- branches/2016Q4/devel/renpy6/Makefile (revision 427014) +++ branches/2016Q4/devel/renpy6/Makefile (revision 427015) @@ -1,24 +1,24 @@ # $FreeBSD$ PORTVERSION= 6.18.3 -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= 6 CONFLICTS_INSTALL= ${PORTNAME}-[0-9]* MASTERDIR= ${.CURDIR}/../renpy PATCHDIR= ${.CURDIR}/files DISTINFO_FILE= ${.CURDIR}/distinfo PORTSCOUT= limit:^6\.18\.* BUILD_DEPENDS= ${PYGAME} RUN_DEPENDS= ${PYGAME} USE_SDL= sdl post-patch: @${REINPLACE_CMD} -e 's,/usr/bin/python,${PYTHON_CMD},' \ ${WRKSRC}/launcher/game/project.rpy .include "${MASTERDIR}/Makefile" Index: branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx =================================================================== --- branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx (nonexistent) +++ branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx (revision 427015) @@ -0,0 +1,45 @@ +https://github.com/renpy/renpy/commit/ecadc55616f3 +https://github.com/renpy/renpy/commit/e680702e87b8 + +--- renpy/gl/gltexture.pyx.orig 2014-10-05 01:47:19 UTC ++++ renpy/gl/gltexture.pyx +@@ -255,7 +255,7 @@ cdef class TextureCore: + # The number of the OpenGL texture this texture object + # represents. + self.generation = 0 +- self.number = -1 ++ self.number = 0 + + # The format of this texture in the GPU (or 0 if not known). + self.format = 0 +@@ -447,7 +447,7 @@ cdef class TextureCore: + + cdef unsigned int texnums[1] + +- if self.number != -1: ++ if self.number != 0: + return 0 + + glGenTextures(1, texnums) +@@ -468,17 +468,19 @@ cdef class TextureCore: + + global total_texture_size + +- if self.number == -1: ++ if self.number == 0: + return + + cdef GLuint texnums[1] + + texnums[0] = self.number + glDeleteTextures(1, texnums) ++ self.number = 0 + +- texture_numbers.remove(self.number) ++ texture_numbers.discard(self.number) + total_texture_size -= self.width * self.height * 4 + ++ + class Texture(TextureCore): + """ + We need to be a real python class, not a C extension, to ensure that Property changes on: branches/2016Q4/devel/renpy6/files/patch-renpy_gl_gltexture.pyx ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2016Q4 =================================================================== --- branches/2016Q4 (revision 427014) +++ branches/2016Q4 (revision 427015) Property changes on: branches/2016Q4 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r427014