fe01c3becc
This time, also stop setting MASTER_SITES and do not override the existing USES entry, which broke the build.
25 lines
626 B
Makefile
25 lines
626 B
Makefile
# Created by: Dima Panov <fluffy@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qt4
|
|
PORTVERSION= ${PYQT4_VERSION}
|
|
CATEGORIES= devel python
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Python bindings for the Qt 4 toolkit (meta port)
|
|
|
|
USES= metaport python
|
|
|
|
OPTIONS_DEFINE= ALL ${PYQT4_COMPONENTS}
|
|
OPTIONS_DEFAULT= ALL
|
|
ALL_DESC= All PyQt4 components
|
|
|
|
.include "${.CURDIR}/bsd.pyqt.mk"
|
|
|
|
.for component in ${PYQT4_COMPONENTS}
|
|
${component}_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-${component}>=0:${PORTSDIR}/${${component}_PORT}
|
|
ALL_RUN_DEPENDS+= ${${component}_RUN_DEPENDS}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|