mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
50f8eaece1
- USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat)
34 lines
913 B
Makefile
34 lines
913 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= A python refactoring tool
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
NO_STAGE= yes
|
|
|
|
.if defined(EMACS_PORT_NAME)
|
|
RUN_DEPENDS+= ${LOCALBASE}/bin/pymacs-services:${PORTSDIR}/devel/pymacs
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/ide-integration/bike.vim ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.emacs ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.idle ${DOCSDIR}
|
|
@${ECHO} "================================================================"
|
|
@${ECHO} "* See" ${DOCSDIR} "for instructions on configuring IDLE"
|
|
@${ECHO} "* and vim to use Bicycle Repair Man."
|
|
@${ECHO} "================================================================"
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|