50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# Created by: Lutz Boehne <lboehne@damogran.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= udis86
|
|
PORTVERSION= 1.7.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:L}/${PORTNAME:L}/${PORTVERSION:R}
|
|
|
|
MAINTAINER= bf@FreeBSD.org
|
|
COMMENT= Minimalistic x86 and x86-64 disassembler library
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_GMAKE= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --without-sphinx-build
|
|
|
|
INFO= udis86
|
|
PORTDOCS= x86
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${REINPLACE_CMD} -e '\|docdir =|s|/docs/|/doc/|' \
|
|
${WRKSRC}/docs/manual/Makefile.in \
|
|
${WRKSRC}/docs/x86/Makefile.in
|
|
.else
|
|
@${REINPLACE_CMD} -e '/SUBDIRS \=/s/ docs//' ${WRKSRC}/Makefile.in
|
|
.endif
|
|
|
|
.if defined(MAINTAINER_MODE) || defined(PACKAGE_BUILDING)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/bin/yasm:${PORTSDIR}/devel/yasm
|
|
CONFIGURE_ENV+= PYTHON="${PYTHON_CMD}" YASM="${LOCALBASE}/bin/yasm"
|
|
USE_PYTHON_BUILD= yes
|
|
|
|
check regression-test test: build
|
|
@cd ${WRKSRC} ; ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} check
|
|
|
|
.else
|
|
CONFIGURE_ARGS+= --without-yasm
|
|
CONFIGURE_ENV+= PYTHON="${FALSE}"
|
|
.endif
|
|
|
|
post-install:
|
|
@${INSTALL_DATA} ${WRKSRC}/docs/manual/udis86.info ${PREFIX}/${INFO_PATH}/
|
|
|
|
.include <bsd.port.mk>
|