svn commit: r354192 - head/databases/sqlite-ext-miscfuncs

Vanilla I. Shu vanilla at FreeBSD.org
Fri May 16 03:11:15 UTC 2014


Author: vanilla
Date: Fri May 16 03:11:14 2014
New Revision: 354192
URL: http://svnweb.freebsd.org/changeset/ports/354192
QAT: https://qat.redports.org/buildarchive/r354192/

Log:
  Support STAGEDIR.

Modified:
  head/databases/sqlite-ext-miscfuncs/Makefile

Modified: head/databases/sqlite-ext-miscfuncs/Makefile
==============================================================================
--- head/databases/sqlite-ext-miscfuncs/Makefile	Fri May 16 03:07:40 2014	(r354191)
+++ head/databases/sqlite-ext-miscfuncs/Makefile	Fri May 16 03:11:14 2014	(r354192)
@@ -35,19 +35,17 @@ PORTDOCS=	README
 
 CFLAGS+=	-I${PREFIX}/include -fPIC -lm -shared
 
-NO_STAGE=	yes
 do-build:
 	@cd ${WRKSRC} && ${CC} ${CFLAGS} ${SRCFILE} -o ${LIBFILE}
 
 do-install:
-	@${INSTALL} -d ${PREFIX}/libexec/${DIST_SUBDIR}
-	@${INSTALL_PROGRAM} ${WRKSRC}/${LIBFILE} ${INST_DIR}
+	@${INSTALL} -d ${STAGEDIR}${PREFIX}/libexec/${DIST_SUBDIR}
+	@${INSTALL_PROGRAM} ${WRKSRC}/${LIBFILE} ${STAGEDIR}${INST_DIR}
 
 post-install:
 .if !defined(NOPORTDOCS)
-	@${INSTALL} -d ${DOCSDIR}
-	@${CP} ${WRKDIR}/${PORTDOCS} ${DOCSDIR}
+	@${INSTALL} -d ${STAGEDIR}${DOCSDIR}
+	@${CP} ${WRKDIR}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
 .endif
-	@${CAT} ${PKGMESSAGE}
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list