1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/devel/distorm/Makefile
John Marino 0cb8a7439c devel/distorm: fix concurrent building
For a reason I can't figure out, the "clean" target was being called
simultaneously with the build target resulting in a possibility of
deleting object files after they are built but before they are linked
to make a library.

The solution is to remove the "clean" target since it really serves no
purpose in the ports framework (the work area starts clean).

While here, join compound commands with "&&" rather than ";"
2016-08-27 06:10:10 +00:00

96 lines
2.5 KiB
Makefile

# Created by: bf <bf2006a@yahoo.com>
# $FreeBSD$
PORTNAME?= distorm
DISTVERSION= 20121220-r230
PORTREVISION?= 2
CATEGORIES= devel
.if defined(PYTHON_SLAVEPORT)
CATEGORIES+= python
.endif
MASTER_SITES= LOCAL/bf
.if defined(PYTHON_SLAVEPORT)
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
.endif
.if defined(PYTHON_SLAVEPORT) || make(makesum)
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} dislib.py
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
.endif
MAINTAINER= ports@FreeBSD.org
COMMENT?= Fast x86 and x86-64 disassembler library
LICENSE= GPLv3
USES= dos2unix tar:xz
.if defined(PYTHON_SLAVEPORT)
USES+= python:2
USE_PYTHON= distutils
PYDISTUTILS_PKGNAME= distorm3
PYDISTUTILS_PKGVERSION= 3
PLIST_FILES= bin/dislib.py \
%%PYTHON_SITELIBDIR%%/distorm3/sample.py \
%%PYTHON_SITELIBDIR%%/distorm3/__init__.py \
%%PYTHON_SITELIBDIR%%/distorm3/libdistorm3.so \
%%PYTHON_SITELIBDIR%%/distorm3/sample.pyc \
%%PYTHON_SITELIBDIR%%/distorm3/__init__.pyc \
%%PYTHON_SITELIBDIR%%/distorm3/sample.pyo \
%%PYTHON_SITELIBDIR%%/distorm3/__init__.pyo
.else
USE_LDCONFIG= yes
BUILD_WRKSRC= ${WRKSRC}/make/linux
PLIST_FILES= bin/disasm \
include/distorm.h \
include/mnemonics.h \
lib/libdistorm3.a \
lib/libdistorm3.so \
lib/libdistorm3.so.1
.endif
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
PICFLAG?= -fPIC
.else
PICFLAG?= -fpic
.endif
.if defined(PYTHON_SLAVEPORT)
post-extract:
@${CP} ${_DISTDIR}/dislib.py ${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e "1{x;s|^|#!${PYTHON_CMD}|;G;}" ${WRKSRC}/dislib.py
@${REINPLACE_CMD} -e "\|extra_compile_args=|s| '-O2',||" ${WRKSRC}/setup.py
post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/dislib.py ${STAGEDIR}${PREFIX}/bin
.else
do-build:
@(cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} \
EXTRAFLAGS="${PICFLAG} -DDISTORM_DYNAMIC" ${MAKE} ${_MAKE_JOBS} \
${MAKE_ARGS} clib)
@(cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} \
EXTRAFLAGS="-DDISTORM_STATIC" ${MAKE} ${_MAKE_JOBS} ${MAKE_ARGS} staticlib)
${CC} ${CFLAGS} ${LDFLAGS} -o ${BUILD_WRKSRC}/disasm \
${WRKSRC}/examples/linux/main.c ${BUILD_WRKSRC}/libdistorm3.a
check regression-test test: build
@cd ${BUILD_WRKSRC}; ./disasm disasm
do-install:
@(cd ${BUILD_WRKSRC}; ${INSTALL_DATA} libdistorm3.a ${STAGEDIR}${PREFIX}/lib; \
${INSTALL_LIB} libdistorm3.so ${STAGEDIR}${PREFIX}/lib/libdistorm3.so.1; \
${LN} -sf libdistorm3.so.1 ${STAGEDIR}${PREFIX}/lib/libdistorm3.so; \
${INSTALL_PROGRAM} disasm ${STAGEDIR}${PREFIX}/bin)
@${INSTALL_DATA} ${WRKSRC}/include/*.h ${STAGEDIR}${PREFIX}/include
.endif
.include <bsd.port.post.mk>