Bug 183953

Summary: Support staging in sysutils/finfo
Product: Ports & Packages Reporter: Kimmo Paasiala <kpaasial>
Component: Individual Port(s)Assignee: Michael Landin <mich>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description Kimmo Paasiala 2013-11-14 11:20:00 UTC
Sysutils/finfo does not yet support staging.

Fix: Apply the attached patch to the port Makefile

Patch attached with submission follows:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2013-11-14 11:20:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->mich

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2013-12-23 16:24:23 UTC
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"
Comment 3 Michael Landin freebsd_committer freebsd_triage 2013-12-23 16:24:58 UTC
State Changed
From-To: open->closed

Committed, thanks!