515db2ed10
GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so GCC-based systems will upgrade to the default ports compiler (GCC 4.7 currently.) Add two patches to OpenEXR to permit building it in a live system with the older OpenEXR version installed. Bug report filed to upstream Github at https://github.com/openexr/openexr/issues/130 Couple OpenEXR more tightly to ilmbase and require its exact .so version. Add UPDATING note, and bump PORTREVISION of all dependent ports. Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer. Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports)
86 lines
2.4 KiB
Makefile
86 lines
2.4 KiB
Makefile
# Created by: thierry@pompo.net
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rkward
|
|
PORTVERSION= 0.6.1
|
|
PORTREVISION= 6
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF/${PORTNAME}/Current_Stable_Releases
|
|
PKGNAMESUFFIX= -kde4
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= IDE/GUI for the R-project
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R
|
|
RUN_DEPENDS= ${LOCALBASE}/bin/R:${PORTSDIR}/math/R \
|
|
${KDE4_PREFIX}/lib/kde4/katepart.so:${PORTSDIR}/editors/kate
|
|
|
|
CONFLICTS= rkward-0.4.*
|
|
|
|
USE_QT4= qmake_build moc_build rcc_build uic_build phonon
|
|
|
|
USE_KDE4= kdehier kdeprefix automoc4 kdelibs
|
|
USE_PHP= yes
|
|
WANT_PHP_CLI= yes
|
|
USES= cmake gettext fortran
|
|
INSTALLS_ICONS= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/HTML/en/rkward
|
|
|
|
OPTIONS_DEFINE= RECDEP DOCS NLS
|
|
RECDEP_DESC= Recommended runtime dependencies
|
|
OPTIONS_DEFAULT=RECDEP
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
NLS= ""
|
|
.else
|
|
NLS= "@comment "
|
|
.endif
|
|
PLIST_SUB+= NLS=${NLS}
|
|
|
|
.if ${PORT_OPTIONS:MRECDEP}
|
|
LR_MOD_DIR= ${LOCALBASE}/lib/R/library
|
|
RUN_DEPENDS+= ${LR_MOD_DIR}/R2HTML/INDEX:${PORTSDIR}/textproc/R-cran-R2HTML \
|
|
${LR_MOD_DIR}/XML/INDEX:${PORTSDIR}/textproc/R-cran-XML \
|
|
${LR_MOD_DIR}/mvtnorm/INDEX:${PORTSDIR}/math/R-cran-mvtnorm \
|
|
${LR_MOD_DIR}/outliers/INDEX:${PORTSDIR}/math/R-cran-outliers \
|
|
${LR_MOD_DIR}/tseries/INDEX:${PORTSDIR}/finance/R-cran-tseries \
|
|
${LR_MOD_DIR}/car/INDEX:${PORTSDIR}/math/R-cran-car
|
|
.endif
|
|
|
|
pre-configure:
|
|
${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \
|
|
${WRKSRC}/rkward/rbackend/rkfrontendtransmitter.cpp
|
|
.if ! ${PORT_OPTIONS:MDOCS}
|
|
${REINPLACE_CMD} -e 's|ADD_SUBDIRECTORY(doc)|#ADD_SUBDIRECTORY(doc)|' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
.else
|
|
#Fix build with kdelibs>=4.5.0
|
|
${REINPLACE_CMD} -e 's,V4.1-Based Variant V1.0,V4.2-Based Variant V1.1,g' \
|
|
${WRKSRC}/doc/rkward/index.docbook
|
|
.endif
|
|
.if ! ${PORT_OPTIONS:MNLS}
|
|
${REINPLACE_CMD} -e 's|ADD_SUBDIRECTORY(po)|#ADD_SUBDIRECTORY(po)|' \
|
|
${WRKSRC}/CMakeLists.txt
|
|
.endif
|
|
@(if [ ! -e ${LOCALBASE}/lib/R/lib/libR.so ] ; then \
|
|
${ECHO_MSG} "==> ${PKGNAME} requires math/R to be built WITH_LIBR" ; \
|
|
exit 1; fi)
|
|
|
|
post-install:
|
|
${RM} ${STAGEDIR}${PREFIX}/share/apps/katepart/syntax/r.xml # Conflicts with kate
|
|
|
|
.if defined(MAINTAINER_MODE)
|
|
regression-test: install
|
|
@${ECHO_MSG} "To pass the tests, some CRAN packages like R2HTML"
|
|
@${ECHO_MSG} "must be installed."
|
|
(cd ${WRKSRC}/tests && KDE_LANG=en_US make plugintests)
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|