diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-02-15 18:51:34 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-02-15 18:51:34 +0800 |
commit | 24a111f28eb2129424dabc66e6cd24bab3500b43 (patch) | |
tree | bbc23fc90bf432eebd262a0d9f87d2356fc22162 | |
parent | 0e884b16eae2c713999fb7f9bd65a711526818db (diff) | |
download | marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar.gz marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar.bz2 marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar.lz marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar.xz marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.tar.zst marcuscom-ports-24a111f28eb2129424dabc66e6cd24bab3500b43.zip |
Revise comment about bindings, python has arrived ages ago.
Fix depend and configure with new py-clutter-gtk.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13634 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | graphics/libchamplain/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/graphics/libchamplain/Makefile b/graphics/libchamplain/Makefile index 624a60712..756f115f0 100644 --- a/graphics/libchamplain/Makefile +++ b/graphics/libchamplain/Makefile @@ -3,7 +3,7 @@ # Whom: Koop Mast <kwm@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/graphics/libchamplain/Makefile,v 1.14 2010/01/11 05:21:56 marcus Exp $ +# $MCom: ports/graphics/libchamplain/Makefile,v 1.15 2010/01/30 23:34:40 marcus Exp $ # PORTNAME= libchamplain @@ -28,16 +28,14 @@ USE_LDCONFIG= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" -# python bindings and mono need to be ported to clutter 1.0 first. -# And clutter 1.0 versions of py-clutter and clutter-sharp need to -# get released upstream too. +# clutter-sharp need to get released. CONFIGURE_ARGS+=--enable-managed=no PLIST_SUB= VERSION=${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} .if !defined(WITHOUT_PYTHON) USE_PYTHON= yes -PYCLUTTER_GTK= ${LOCALBASE}/libdata/pkgconfig/pyclutter-gtk-0.9.pc +PYCLUTTER_GTK= ${LOCALBASE}/libdata/pkgconfig/pyclutter-gtk-0.10.pc BUILD_DEPENDS+= ${PYCLUTTER_GTK}:${PORTSDIR}/graphics/py-clutter-gtk RUN_DEPENDS+= ${PYCLUTTER_GTK}:${PORTSDIR}/graphics/py-clutter-gtk CONFIGURE_ARGS+= --enable-python=yes @@ -52,4 +50,8 @@ PLIST_SUB+= PYTHON="@comment " @${ECHO_CMD} "Specify WITHOUT_PYTHON=yes to disable python bindings" @${ECHO_CMD} "" +post-patch: + @${REINPLACE_CMD} -e 's|pyclutter-gtk-0.9|pyclutter-gtk-0.10|g' \ + ${WRKSRC}/configure + .include <bsd.port.mk> |