ports use BUILD_DEPENDS:= ${RUN_DEPENDS}. This patch fixes ports that are currently broken. This is a temporary measure until we organically stop using := or someone(s) spend a lot of time changing all the ports over. Explicit duplication > := > = and this just moves ports one step to the left Approved by: portmgr
32 lines
754 B
Makefile
32 lines
754 B
Makefile
# New ports collection makefile for: py-jswebkit
|
|
# Date created: 07 Mar 2010
|
|
# Whom: Ju Pengfei <jupengfei@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= jswebkit
|
|
PORTVERSION= 0.0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= www python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= python-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= WebKit/JavaScriptCore Python bindings
|
|
|
|
BUILD_DEPENDS= cython:${PORTSDIR}/lang/cython
|
|
LIB_DEPENDS= webkitgtk-1.0:${PORTSDIR}/www/webkit-gtk2
|
|
RUN_DEPENDS:= ${BUILD_DEPENDS}
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/jswebkit.so
|
|
|
|
PROJECTHOST= gwrite
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_PKGNAME= python_jswebkit
|
|
|
|
.include <bsd.port.mk>
|