diff options
author | miwi <miwi@FreeBSD.org> | 2008-05-28 06:12:09 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-05-28 06:12:09 +0800 |
commit | c486a60f04933c8227640b8faca0f931afbe32ef (patch) | |
tree | 827b6cdb889eaa1ccc00ca4598ae40dee1a42a50 /security/ike | |
parent | 888eabb1977d6504355090d942963975c8d755ed (diff) | |
download | freebsd-ports-graphics-c486a60f04933c8227640b8faca0f931afbe32ef.tar.gz freebsd-ports-graphics-c486a60f04933c8227640b8faca0f931afbe32ef.tar.zst freebsd-ports-graphics-c486a60f04933c8227640b8faca0f931afbe32ef.zip |
- Add common code to support for cmake based ports.
- Update devel/cmake to 2.6.0 (also fix ports/123092)
- Use the new CMAKE build framework in all ports using cmake
Approved by: portmgr (pav)
Diffstat (limited to 'security/ike')
-rw-r--r-- | security/ike/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/security/ike/Makefile b/security/ike/Makefile index bb5eb677801..fec55e94727 100644 --- a/security/ike/Makefile +++ b/security/ike/Makefile @@ -15,12 +15,11 @@ EXTRACT_SUFX= .tbz2 MAINTAINER= mgrooms@shrew.net COMMENT= Shrew Soft IKE daemon and client tools -BUILD_DEPENDS= cmake:${PORTSDIR}/devel/cmake - ONLY_FOR_ARCHS= i386 amd64 USE_BISON= build USE_OPENSSL= yes +USE_CMAKE= yes USE_BZIP2= yes USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME} @@ -34,8 +33,6 @@ MAN1= ikea.1 ikec.1 MAN5= iked.conf.5 MAN8= iked.8 -CMAKE_ARGS= -DCMAKE_INSTALL_PREFIX=${PREFIX} - .include <bsd.port.pre.mk> .ifdef(WITH_DEBUG) @@ -78,9 +75,6 @@ post-patch: @sleep 3 .endif -do-configure: - @cd ${BUILD_WRKSRC}; cmake ${CMAKE_ARGS} . - post-build: # QT 3.3 UIC (User Interface Compiler) creates these, so remove them. # Otherwise x11-toolkits/qt33 would have to be patched, as Gentoo did. |