mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
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)
35 lines
756 B
Makefile
35 lines
756 B
Makefile
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= creox
|
|
PORTVERSION= 0.3.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= audio kde
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Realtime sound processor
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libjack.so:${PORTSDIR}/audio/jack
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= laudrup
|
|
GH_PROJECT= Creox4
|
|
GH_TAGNAME= 0.3
|
|
GH_COMMIT= 8e27483
|
|
|
|
USES= cmake:outsource
|
|
USE_KDE4= automoc4 kdelibs kdeprefix
|
|
USE_QT4= moc_build qmake_build rcc_build uic_build
|
|
USE_XORG= xft xpm
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/-Wno-unused-but-set-variable/d' ${WRKSRC}/CMakeLists.txt
|
|
# FreeBSD does not have exp10f(3), use powf(3) instead
|
|
@${GREP} -lR "exp10f(" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|exp10f(|powf(10.,|'
|
|
|
|
.include <bsd.port.mk>
|