Sysutils/finfo does not yet support staging. Fix: Apply the attached patch to the port Makefile Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->mich Over to maintainer (via the GNATS Auto Assign Tool)
Author: mich Date: Mon Dec 23 16:24:11 2013 New Revision: 337258 URL: http://svnweb.freebsd.org/changeset/ports/337258 Log: - Support for staging PR: ports/183953 Submitted by: Kimmo Paasiala <kpaasial@gmail.com> Modified: head/sysutils/finfo/Makefile Modified: head/sysutils/finfo/Makefile ============================================================================== --- head/sysutils/finfo/Makefile Mon Dec 23 15:09:56 2013 (r337257) +++ head/sysutils/finfo/Makefile Mon Dec 23 16:24:11 2013 (r337258) @@ -9,15 +9,14 @@ MASTER_SITES= http://freebsdcluster.org/ MAINTAINER= mich@FreeBSD.org COMMENT= Finfo displays potentially useful information about a file -PLIST_FILES= bin/finfo -MAN1= finfo.1 +PLIST_FILES= bin/finfo man/man1/finfo.1.gz + -NO_STAGE= yes do-build: (cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c) do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/${PORTNAME} - ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.gz ${PREFIX}/man/man1/ + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1.gz ${STAGEDIR}${PREFIX}/man/man1/ .include <bsd.port.mk> _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thanks!