Bug 190384 - Patch to fix my lang/pbasic/Makefile to obviate NO_STAGE
Summary: Patch to fix my lang/pbasic/Makefile to obviate NO_STAGE
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: freebsd-ports-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-05-29 21:20 UTC by jhs
Modified: 2014-05-30 23:10 UTC (History)
0 users

See Also:


Attachments
file.diff (1007 bytes, patch)
2014-05-29 21:20 UTC, jhs
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description jhs 2014-05-29 21:20:00 UTC
	Patch appended ref.
Subject: FreeBSD ports that you maintain require staging updates
From: portmgr-feedback@FreeBSD.org
Date: Thu, 29 May 2014 13:39:08 -0500 (CDT) (20:39 CEST)
To: jhs@berklix.com
Comment 1 dfilter service freebsd_committer freebsd_triage 2014-05-30 23:09:00 UTC
Author: tdb
Date: Fri May 30 22:08:55 2014
New Revision: 355920
URL: http://svnweb.freebsd.org/changeset/ports/355920
QAT: https://qat.redports.org/buildarchive/r355920/

Log:
  Stage support.
  
  PR:		ports/190384
  Submitted by:	Julian H. Stacey <jhs@berklix.com> (maintainer)

Modified:
  head/lang/pbasic/Makefile

Modified: head/lang/pbasic/Makefile
==============================================================================
--- head/lang/pbasic/Makefile	Fri May 30 21:55:22 2014	(r355919)
+++ head/lang/pbasic/Makefile	Fri May 30 22:08:55 2014	(r355920)
@@ -15,8 +15,7 @@ COMMENT=	Phil Cockroft's Basic Interpret
 
 ALL_TARGET=	freebsd
 MAKEFILE=	makefile
-MAN1=		pbasic.1
-PLIST_FILES=	bin/pbasic
+PLIST_FILES=	bin/pbasic man/man1/pbasic.1.gz
 
 post-patch:	.SILENT
 	${REINPLACE_CMD} -e '/^CC/s/=/?=/' \
@@ -24,13 +23,12 @@ post-patch:	.SILENT
 		${WRKSRC}/freebsd/makefile
 	${ECHO_CMD} '.PHONY: $$(SYSTEMS)' >>${WRKSRC}/makefile
 
-NO_STAGE=	yes
 do-configure:
 	-cd ${WRKSRC} ; ${RM} -rf termio m68000 msdos vax pyramid ns32000 \
 			pdp11 cursor/cursor.dos cursor/cursor.ukc
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/basic ${PREFIX}/bin/pbasic
-	${INSTALL_MAN} ${WRKSRC}/docs/basic.1 ${PREFIX}/man/man1/pbasic.1
+	${INSTALL_PROGRAM} ${WRKSRC}/basic ${STAGEDIR}${PREFIX}/bin/pbasic
+	${INSTALL_MAN} ${WRKSRC}/docs/basic.1 ${STAGEDIR}${PREFIX}/man/man1/pbasic.1
 
 .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 2 Tim Bishop freebsd_committer freebsd_triage 2014-05-30 23:09:16 UTC
State Changed
From-To: open->closed

Committed, with minor changes. Thanks!