mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
6bac73dde5
PR: 203335 Submitted by: myself Approved by: Hung-Yi Chen (maintainer timeout > 1 month)
31 lines
632 B
Makefile
31 lines
632 B
Makefile
# Created by: Dryice Liu<dryice@dryice.name>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= Babel
|
|
PORTVERSION= 2.1.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Collection of tools for internationalizing Python applications
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytz>0:${PORTSDIR}/devel/py-pytz
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
PORTDOCS= docs/*
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docfile in ${PORTDOCS}
|
|
${CP} -r ${WRKSRC}/${docfile} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|