diff options
author | adridg <adridg@FreeBSD.org> | 2018-03-22 17:53:05 +0800 |
---|---|---|
committer | adridg <adridg@FreeBSD.org> | 2018-03-22 17:53:05 +0800 |
commit | 406bbdd1e78e67a8103bd0487a07f16f8f1eebd2 (patch) | |
tree | b521274b39061d196d452e733fac7f106325356c /cad/kicad-devel | |
parent | 0968dca27ea1f71d9b8355455a0ea6924d24b39e (diff) | |
download | freebsd-ports-gnome-406bbdd1e78e67a8103bd0487a07f16f8f1eebd2.tar.gz freebsd-ports-gnome-406bbdd1e78e67a8103bd0487a07f16f8f1eebd2.tar.zst freebsd-ports-gnome-406bbdd1e78e67a8103bd0487a07f16f8f1eebd2.zip |
Fix cad/kicad{-devel} in advance of CMake 3.11. Remove old duplicate CMake
module.
The old modules use CMake internals that are going away in 3.11;
this particular module has been shipped with CMake since 3.0 at least,
so it's just not necessary except on silly ancient platforms.
Reviewed by: thierry (maintainer)
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D14772
Diffstat (limited to 'cad/kicad-devel')
-rw-r--r-- | cad/kicad-devel/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cad/kicad-devel/Makefile b/cad/kicad-devel/Makefile index b414c9cbbd4c..fa7043050d82 100644 --- a/cad/kicad-devel/Makefile +++ b/cad/kicad-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= kicad DISTVERSION= r${GIT_SRC_DATE} -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= cad PKGNAMESUFFIX= -devel DIST_SUBDIR= ${PORTNAME} @@ -84,6 +84,12 @@ showversions: tmp: echo "${DATADIR} ${DATADIR:H}" +# The CheckCXXSymbolExists module has been shipped with CMake since 3.0 times. +# The ancient implementation that this bundled module uses, no longer works +# because it uses CMake internals that have gone away in 3.11. +post-extract: + ${RM} ${WRKSRC}/CMakeModules/CheckCXXSymbolExists.cmake + post-configure: ${REINPLACE_CMD} -e 's|#define HAVE_ISO646_H|//#define HAVE_ISO646_H|' \ ${WRKSRC}/config.h |