ports/183433: Staging error occurs on Port www/indexme

Kenji Rikitake kenji at k2r.org
Tue Oct 29 07:00:00 UTC 2013


>Number:         183433
>Category:       ports
>Synopsis:       Staging error occurs on Port www/indexme
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 29 07:00:00 UTC 2013
>Closed-Date:
>Last-Modified:
>Originator:     Kenji Rikitake
>Release:        10.0-BETA2
>Organization:
>Environment:
FreeBSD wellmax.priv.k2r.org 10.0-BETA2 FreeBSD 10.0-BETA2 #13 r257290: Tue Oct 29 12:31:14 JST 2013     root at wellmax.priv.k2r.org:/usr/obj/usr/src/sys/K2RKERNEL  amd64
>Description:
www/indexme stops installation while doing the package registration.
>How-To-Repeat:
cd /usr/ports/www/indexme
make clean && make && make install
>Fix:
Adding ${STAGEDIR} to ${PREFIX} in do-install script of the Makefile solves the problem. Patch attached.

Patch attached with submission follows:

--- Makefile.FCS	2008-06-28 16:34:16.000000000 +0900
+++ Makefile	2013-10-29 15:48:47.000000000 +0900
@@ -27,8 +27,8 @@
 PLIST_FILES=	bin/indexme
 
 do-install:
-		@ ${INSTALL_SCRIPT} ${WRKSRC}/indexme ${PREFIX}/bin
+		@ ${INSTALL_SCRIPT} ${WRKSRC}/indexme ${STAGEDIR}${PREFIX}/bin
 .if !defined(NO_INSTALL_MANPAGES)
-		@ ${INSTALL_MAN} ${WRKSRC}/indexme.1 ${PREFIX}/man/man1
+		@ ${INSTALL_MAN} ${WRKSRC}/indexme.1 ${STAGEDIR}${PREFIX}/man/man1
 .endif
 .include <bsd.port.mk>


>Release-Note:
>Audit-Trail:
>Unformatted:


More information about the freebsd-ports-bugs mailing list