mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
a60adf4b69
- Drop easy_install - Fix pkg-plist - Pet portlint PR: ports/188805 Submitted by: Bartek Rutkowski <ports@robakdesign.com> Approved by: portmgr@ (blanket)
28 lines
515 B
Makefile
28 lines
515 B
Makefile
# Created by: Dryice Liu <dryice@liu.com.cn>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyblosxom
|
|
DISTVERSION= 1.5.3
|
|
CATEGORIES= www python
|
|
MASTER_SITES= http://pyblosxom.github.io/download/
|
|
|
|
MAINTAINER= jun-g@daemonfreaks.com
|
|
COMMENT= Lightweight weblog system
|
|
|
|
LICENSE= MIT
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \. ${STAGEDIR}${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|