Bug 189623 - www/uzbl [patch][maintainer] add staging
Summary: www/uzbl [patch][maintainer] add staging
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-10 20:10 UTC by Klaus Aehlig
Modified: 2014-05-11 00:10 UTC (History)
0 users

See Also:


Attachments
uzbl.diff (2.33 KB, patch)
2014-05-10 20:10 UTC, Klaus Aehlig
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Klaus Aehlig 2014-05-10 20:10:00 UTC
	Add staging support

Fix: Apply the following patch
Comment 1 dfilter service freebsd_committer freebsd_triage 2014-05-11 00:05:28 UTC
Author: rakuco
Date: Sat May 10 23:05:24 2014
New Revision: 353627
URL: http://svnweb.freebsd.org/changeset/ports/353627
QAT: https://qat.redports.org/buildarchive/r353627/

Log:
  Support staging.
  
  PR:		ports/189623
  Submitted by:	Klaus Aehlig <aehlig@linta.de> (maintainer)

Modified:
  head/www/uzbl/Makefile

Modified: head/www/uzbl/Makefile
==============================================================================
--- head/www/uzbl/Makefile	Sat May 10 23:00:24 2014	(r353626)
+++ head/www/uzbl/Makefile	Sat May 10 23:05:24 2014	(r353627)
@@ -29,7 +29,6 @@ WRKSRC=		${WRKDIR}/Dieterbe-uzbl-${GITVE
 
 OPTIONS_DEFINE=	DOCS
 
-NO_STAGE=	yes
 .include <bsd.port.options.mk>
 
 .if ${PORT_OPTIONS:MDOCS}
@@ -59,34 +58,34 @@ post-build:
 	@${FIND} ${WRKSRC} \( -name "*.orig" -or -name "*.bak" \) -exec ${RM} -f {} \;
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/uzbl-core ${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/uzbl-core ${STAGEDIR}${PREFIX}/bin
 .for f in uzbl-event-manager uzbl-browser uzbl-tabbed
-	${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${PREFIX}/bin
+	${INSTALL_SCRIPT} ${WRKSRC}/bin/${f} ${STAGEDIR}${PREFIX}/bin
 .endfor
 .if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	${INSTALL_DATA} ${WRKSRC}/src/config.h ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${INSTALL_DATA} ${WRKSRC}/src/config.h ${STAGEDIR}${DOCSDIR}
 .for f in COMMUNITY CONTRIBUTING FAQ INSTALL TODO config-syntax \
 		multiple-instances-management performance url-editing
-	${INSTALL_DATA} ${WRKSRC}/docs/${f} ${DOCSDIR}/${f}
+	${INSTALL_DATA} ${WRKSRC}/docs/${f} ${STAGEDIR}${DOCSDIR}/${f}
 .endfor
 .for f in AUTHORS README
-	${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/${f}
+	${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}/${f}
 .endfor
-	(cd ${WRKSRC}/extras && ${COPYTREE_SHARE} vim ${DOCSDIR})
+	(cd ${WRKSRC}/extras && ${COPYTREE_SHARE} vim ${STAGEDIR}${DOCSDIR})
 .endif
 .if !defined(NOPORTDATA)
-	${MKDIR} ${DATADIR}/examples/data/dforms ${DATADIR}/examples/config
+	${MKDIR} ${STAGEDIR}${DATADIR}/examples/data/dforms ${STAGEDIR}${DATADIR}/examples/config
 .for f in data/bookmarks \
 	data/dforms/bbs.archlinux.org \
 	config/style.css data/uzbl.png
-		${INSTALL_DATA} ${WRKSRC}/examples/${f} ${DATADIR}/examples/${f}
+		${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${DATADIR}/examples/${f}
 .endfor
-	${INSTALL_DATA} ${WRKSRC}/examples/config/config ${DATADIR}/examples/config/config
+	${INSTALL_DATA} ${WRKSRC}/examples/config/config ${STAGEDIR}${DATADIR}/examples/config/config
 	(cd ${WRKSRC}/examples/data && \
-		${COPYTREE_BIN} plugins ${DATADIR}/examples/data/)
+		${COPYTREE_BIN} plugins ${STAGEDIR}${DATADIR}/examples/data/)
 	(cd ${WRKSRC}/examples/data && \
-		${COPYTREE_BIN} scripts ${DATADIR}/examples/data/)
+		${COPYTREE_BIN} scripts ${STAGEDIR}${DATADIR}/examples/data/)
 .endif
 
 .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 Raphael Kubo da Costa freebsd_committer freebsd_triage 2014-05-11 00:05:35 UTC
State Changed
From-To: open->closed

Committed. Thanks!