Changeset View
Changeset View
Standalone View
Standalone View
devel/compiler-rt/Makefile
| PORTNAME= compiler-rt | PORTNAME= compiler-rt | ||||
| DISTVERSION= 0.r${SVN_REV} | DISTVERSION= 0.r${SVN_REV} | ||||
| PORTREVISION= 1 | |||||
| CATEGORIES= devel | CATEGORIES= devel | ||||
| MASTER_SITES= LOCAL/brooks | MASTER_SITES= LOCAL/brooks | ||||
| MAINTAINER= brooks@FreeBSD.org | MAINTAINER= brooks@FreeBSD.org | ||||
| COMMENT= Compiler runtime library with Blocks support | COMMENT= Compiler runtime library with Blocks support | ||||
| WWW= https://compiler-rt.llvm.org/ | WWW= https://compiler-rt.llvm.org/ | ||||
| LICENSE= BSD3CLAUSE MIT | LICENSE= BSD3CLAUSE MIT | ||||
| Show All 36 Lines | |||||
| .if defined(BOOTSTRAP) | .if defined(BOOTSTRAP) | ||||
| SVN_REV!= svn info ${LLVM_SVN}/ | ${GREP} Revision | cut -d' ' -f2 | SVN_REV!= svn info ${LLVM_SVN}/ | ${GREP} Revision | cut -d' ' -f2 | ||||
| .else | .else | ||||
| .include "Makefile.svn_rev" | .include "Makefile.svn_rev" | ||||
| .endif | .endif | ||||
| .if defined(BOOTSTRAP) | .if defined(BOOTSTRAP) | ||||
| .if ${WITH_SUBVERSION_VER:U} == LTS | |||||
| FETCH_DEPENDS+= svn:devel/subversion-lts | |||||
| .else | |||||
| FETCH_DEPENDS+= svn:devel/subversion | FETCH_DEPENDS+= svn:devel/subversion | ||||
| .endif | |||||
| do-fetch: | do-fetch: | ||||
| ${MKDIR} ${WRKDIR} | ${MKDIR} ${WRKDIR} | ||||
| svn export -r ${SVN_REV} \ | svn export -r ${SVN_REV} \ | ||||
| ${LLVM_SVN}/compiler-rt/trunk ${WRKSRC} | ${LLVM_SVN}/compiler-rt/trunk ${WRKSRC} | ||||
| cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} | cd ${WRKDIR}; tar cvfy ${DISTDIR}/${DISTNAME}.tar.bz2 ${DISTNAME} | ||||
| echo "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev | echo "SVN_REV= ${SVN_REV}" > ${MASTERDIR}/Makefile.svn_rev | ||||
| .if ${USER} == brooks | .if ${USER} == brooks | ||||
| Show All 15 Lines | |||||