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)
42 lines
1010 B
Makefile
42 lines
1010 B
Makefile
# Created by: David Naylor <naylor.b.david@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kaudiocreator
|
|
PORTVERSION= 1.3
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio kde
|
|
MASTER_SITES= http://kde-look.org/CONTENT/content-files/
|
|
DISTNAME= 107645-${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= dbn@FreeBSD.org
|
|
COMMENT= Audio-cd ripper and encoder for KDE4
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libdiscid.so:${PORTSDIR}/audio/libdiscid \
|
|
libtag.so:${PORTSDIR}/audio/taglib
|
|
RUN_DEPENDS= flac:${PORTSDIR}/audio/flac \
|
|
oggenc:${PORTSDIR}/audio/vorbis-tools
|
|
.if !defined(PACKAGE_BUILDING)
|
|
RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame
|
|
.endif
|
|
|
|
USES= cmake tar:bzip2
|
|
USE_QT4= moc_build qmake_build rcc_build uic_build
|
|
USE_KDE4= automoc4 kdehier kdeprefix libkcddb libkcompactdisc
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
NLS_USES= gettext
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if empty(PORT_OPTIONS:MNLS)
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,add_subdirectory(po),,' ${WRKSRC}/CMakeLists.txt
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|