openbsd-ports/devel/cmake/Makefile
dcoppa 2c6d0109b6 Zap some unwanted optimization flags ("-O3", "-Os") that were brought
in by cmake when the CMAKE_BUILD_TYPE var is used.

Pointed out by and OK steven@
2010-10-26 18:31:18 +00:00

59 lines
1.3 KiB
Makefile

# $OpenBSD: Makefile,v 1.31 2010/10/26 18:31:18 dcoppa Exp $
VMEM_WARNING = Yes
HOMEPAGE = http://www.cmake.org/
CATEGORIES = devel
COMMENT = portable build system
DISTNAME = cmake-2.8.2
REVISION = 3
MASTER_SITES = ${HOMEPAGE}files/v2.8/
MAINTAINER = David Coppa <dcoppa@openbsd.org>
# BSD
PERMIT_DISTFILES_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = c crypto curl curses expat form m ssl stdc++ z
LIB_DEPENDS = ::net/curl
CONFIGURE_STYLE = simple
CONFIGURE_ARGS = --prefix=${PREFIX} \
--datadir=/share/cmake \
--docdir=/share/doc/cmake \
--system-libs
PORTHOME = ${WRKDIR}
SEPARATE_BUILD = simple
USE_GROFF = Yes
REGRESS_TARGET = test
# XXX eats all memory
.if ${MACHINE_ARCH} == "arm"
CFLAGS += -O0
.endif
pre-configure:
@cp ${FILESDIR}/*.cmake ${WRKSRC}/Modules/
${SUBST_CMD} ${WRKSRC}/Modules/FindLibIntl.cmake \
${WRKSRC}/Modules/FindMPEG.cmake \
${WRKSRC}/Modules/FindMPEG2.cmake \
${WRKSRC}/Modules/FindQt.cmake \
${WRKSRC}/Modules/FindQt3.cmake \
${WRKSRC}/Modules/FindSDL.cmake \
${WRKSRC}/Modules/FindwxWindows.cmake
# Remove spurious post-build files
post-install:
@rm -f ${WRKDIST}/Modules/*.{beforesubst,orig}
@rm -f ${WRKDIST}/Modules/Compiler/*.orig
@rm -f ${WRKDIST}/Modules/Platform/*.orig
.include <bsd.port.mk>