From owner-svn-ports-all@FreeBSD.ORG Fri May 9 23:30:26 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37659F28; Fri, 9 May 2014 23:30:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 247511F3; Fri, 9 May 2014 23:30:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s49NUQaa039701; Fri, 9 May 2014 23:30:26 GMT (envelope-from amdmi3@svn.freebsd.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s49NUQUU039700; Fri, 9 May 2014 23:30:26 GMT (envelope-from amdmi3@svn.freebsd.org) Message-Id: <201405092330.s49NUQUU039700@svn.freebsd.org> From: Dmitry Marakasov Date: Fri, 9 May 2014 23:30:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r353538 - head/mail/smtptrapd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 23:30:26 -0000 Author: amdmi3 Date: Fri May 9 23:30:25 2014 New Revision: 353538 URL: http://svnweb.freebsd.org/changeset/ports/353538 QAT: https://qat.redports.org/buildarchive/r353538/ Log: - Support staging - Verbosify build and installation Modified: head/mail/smtptrapd/Makefile Modified: head/mail/smtptrapd/Makefile ============================================================================== --- head/mail/smtptrapd/Makefile Fri May 9 23:28:12 2014 (r353537) +++ head/mail/smtptrapd/Makefile Fri May 9 23:30:25 2014 (r353538) @@ -9,18 +9,14 @@ MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= RFC 2821 compliant SMTP service that always returns a 4xx soft error -CFLAGS+= ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} - USE_RC_SUBR= smtptrapd PLIST_FILES= bin/smtptrapd -NO_STAGE= yes do-build: - @cd ${WRKSRC} && ${CC} ${CFLAGS} -o smtptrapd smtptrapd.c + cd ${WRKSRC} && ${CC} ${CFLAGS} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} -o smtptrapd smtptrapd.c do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/smtptrapd ${PREFIX}/bin/ - @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + ${INSTALL_PROGRAM} ${WRKSRC}/smtptrapd ${STAGEDIR}${PREFIX}/bin/ .include