svn commit: r341097 - head/ftp/ftpproxy

Baptiste Daroussin bapt at FreeBSD.org
Sat Jan 25 20:47:32 UTC 2014


Author: bapt
Date: Sat Jan 25 20:47:31 2014
New Revision: 341097
URL: http://svnweb.freebsd.org/changeset/ports/341097
QAT: https://qat.redports.org/buildarchive/r341097/

Log:
  Support stage
  Respect CC
  USE_GMAKE -> USES=gmake

Modified:
  head/ftp/ftpproxy/Makefile

Modified: head/ftp/ftpproxy/Makefile
==============================================================================
--- head/ftp/ftpproxy/Makefile	Sat Jan 25 20:47:28 2014	(r341096)
+++ head/ftp/ftpproxy/Makefile	Sat Jan 25 20:47:31 2014	(r341097)
@@ -10,22 +10,21 @@ MASTER_SITES=	http://www.ftpproxy.org/do
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	philippe at le-berre.com
-COMMENT=	A ftp proxy
+COMMENT=	ftp proxy
 
-USE_GMAKE=	yes
+USES=		gmake
 MAKE_JOBS_UNSAFE=	yes
+MAKE_ARGS=	CC=${CC}
 
-MAN1=		ftp.proxy.1
-MANCOMPRESSED=	no
-PLIST_FILES=	sbin/ftp.proxy
+PLIST_FILES=	sbin/ftp.proxy \
+		man/man1/ftp.proxy.1.gz
 
-NO_STAGE=	yes
 pre-build:
 	@${REINPLACE_CMD} -e 's|^CFLAGS.*|CFLAGS=${CFLAGS} \
 	     -DVERSION=\\"${PORTVERSION}\\"|' ${WRKSRC}/src/Makefile
 
 do-install:
-	@${INSTALL_PROGRAM} ${WRKSRC}/src/ftp.proxy ${PREFIX}/sbin
-	@${INSTALL_MAN} ${WRKSRC}/doc/ftp.proxy.1 ${PREFIX}/man/man1
+	${INSTALL_PROGRAM} ${WRKSRC}/src/ftp.proxy ${STAGEDIR}${PREFIX}/sbin
+	${INSTALL_MAN} ${WRKSRC}/doc/ftp.proxy.1 ${STAGEDIR}${PREFIX}/man/man1
 
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list