diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-01-01 04:59:55 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-01-01 04:59:55 +0800 |
commit | efa054eb2086acd196f52eeab83f151d739931f0 (patch) | |
tree | 8d149e77fce8848a1bc1d8f7186b4113d8d09e45 /graphics | |
parent | 5c83e87bbb07fafa0244d88d403fce5347a160b3 (diff) | |
download | marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar.gz marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar.bz2 marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar.lz marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar.xz marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.tar.zst marcuscom-ports-efa054eb2086acd196f52eeab83f151d739931f0.zip |
Fix the dependency, PYNUMERIC -> PYNUMPY. In the ChangeLog shows:
--------------
* cairo/pycairo-surface.c:
Remove Numeric Python support, since Numeric has been made obsolete by
numpy, and numpy data can be read using ImageSurface.create_for_data.
--------------
Bump the PORTREVISION. I know numpy pulls lang/gcc42 dependency, not sure if
I can do something about it.
PR: ports/130031
Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp>
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@11843 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/py-cairo/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/py-cairo/Makefile b/graphics/py-cairo/Makefile index 9c407dfb3..8ab7879c7 100644 --- a/graphics/py-cairo/Makefile +++ b/graphics/py-cairo/Makefile @@ -3,11 +3,12 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/graphics/py-cairo/Makefile,v 1.22 2007/03/14 21:38:08 ahze Exp $ +# $MCom: ports/graphics/py-cairo/Makefile,v 1.24 2008/12/20 05:43:37 marcus Exp $ # PORTNAME= cairo PORTVERSION= 1.8.0 +PORTREVISION= 1 CATEGORIES= graphics python MASTER_SITES= http://cairographics.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,15 +17,14 @@ DISTNAME= py${PORTNAME}-${PORTVERSION} MAINTAINER= gnome@FreeBSD.org COMMENT= Python bindings for Cairo -BUILD_DEPENDS= ${PYNUMERIC} +BUILD_DEPENDS= ${PYNUMPY} LIB_DEPENDS= cairo.2:${PORTSDIR}/graphics/cairo -RUN_DEPENDS= ${PYNUMERIC} +RUN_DEPENDS= ${PYNUMPY} USE_PYTHON= yes USE_GMAKE= yes USE_GNOME= gnometarget gnomehack GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-pygtk CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" |