diff options
author | wen <wen@FreeBSD.org> | 2013-08-18 22:36:52 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2013-08-18 22:36:52 +0800 |
commit | 224cd7d459a9818b9d0ff1f2b18c0412bb4e3cf7 (patch) | |
tree | 0dd75fa3685790e23abf7058026b96e119acc15e /www/pyblosxom/Makefile | |
parent | d1ba17184cbf1990d10b312acd427dff1c5596df (diff) | |
download | freebsd-ports-gnome-224cd7d459a9818b9d0ff1f2b18c0412bb4e3cf7.tar.gz freebsd-ports-gnome-224cd7d459a9818b9d0ff1f2b18c0412bb4e3cf7.tar.zst freebsd-ports-gnome-224cd7d459a9818b9d0ff1f2b18c0412bb4e3cf7.zip |
- Update to 1.5.3
- Trim Makefile's header
- Change MASTER_SITES and WWW
- Convert to new options framework
PR: 181371
Submitted by: "Junji NAKANISHI" <jun-g@daemonfreaks.com> (maintainer)
Diffstat (limited to 'www/pyblosxom/Makefile')
-rw-r--r-- | www/pyblosxom/Makefile | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/www/pyblosxom/Makefile b/www/pyblosxom/Makefile index eac3be417292..bb51a808e839 100644 --- a/www/pyblosxom/Makefile +++ b/www/pyblosxom/Makefile @@ -1,14 +1,10 @@ -# New ports collection makefile for: pyblosxom -# Date created: 13 April 2005 -# Whom: Dryice Liu <dryice@liu.com.cn> -# +# Created by: Dryice Liu <dryice@liu.com.cn> # $FreeBSD$ -# PORTNAME= pyblosxom -DISTVERSION= 1.5.2 +DISTVERSION= 1.5.3 CATEGORIES= www python -MASTER_SITES= http://pyblosxom.bluesock.org/download/ +MASTER_SITES= http://pyblosxom.github.io/download/ MAINTAINER= jun-g@daemonfreaks.com COMMENT= A lightweight weblog system @@ -18,9 +14,11 @@ LICENSE= MIT USE_PYTHON= -2.7 USE_PYDISTUTILS= easy_install +.include <bsd.port.options.mk> + post-install: -.ifndef(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${DOCSDIR} cd ${WRKSRC}/docs && ${COPYTREE_SHARE} \. ${DOCSDIR} .endif |