4e1b79a0a6
With hat: portmgr Sponsored by: Absolight
32 lines
919 B
Makefile
32 lines
919 B
Makefile
# Created by: mwm@mired.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= bicyclerepair
|
|
PORTVERSION= 0.9
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= SF
|
|
PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX}
|
|
|
|
MAINTAINER= mwm@mired.org
|
|
COMMENT= Python refactoring tool
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.if defined(EMACS_PORT_NAME)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/pymacs-services:devel/pymacs
|
|
.endif
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ide-integration/bike.vim ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.emacs ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.idle ${STAGEDIR}${DOCSDIR}
|
|
@${ECHO} "================================================================"
|
|
@${ECHO} "* See" ${DOCSDIR} "for instructions on configuring IDLE"
|
|
@${ECHO} "* and vim to use Bicycle Repair Man."
|
|
@${ECHO} "================================================================"
|
|
|
|
.include <bsd.port.mk>
|