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)
37 lines
742 B
Makefile
37 lines
742 B
Makefile
# Created by: Chris D. Faulhaber <jedgar@fxp.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= kdbg
|
|
PORTVERSION= 2.5.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel kde
|
|
MASTER_SITES= SF/${PORTNAME}/Source%20Code/${PORTVERSION}
|
|
|
|
MAINTAINER= thomas.sander@gmx.de
|
|
COMMENT= Graphical user interface around gdb using KDE
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USES= cmake
|
|
USE_KDE4= kdelibs kdeprefix automoc4
|
|
USE_QT4= moc_build qmake_build rcc_build uic_build
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_DEFAULT=NLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
.if empty(PORT_OPTIONS:MNLS)
|
|
${REINPLACE_CMD} -e 's|add_subdirectory(po)||g' ${WRKSRC}/CMakeLists.txt
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|