Changeset View
Changeset View
Standalone View
Standalone View
lang/dotnet/Makefile
| Show All 16 Lines | |||||
| LICENSE= MIT | LICENSE= MIT | ||||
| ONLY_FOR_ARCHS= aarch64 amd64 | ONLY_FOR_ARCHS= aarch64 amd64 | ||||
| BUILD_DEPENDS= bash:shells/bash \ | BUILD_DEPENDS= bash:shells/bash \ | ||||
| cmake:devel/cmake-core \ | cmake:devel/cmake-core \ | ||||
| git:devel/git \ | git:devel/git \ | ||||
| ggrep:textproc/gnugrep \ | ggrep:textproc/gnugrep \ | ||||
| terminfo-db>0:misc/terminfo-db | terminfo-db>0:misc/terminfo-db \ | ||||
| ${LOCALBASE}/lib/compat/libssl.so.111:misc/compat13x | |||||
| LIB_DEPENDS= libbrotlienc.so:archivers/brotli \ | LIB_DEPENDS= libbrotlienc.so:archivers/brotli \ | ||||
| libicuuc.so:devel/icu \ | libicuuc.so:devel/icu \ | ||||
| libinotify.so:devel/libinotify \ | libinotify.so:devel/libinotify \ | ||||
| libunwind.so:devel/libunwind | libunwind.so:devel/libunwind | ||||
| RUN_DEPENDS= terminfo-db>0:misc/terminfo-db \ | RUN_DEPENDS= terminfo-db>0:misc/terminfo-db \ | ||||
| dotnet:lang/dotnet-host | dotnet:lang/dotnet-host | ||||
| USES= autoreconf:build gssapi:mit llvm:noexport pkgconfig \ | USES= autoreconf:build gssapi:mit llvm:noexport pkgconfig \ | ||||
| ▲ Show 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | |||||
| .include <bsd.port.pre.mk> | .include <bsd.port.pre.mk> | ||||
| .if ${DOTNETVERSION:R} == 8 && ${ARCH} == aarch64 | .if ${DOTNETVERSION:R} == 8 && ${ARCH} == aarch64 | ||||
| BROKEN= "crossgen2" exited with code 139 | BROKEN= "crossgen2" exited with code 139 | ||||
| .endif | .endif | ||||
| .if ${SSL_DEFAULT} == base && ${DOTNETVERSION:R} > 8 | .if ${SSL_DEFAULT} == base && ${DOTNETVERSION:R} > 8 | ||||
| EXTRA_PATCHES= ${PATCHDIR}/extra-patch-base-openssl | EXTRA_PATCHES= ${PATCHDIR}/extra-patch-base-openssl | ||||
| .endif | |||||
| .if ${OSVERSION} >= 1400000 | |||||
| BUILD_DEPENDS+= ${LOCALBASE}/lib/compat/libssl.so.111:misc/compat13x | |||||
| .endif | .endif | ||||
| .if ${ARCH} == amd64 | .if ${ARCH} == amd64 | ||||
| PLIST_SUB+= VXSORT= | PLIST_SUB+= VXSORT= | ||||
| .else | .else | ||||
| PLIST_SUB+= VXSORT="@comment " | PLIST_SUB+= VXSORT="@comment " | ||||
| .endif | .endif | ||||
| ▲ Show 20 Lines • Show All 68 Lines • Show Last 20 Lines | |||||