mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
fa3a17c064
minor COMMENT typos and surrounding whitespace fixes. A few Makefiles where not included as they contain Latin-1 characters that break the Phabricator workflow. Categories P-S. CR: D422 Approved by: portmgr (bapt)
26 lines
633 B
Makefile
26 lines
633 B
Makefile
# Created by: Tim Daneliuk <tren@tundraware.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tren
|
|
PORTVERSION= 1.242
|
|
CATEGORIES= sysutils python
|
|
MASTER_SITES= http://www.tundraware.com/Software/tren/
|
|
|
|
MAINTAINER= tren@tundraware.com
|
|
COMMENT= Powerful File And Directory Batch Renaming Tool
|
|
|
|
USE_PYTHON= yes
|
|
PLIST_FILES= bin/tren.py man/man1/tren.1.gz
|
|
PORTDOCS= WHATSNEW.txt tren-license.txt tren.html tren.pdf tren.ps tren.rst
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}/
|
|
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|