a4c8cf7547
- Update my mail to FreeBSD
32 lines
652 B
Makefile
32 lines
652 B
Makefile
# New ports collection makefile for: py-babel
|
|
# Date created: 7 July 2007
|
|
# Whom: Dryice Liu <dryice@dryice.name>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Babel
|
|
PORTVERSION= 0.9.5
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://ftp.edgewall.com/pub/babel/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wen@FreeBSD.org
|
|
COMMENT= A collection of tools for internationalizing Python applications
|
|
|
|
USE_PYTHON= 2.4+
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= doc/*
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for docfile in ${PORTDOCS}
|
|
${CP} -r ${WRKSRC}/${docfile} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|