mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
21e419637c
Reported by: makc@ Approved by: gahr@
65 lines
1.7 KiB
Makefile
65 lines
1.7 KiB
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: tulip
|
|
# Date created: Feb 8, 2003
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tulip
|
|
PORTVERSION= 3.5.0
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SF/auber/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= A system dedicated to the visualization of huge graphs
|
|
|
|
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
|
|
gzstream.0:${PORTSDIR}/devel/gzstream \
|
|
ftgl.2:${PORTSDIR}/graphics/ftgl \
|
|
qscintilla2:${PORTSDIR}/devel/qscintilla2 \
|
|
jpeg.11:${PORTSDIR}/graphics/jpeg
|
|
|
|
USE_QT_VER= 4
|
|
QT_COMPONENTS= corelib moc_build uic_build rcc_build gui opengl xml network qmake_build \
|
|
designer assistant assistantclient
|
|
USE_GL= glew glut
|
|
USE_GNOME= libxml2
|
|
USE_PYTHON= yes
|
|
USE_CMAKE= yes
|
|
CMAKE_OUTSOURCE=yes
|
|
CMAKE_ARGS+= -DLOCALBASE:PATH=${LOCALBASE} \
|
|
-DPYTHON_INCLUDEDIR:PATH=${PYTHON_INCLUDEDIR}
|
|
USE_LDCONFIG= yes
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}-src
|
|
|
|
PLIST_SUB+= TULIP_VERSION=${PORTVERSION} \
|
|
TULIP_VERS=${PORTVERSION:R}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
#post-extract:
|
|
# @${FIND} ${WRKSRC} -name "moc_*" -delete
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|<qdir.h>|<QtCore/qdir.h>|' \
|
|
${WRKSRC}/software/tulip/src/Application.cpp
|
|
@${REINPLACE_CMD} -e 's|<qtimer.h>|<QtCore/qtimer.h>|;s|<qlocale.h>|<QtCore/qlocale.h>|' \
|
|
${WRKSRC}/software/tulip/src/main.cpp
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES+= ${PORTNAME}-${PORTVERSION}-html.tar.bz2
|
|
PORTDOCS= *
|
|
post-install:
|
|
${INSTALL} -d ${DOCSDIR}
|
|
(cd ${WRKDIR}/${PORTNAME}-${PORTVERSION}-html && ${COPYTREE_SHARE} \* ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|