pkgsrc/graphics/py-clutter/Makefile
obache 4dd72da588 Update py-cltter to 1.0.2.
Overview of changes between 1.0.0 and 1.0.2
===========================================

* Fix an import error of the PyCairo C API [Bastian]
* Use the GClosure variants for the Alpha API [Emmanuele]
* Update the examples [Bastian, Emmanuele]
* Allow iterating over the actors references by clutter.Behaviour instances
  using the Python iteration syntax [Emmanuele]
* Override __str__ and __repr__ slots for clutter.Path [Emmanuele]
* Add back clutter.Actor.get_allocation_geometry() which was erroneously
  removed from the bindings [Emmanuele]
* Update the build so that PyClutter works with Clutter 1.2 [Bastian]
* Add support for the X11 and GLX specific API, under the clutter.x11 and
  clutter.glx sub-modules, respectively [Bastian]
* Add more (optional) parameters to the clutter.Animation constructor [Bastian]
* Add __str__ and __repr__ slots for many boxed types [Bastian]
* Add richcompare slot for clutter.Color, clutter.Path and
  clutter.ActorBox [Bastian]
* Allow iterating over a clutter.Path [Bastian]
* Allow implementing a clutter.ChildMeta in pure Python [Bastian]
* Bind clutter.Units [Bastian]
* Allow implementing clutter.Scriptable in pure Python [Bastian]
* Use a custom codegen script to fix bug #1827 and allow overriding the
  Python name of a C method [Bastian]
* Add docstrings for all methods [Bastian]
2010-04-09 01:43:23 +00:00

37 lines
931 B
Makefile

# $NetBSD: Makefile,v 1.13 2010/04/09 01:43:23 obache Exp $
#
DISTNAME= pyclutter-1.0.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//}
CATEGORIES= graphics
MASTER_SITES= http://www.clutter-project.org/sources/pyclutter/1.0/
MAINTAINER= obache@NetBSD.org
HOMEPAGE= http://www.clutter-project.org/
COMMENT= Python modules for Clutter toolkit
LICENSE= gnu-lgpl-v2.1
PKG_DESTDIR_SUPPORT= user-destdir
PYTHON_VERSIONS_ACCEPTED= 26 25
PREV_PKGPATH= graphics/py-pyclutter
SUPERSEDES= ${PYPKGPREFIX}-pyclutter-[0-9]*
GNU_CONFIGURE= yes
USE_LIBTOOL= yes
USE_TOOLS+= gmake pkg-config
PKGCONFIG_OVERRIDE+= pyclutter.pc.in
PY_PATCHPLIST= yes
PLIST_VARS+= x11
.include "../../graphics/clutter/buildlink3.mk"
.if !empty(PKG_BUILD_OPTIONS.clutter:Mx11)
PLIST.x11= yes
.endif
.include "../../graphics/py-cairo/buildlink3.mk"
.include "../../x11/py-gtk2/buildlink3.mk"
.include "../../lang/python/extension.mk"
.include "../../mk/bsd.pkg.mk"