diff options
author | az <az@FreeBSD.org> | 2013-10-15 17:00:49 +0800 |
---|---|---|
committer | az <az@FreeBSD.org> | 2013-10-15 17:00:49 +0800 |
commit | 41a6f0d8de0ab2152ff7059b00ac218a52387585 (patch) | |
tree | 6582d3c06f148588cb423e0e4e6abc2f7f1b2d8c /sysutils/nvramtool | |
parent | 3046701f420dd89ddf2940082bfcf32a91262b0a (diff) | |
download | freebsd-ports-gnome-41a6f0d8de0ab2152ff7059b00ac218a52387585.tar.gz freebsd-ports-gnome-41a6f0d8de0ab2152ff7059b00ac218a52387585.tar.zst freebsd-ports-gnome-41a6f0d8de0ab2152ff7059b00ac218a52387585.zip |
- Support STAGEDIR
- Switch to USES=gmake
- Remove leading indefinite article from COMMENT
Submitted by: zont@ (maintainer via email)
Diffstat (limited to 'sysutils/nvramtool')
-rw-r--r-- | sysutils/nvramtool/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/sysutils/nvramtool/Makefile b/sysutils/nvramtool/Makefile index eef7cdf1a13e..cf1807ed9cba 100644 --- a/sysutils/nvramtool/Makefile +++ b/sysutils/nvramtool/Makefile @@ -7,20 +7,18 @@ CATEGORIES= sysutils MASTER_SITES= http://www.zonov.org/${PORTNAME}/ MAINTAINER= zont@FreeBSD.org -COMMENT= A utility for reading, writing the contents of CMOS memory +COMMENT= Utility for reading, writing the contents of CMOS memory +USES= gmake USE_BZIP2= yes -USE_GMAKE= yes ONLY_FOR_ARCHS= amd64 i386 -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/${PORTNAME} \ + man/man8/${PORTNAME}.8.gz -MAN8= ${PORTNAME}.8 - -NO_STAGE= yes do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/cli/${MAN8} ${MANPREFIX}/man/man8 + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/cli/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 .include <bsd.port.mk> |