mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-28 05:29:48 +00:00
3b22ad40b1
Change library dependensies to use USES= where applicable. Build ports documentation and examples, depending on respective option. Add two new options, NLS and GRAPH, the GRAPH option enables the rrdtool graph command, which pulls in cario and a lot of other dependencies. [1] Add missing dependencies. Becase of shlib version bump, bump portrevision on depending ports. PR: 192024 [1] (based on) Submitted by: asomers Approved by: portmgr (blanket, portrevision bumps)
25 lines
593 B
Makefile
25 lines
593 B
Makefile
# Created by: Hye-Shik Chang
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rrdtool_lgpl
|
|
PORTVERSION= 1.0b1
|
|
PORTREVISION= 4
|
|
CATEGORIES= databases python
|
|
MASTER_SITES= SF/py-rrdtool/py-rrdtool/${PORTVERSION}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= py-rrdtool-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Python interface to RRDTool, the graphing and logging utility
|
|
|
|
LIB_DEPENDS= librrd.so:${PORTSDIR}/databases/rrdtool
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
PYDISTUTILS_PKGNAME= py-rrdtool
|
|
|
|
LIBDIR?= ${LOCALBASE}/lib # directory where librrd.so lives
|
|
|
|
.include <bsd.port.mk>
|