mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
34 lines
598 B
Makefile
34 lines
598 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= ds2
|
|
PORTVERSION= 20151028
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= wg@FreeBSD.org
|
|
COMMENT= Debug server for lldb
|
|
|
|
LICENSE= NCSA
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= facebook
|
|
GH_TAGNAME= 52c45f3
|
|
|
|
ONLY_FOR_ARCHS= amd64
|
|
ONLY_FOR_ARCHS_REASON= the ptrace code only has an amd64 backend
|
|
|
|
USES= cmake:insource compiler
|
|
|
|
PLIST_FILES= bin/ds2
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/ds2 ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${COMPILER_TYPE} == "gcc"
|
|
IGNORE= builds only on greater than 10.1 and with clang
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|