svn commit: r354550 - head/databases/gqlplus

Vanilla I. Shu vanilla at FreeBSD.org
Mon May 19 16:01:01 UTC 2014


Author: vanilla
Date: Mon May 19 16:01:00 2014
New Revision: 354550
URL: http://svnweb.freebsd.org/changeset/ports/354550
QAT: https://qat.redports.org/buildarchive/r354550/

Log:
  Support staging.
  
  Approved by:	portmgr@

Modified:
  head/databases/gqlplus/Makefile

Modified: head/databases/gqlplus/Makefile
==============================================================================
--- head/databases/gqlplus/Makefile	Mon May 19 15:57:57 2014	(r354549)
+++ head/databases/gqlplus/Makefile	Mon May 19 16:01:00 2014	(r354550)
@@ -10,24 +10,22 @@ MAINTAINER=	leeym at FreeBSD.org
 COMMENT=	SQL*PLUS with commandline editing, history, and name completion
 
 GNU_CONFIGURE=	yes
-USE_GMAKE=	yes
+USES=		gmake
 
 PORTDOCS=	README ChangeLog
 PLIST_FILES=	bin/gqlplus
 USE_AUTOTOOLS=	autoconf automake aclocal
 AUTOMAKE_ARGS=	--add-missing
 
-NO_STAGE=	yes
-
 OPTIONS_DEFINE=	DOCS
 
 .include <bsd.port.options.mk>
 
 do-install:
-	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
 .if ${PORT_OPTIONS:MDOCS}
-	@${MKDIR} ${DOCSDIR}
-	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
 .endif
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list