diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-27 05:34:35 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-06-27 05:34:35 +0800 |
commit | 8e8c3f4ec0fc4715afe0458d2242460f6a035971 (patch) | |
tree | 3d7e054e2195610f497a5475927771b4a36ad49b /security | |
parent | eb4715cfbed0e0315a24afe38e380540bed903a6 (diff) | |
download | freebsd-ports-gnome-8e8c3f4ec0fc4715afe0458d2242460f6a035971.tar.gz freebsd-ports-gnome-8e8c3f4ec0fc4715afe0458d2242460f6a035971.tar.zst freebsd-ports-gnome-8e8c3f4ec0fc4715afe0458d2242460f6a035971.zip |
- Mark ONLY_FOR_ARCHS: uses x86 assembly
- Optionize EXAMPLES
Diffstat (limited to 'security')
-rw-r--r-- | security/rainbowcrack/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/security/rainbowcrack/Makefile b/security/rainbowcrack/Makefile index 3de108aab9e3..3f5f742e505e 100644 --- a/security/rainbowcrack/Makefile +++ b/security/rainbowcrack/Makefile @@ -9,13 +9,12 @@ MASTER_SITES= http://www.semprixd.com/shares/ports/ MAINTAINER= ports@FreeBSD.org COMMENT= Hash cracker that precomputes plaintext - ciphertext pairs in advance -USES= dos2unix +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= uses x86 assembly -.include <bsd.port.pre.mk> +USES= dos2unix -.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" -BROKEN= does not compile on ia64, powerpc, or sparc64 -.endif +OPTIONS_DEFINE= EXAMPLES post-patch: @${REINPLACE_CMD} \ @@ -30,4 +29,4 @@ do-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/charset.txt ${STAGEDIR}${EXAMPLESDIR} -.include <bsd.port.post.mk> +.include <bsd.port.mk> |