Bug 183953 - Support staging in sysutils/finfo
Summary: Support staging in sysutils/finfo
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Michael Landin
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-11-14 11:20 UTC by Kimmo Paasiala
Modified: 2013-12-23 16:30 UTC (History)
0 users

See Also:


Attachments
file.diff (728 bytes, patch)
2013-11-14 11:20 UTC, Kimmo Paasiala
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
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!