mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
7e26e1e84f
Requested by: Josh Paetzel <josh@tcbug.org>
33 lines
783 B
Makefile
33 lines
783 B
Makefile
# Ports collection makefile for: py-elementtree
|
|
# Date created: Feb 28, 2005
|
|
# Whom: barner
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= elementtree
|
|
PORTVERSION= 1.2.6
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://effbot.org/downloads/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-20050316
|
|
|
|
MAINTAINER= barner@FreeBSD.org
|
|
COMMENT= Container for hierarchical data structures written in Python
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
|
|
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
${CP} -R ${WRKSRC}/docs/ ${DOCSDIR}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${CP} -R ${WRKSRC}/samples/ ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|