mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
509e03bb70
- Don't install manpage when NO_INSTALL_MANPAGES is defined - Remove MD5 checksum from distinfo - Take maintainership PR: ports/153624 Submitted by: nivit
31 lines
638 B
Makefile
31 lines
638 B
Makefile
# New ports collection makefile for: py-nose
|
|
# Date created: 14 December 2006
|
|
# Whom: Dryice Liu <dryice@dryice.name>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= nose
|
|
PORTVERSION= 1.0.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://somethingaboutorange.com/mrl/projects/nose/ \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= A discovery-based unittest extension
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
PLIST_SUB+= PYTHON_VER=${PYTHON_VER}
|
|
|
|
.if !defined(NO_INSTALL_MANPAGES)
|
|
MAN1= nosetests.1
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/nosetests.1 ${MANPREFIX}/man/man1
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|