fc373ceed2
Reviewed by: miwi (mentor) Differential Revision: https://reviews.freebsd.org/D10755
33 lines
699 B
Makefile
33 lines
699 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= vote
|
|
PORTVERSION= 0.1.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= LOCAL/brooks
|
|
PKGNAMEPREFIX= trac-
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= Plugin for voting on Trac resources
|
|
|
|
RUN_DEPENDS= tracd:www/trac
|
|
|
|
USES= python:2
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
# Maintainter targets below this point
|
|
|
|
# Retrieve the latest version from SVN and package in a tarball.
|
|
.if defined(BOOTSTRAP)
|
|
FETCH_DEPENDS+= svn:devel/subversion
|
|
do-fetch:
|
|
${MKDIR} ${WRKDIR}
|
|
cd ${WRKDIR} && \
|
|
svn export http://trac-hacks.org/svn/voteplugin/0.11/ \
|
|
${DISTNAME}
|
|
cd ${WRKDIR} && tar cvf ${DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|