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