diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-16 01:01:28 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-16 01:01:28 +0800 |
commit | 0f89b54a0f75e045c49b11db27311aa11100e083 (patch) | |
tree | 96f131952ec341665d9b8b89b008dae294db428f /graphics | |
parent | 3add92ea0e42175e59def5583b9df482e4512466 (diff) | |
download | freebsd-ports-gnome-0f89b54a0f75e045c49b11db27311aa11100e083.tar.gz freebsd-ports-gnome-0f89b54a0f75e045c49b11db27311aa11100e083.tar.zst freebsd-ports-gnome-0f89b54a0f75e045c49b11db27311aa11100e083.zip |
- Unconditionally disable precompiled headers to fix build with old gcc on -current kernel
MFH: 2015Q2
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/evolvotron/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/graphics/evolvotron/Makefile b/graphics/evolvotron/Makefile index 66ff2219a061..dd7a2c8cdb53 100644 --- a/graphics/evolvotron/Makefile +++ b/graphics/evolvotron/Makefile @@ -14,6 +14,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Generative software that evolves images/textures/patterns LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs @@ -35,17 +36,9 @@ DESKTOP_ENTRIES="Evolvotron" "Interactive image generator" "${PORTNAME}" \ OPTIONS_DEFINE= DOCS -.include <bsd.port.pre.mk> -.include <bsd.port.options.mk> - -.if ${CXX:T:M*clang*} || ${OSVERSION} >= 1000024 .for i in libevolvotron libfunction -CXXFLAGS+= -include ${WRKSRC}/${i}/${i}_precompiled.h \ - -I${WRKSRC}/${i} +CXXFLAGS+= -include ${WRKSRC}/${i}/${i}_precompiled.h .endfor -.else -QMAKE_ARGS+= CONFIG+=precompile_header -.endif post-patch: @${REINPLACE_CMD} -e \ @@ -77,4 +70,4 @@ do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |