diff --git a/ports-mgmt/pkgs_which/Makefile b/ports-mgmt/pkgs_which/Makefile index e9f3971cf66a..41df103ceddc 100644 --- a/ports-mgmt/pkgs_which/Makefile +++ b/ports-mgmt/pkgs_which/Makefile @@ -1,34 +1,33 @@ # Created by: Matthias Andree # $FreeBSD$ PORTNAME= pkgs_which PORTVERSION= 0.3.0 CATEGORIES= ports-mgmt perl5 MASTER_SITES= # none DISTFILES= # none MAINTAINER= mandree@FreeBSD.org COMMENT= Quickly find out which ports contributed to a file tree LICENSE= GPLv3 USES= perl5 NO_BUILD= yes PLIST_FILES= bin/${PORTNAME} -NO_STAGE= yes .include .if ${PORT_OPTIONS:MDOCS} -MAN1= ${PORTNAME}.1 +PLIST_FILES+= man/man1/${PORTNAME}.1.gz .endif do-install: - ${MKDIR} ${PREFIX}/bin - ${INSTALL_SCRIPT} ${FILESDIR}/${PORTNAME} ${PREFIX}/bin + ${MKDIR} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_SCRIPT} ${FILESDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${PREFIX}/man/man1 - ${LOCALBASE}/bin/pod2man ${FILESDIR}/${PORTNAME} >${PREFIX}/man/man1/${MAN1} + ${MKDIR} ${STAGEDIR}${PREFIX}/man/man1 + ${LOCALBASE}/bin/pod2man ${FILESDIR}/${PORTNAME} >${STAGEDIR}${PREFIX}/man/man1/${PORTNAME}.1 .endif .include