mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
eda0ab97e8
way to disassemble Intel x86 raw opcode bytes (machine code). It can parse and print out opcodes in AT&T and Intel syntax. WWW: http://www.nologin.net/main.pl?action=codeView&codeId=49& PR: ports/95048 Submitted by: Antoine Brodin <antoine.brodin@laposte.net>
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
# New ports collection makefile for: libdasm
|
|
# Date created: 28 March 2006
|
|
# Whom: Antoine Brodin <antoine.brodin@laposte.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libdasm
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.klake.org/~jt/misc/
|
|
|
|
MAINTAINER= antoine.brodin@laposte.net
|
|
COMMENT= A simple x86 disassembly library
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if !defined(WITHOUT_EXAMPLES)
|
|
PLIST_SUB+= EXAMPLES=""
|
|
.else
|
|
PLIST_SUB+= EXAMPLES="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64" || ${ARCH} == "ia64"
|
|
CFLAGS+= -fPIC -DPIC
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -E 's,^(CC|CFLAGS|PREFIX).*=,\1 ?=,; \
|
|
s,libdasm.so.1.0,libdasm.so.1,g; \
|
|
s,cp ,${INSTALL_DATA} ,g' \
|
|
${WRKSRC}/Makefile \
|
|
${WRKSRC}/examples/Makefile
|
|
|
|
post-install:
|
|
.if !defined(WITHOUT_EXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/README.txt ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/das.c ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/simple.c ${EXAMPLESDIR}
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/HISTORY.txt ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|