mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
37 lines
898 B
Makefile
37 lines
898 B
Makefile
# Created by: Hung-Yi Chen <gaod@hychen.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= watchlist
|
|
PORTVERSION= 1.0.${SVN_REV}
|
|
PORTREVISION= 2
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= http://distfiles.cse.tw/ \
|
|
http://trac-hacks.org/changeset/${SVN_REV}/watchlistplugin?old_path=/&format=zip&filename=/
|
|
PKGNAMEPREFIX= trac-
|
|
DISTNAME= ${PORTNAME}plugin-r${SVN_REV}
|
|
|
|
MAINTAINER= gaod@hychen.org
|
|
COMMENT= Watchlist feature for wikis and tickets of Trac
|
|
|
|
LICENSE= BSD
|
|
|
|
SVN_REV= 11526
|
|
|
|
RUN_DEPENDS+= tracd:${PORTSDIR}/www/trac
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}plugin/0.12
|
|
USE_ZIP= yes
|
|
USE_PYTHON= -2.7
|
|
USE_PYDISTUTILS= easy_install
|
|
|
|
FETCH_BEFORE_ARGS= -o ${DISTFILES}
|
|
PYDISTUTILS_PKGNAME= TracWatchlistPlugin
|
|
PYDISTUTILS_PKGVERSION= ${PORTVERSION:C/.${SVN_REV}//g}
|
|
|
|
NO_STAGE= yes
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} ${CHMOD} 644
|
|
@${FIND} ${WRKSRC} -type d | ${XARGS} ${CHMOD} 755
|
|
|
|
.include <bsd.port.mk>
|