diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-02-15 09:58:01 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2013-02-15 09:58:01 +0000 |
commit | b1f31853449e0b163b1f8b06525527b254f023d6 (patch) | |
tree | 322cfb89b095c1ead5136595130347b97ebb6c62 /editors/heme/Makefile | |
parent | b8200f5123f0e1573301817aa65fa13569aacf1e (diff) | |
download | freebsd-ports-b1f31853449e0b163b1f8b06525527b254f023d6.zip |
- Trim the Makefile header per new project standards
- Switch from NOPORTDOCS to PORT_OPTIONS:MDOCS check
- Use shorter URL in WWW: line of port description
Diffstat (limited to 'editors/heme/Makefile')
-rw-r--r-- | editors/heme/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/heme/Makefile b/editors/heme/Makefile index 2788007f1364..e236973b71cf 100644 --- a/editors/heme/Makefile +++ b/editors/heme/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: heme -# Date created: 29 May 2012 -# Whom: Alexey Dokuchaev <danfe@FreeBSD.org> -# +# Created by: Alexey Dokuchaev <danfe@FreeBSD.org> # $FreeBSD$ -# PORTNAME= heme PORTVERSION= 0.4.2 @@ -22,8 +18,12 @@ PLIST_FILES= bin/${PORTNAME} MAN1= ${PORTNAME}.1 PORTDOCS= README +OPTIONS_DEFINE= DOCS + +.include <bsd.port.options.mk> + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif |