d43f306ff4
library out there. WWW: http://dkbza.org/pydasm.html PR: ports/95049 Submitted by: Antoine Brodin <antoine.brodin@laposte.net>
38 lines
825 B
Makefile
38 lines
825 B
Makefile
# New ports collection makefile for: pydasm
|
|
# Date created: 23 March 2006
|
|
# Whom: antoine.brodin@laposte.net
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pydasm
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://www.klake.org/~jt/misc/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= libdasm-${PORTVERSION}
|
|
|
|
MAINTAINER= antoine.brodin@laposte.net
|
|
COMMENT= A python interface to libdasm
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/${PORTNAME}
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
.if !defined(WITHOUT_EXAMPLES)
|
|
PLIST_SUB+= EXAMPLES=""
|
|
.else
|
|
PLIST_SUB+= EXAMPLES="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(WITHOUT_EXAMPLES)
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/das.py ${EXAMPLESDIR}
|
|
.endif
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|