mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
f7455240e3
PR: 225752 Submitted by: Yasuhiro KIMURA
32 lines
659 B
Makefile
32 lines
659 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= fullblog
|
|
PORTVERSION= 0.1.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= www devel python
|
|
MASTER_SITES= LOCAL/brooks
|
|
PKGNAMEPREFIX= trac-
|
|
DISTNAME= ${PORTNAME}plugin-${PORTVERSION}
|
|
DIST_SUBDIR= trac
|
|
|
|
MAINTAINER= joneum@FreeBSD.org
|
|
COMMENT= Plugin that provides a project Blog
|
|
|
|
RUN_DEPENDS= htmldoc:textproc/htmldoc \
|
|
tracd:www/trac
|
|
|
|
USES= python:2.7
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
.if defined(BOOTSTRAP)
|
|
do-fetch:
|
|
${MKDIR} ${WRKDIR}
|
|
svn export http://trac-hacks.org/svn/fullblogplugin/0.11/ ${WRKSRC}
|
|
${MKDIR} ${_DISTDIR}
|
|
cd ${WRKDIR} && \
|
|
${TAR} cfvz ${_DISTDIR}/${DISTNAME}.tar.gz ${DISTNAME}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|