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)
29 lines
777 B
Makefile
29 lines
777 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= libkdegames
|
|
PORTVERSION= ${KDE4_VERSION}
|
|
PORTREVISION= 1
|
|
CATEGORIES= games kde
|
|
MASTER_SITES= KDE/${KDE4_BRANCH}/${PORTVERSION}/src
|
|
DIST_SUBDIR= KDE/${PORTVERSION}
|
|
|
|
MAINTAINER= kde@FreeBSD.org
|
|
COMMENT= Libraries used by KDE 4 games
|
|
|
|
USE_KDE4= kdehier kdelibs kdeprefix automoc4
|
|
USES= cmake:outsource tar:xz
|
|
USE_QT4= network phonon xml moc_build qmake_build rcc_build uic_build
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= LOWLATENCY
|
|
OPTIONS_DEFAULT= LOWLATENCY
|
|
|
|
LOWLATENCY_DESC= Use OpenAL and libsndfile for lower latency
|
|
LOWLATENCY_LIB_DEPENDS= libsndfile.so:${PORTSDIR}/audio/libsndfile
|
|
LOWLATENCY_USES= openal
|
|
LOWLATENCY_CMAKE_ON= -DWITH_OpenAL=on \
|
|
-DWITH_SndFile=on
|
|
LOWLATENCY_CMAKE_OFF= -DWITH_OpenAL=off \
|
|
-DWITH_SndFile=off
|
|
|
|
.include <bsd.port.mk>
|