mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-04 11:23:46 +00:00
a3a0606c6a
- bump PORTREVISION because of dependency change - remove indefinite article in COMMENT - convert to optionsng - trim Makefile header - limit python version to 2.x only - move pkg-plist contents into Makefile:PLIST_FILES - tab -> space change in pkg-descr:WWW PR: 173169 Submitted by: rm (myself) Approved by: maintainer timeout (2 weeks) Feature safe: yes
36 lines
799 B
Makefile
36 lines
799 B
Makefile
# Created by: Dryice Liu <dryice@dryice.name>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= TracGantt
|
|
PORTVERSION= 0.3.2a
|
|
PORTREVISION= 6
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= http://willbarton.com/files/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
PKGNAMEPREFIX= trac-
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= Plugin to creates Gantt charts for trac
|
|
|
|
RUN_DEPENDS+= trac>=0.11:${PORTSDIR}/www/trac
|
|
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS= easy_install
|
|
PYDISTUTILS_PKGNAME= TracGantt
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
PORTDOCS= PKG-INFO README
|
|
.endif
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${INSTALL} -d ${DOCSDIR}
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${DOCSDIR}
|
|
.endif
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|