2007-01-18 10:10:56 +00:00
|
|
|
# New ports collection makefile for: libdisasm
|
|
|
|
# Date created: 18 January 2006
|
|
|
|
# Whom: Lutz Boehne <lboehne@damogran.de>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= libdisasm
|
2008-05-21 17:08:49 +00:00
|
|
|
PORTVERSION= 0.23
|
2007-01-18 10:10:56 +00:00
|
|
|
CATEGORIES= devel
|
2009-08-22 00:18:43 +00:00
|
|
|
MASTER_SITES= SF/bastard/${PORTNAME}/${PORTVERSION}
|
2007-01-18 10:10:56 +00:00
|
|
|
|
2010-07-08 12:51:37 +00:00
|
|
|
MAINTAINER= bf@FreeBSD.org
|
2008-05-21 17:08:49 +00:00
|
|
|
COMMENT= The Bastard Disassembly Environment x86 disassembler library and CLI
|
2007-01-18 10:10:56 +00:00
|
|
|
|
2008-05-21 17:08:49 +00:00
|
|
|
GNU_CONFIGURE= yes
|
2007-01-18 10:10:56 +00:00
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_LDCONFIG= yes
|
2008-12-16 16:07:02 +00:00
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
2007-01-18 10:10:56 +00:00
|
|
|
|
2008-05-21 17:08:49 +00:00
|
|
|
.ifndef(NOPORTDOCS)
|
|
|
|
PORTDOCS= libdisasm.txt
|
2007-01-18 10:10:56 +00:00
|
|
|
.endif
|
|
|
|
|
2008-05-21 17:08:49 +00:00
|
|
|
MAN1= x86dis.1
|
2007-01-18 10:10:56 +00:00
|
|
|
MAN3= x86_disasm.3 x86_format_insn.3 x86_init.3
|
|
|
|
MAN7= libdisasm.7
|
|
|
|
|
2008-05-21 17:08:49 +00:00
|
|
|
post-install:
|
|
|
|
.ifndef(NOPORTDOCS)
|
2007-01-18 10:36:21 +00:00
|
|
|
${MKDIR} ${DOCSDIR}
|
2008-05-21 17:08:49 +00:00
|
|
|
.for i in ${PORTDOCS}
|
2007-01-18 10:10:56 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
|
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2007-10-04 00:41:11 +00:00
|
|
|
.include <bsd.port.mk>
|