freebsd-ports/misc/py-yolk/Makefile

48 lines
1.2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: yolk
# Date created: 2007-03-11
# Whom: Nicola Vitale <nivit@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= yolk
2008-10-11 13:34:25 +02:00
PORTVERSION= 0.4.1
PORTREVISION= 1
CATEGORIES= misc python
2007-04-28 10:35:42 +02:00
MASTER_SITES= ${MASTER_SITE_CHEESESHOP} \
http://nivi.interfree.it/distfiles/${PORTNAME}/
2007-04-28 10:35:42 +02:00
MASTER_SITE_SUBDIR= source/y/${PORTNAME}
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= nivit@FreeBSD.org
COMMENT= A Python tool for listing packages installed by setuptools
USE_PYTHON= 2.6+
USE_PYDISTUTILS= easy_install
.if !defined (NO_INSTALL_MANPAGES)
MAN1= ${PORTNAME}.1
.endif
.include <bsd.port.pre.mk>
.if ${PYTHON_REL} == 271 || ${PYTHON_REL} == 320
IGNORE= does not work with ${PYTHON_VERSION} (see http://goo.gl/SZpDN)
.endif
post-install:
.if !defined (NO_INSTALL_MANPAGES)
@${INSTALL_DATA} ${WRKSRC}/docs/${PORTNAME}.1 ${MANPREFIX}/man/man1/${PORTNAME}.1
.endif
2007-05-29 14:37:05 +02:00
.if !defined (NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
2007-04-28 10:35:42 +02:00
@cd ${WRKSRC}/examples && ${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} ";"
@cd ${WRKSRC}/examples && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} ";"
.endif
2007-05-29 14:37:05 +02:00
.if !defined (NOPORTEXAMPLES)
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
.endif
.include <bsd.port.post.mk>