mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
43 lines
1 KiB
Makefile
43 lines
1 KiB
Makefile
# Created by: Karsten Pedersen <kpedersen@opencde.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= radare2
|
|
DISTVERSION= 3.7.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= mizhka@gmail.com
|
|
COMMENT= Tools to disasm, debug, analyze, and manipulate binary files
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
NOT_FOR_ARCHS= armv6 armv7 mips mips64 powerpc powerpc64 sparc64
|
|
NOT_FOR_ARCHS_REASON= does not build: Unsupported BSD architecture
|
|
|
|
LIB_DEPENDS= libcapstone.so:devel/capstone4
|
|
|
|
USES= gmake localbase pathfix pkgconfig
|
|
USE_GITHUB= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
CONFIGURE_ARGS= --with-syscapstone
|
|
GH_ACCOUNT= radare
|
|
PATHFIX_MAKEFILEIN= Makefile
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAKE_ENV+= HOST_CC=${CC}
|
|
PLIST_SUB+= PORTVERSION="${PORTVERSION}"
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch-DOCS-off:
|
|
@${REINPLACE_CMD} -e 's| install-doc ||g' \
|
|
${WRKSRC}/Makefile
|
|
|
|
# libr/flag/d/Makefile generates an r2 script from all files in
|
|
# current directory, including .bak file left by ${REINPLACE_CMD}
|
|
# called by pathfix.
|
|
post-patch:
|
|
${RM} ${WRKSRC}/libr/flag/d/Makefile.bak
|
|
|
|
.include <bsd.port.mk>
|