From owner-svn-ports-all@FreeBSD.ORG Mon Oct 14 21:33:14 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7FDC93E0; Mon, 14 Oct 2013 21:33:14 +0000 (UTC) (envelope-from gblach@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 530BE29D7; Mon, 14 Oct 2013 21:33:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9ELXEIS072515; Mon, 14 Oct 2013 21:33:14 GMT (envelope-from gblach@svn.freebsd.org) Received: (from gblach@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9ELXDEQ072513; Mon, 14 Oct 2013 21:33:13 GMT (envelope-from gblach@svn.freebsd.org) Message-Id: <201310142133.r9ELXDEQ072513@svn.freebsd.org> From: Grzegorz Blach Date: Mon, 14 Oct 2013 21:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r330363 - head/mail/popa3d 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.14 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: Mon, 14 Oct 2013 21:33:14 -0000 Author: gblach Date: Mon Oct 14 21:33:13 2013 New Revision: 330363 URL: http://svnweb.freebsd.org/changeset/ports/330363 Log: - Support staging Modified: head/mail/popa3d/Makefile head/mail/popa3d/pkg-plist (contents, props changed) Modified: head/mail/popa3d/Makefile ============================================================================== --- head/mail/popa3d/Makefile Mon Oct 14 21:25:58 2013 (r330362) +++ head/mail/popa3d/Makefile Mon Oct 14 21:33:13 2013 (r330363) @@ -13,10 +13,10 @@ MAINTAINER= gblach@FreeBSD.org COMMENT= Secure, performance, tiny POP3 daemon ALL_TARGET= popa3d -MAN8= popa3d.8 PLIST= ${WRKDIR}/.PLIST.more CFLAGS+= -DPREFIX=${PREFIX} UNIQUENAME= ${.CURDIR:T} +NEED_ROOT= yes OPTIONS_DEFINE= SMTP_AFTER_POP3 STANDALONE_POP3 SETPROCTITLE NO_OPTIONS_SORT=yes @@ -24,7 +24,6 @@ SMTP_AFTER_POP3_DESC=Enable SMTP-after-P STANDALONE_POP3_DESC=Enable standalone server mode SETPROCTITLE_DESC=Enable setproctitle() support -NO_STAGE= yes .include .if ${PORT_OPTIONS:MSTANDALONE_POP3} @@ -85,26 +84,21 @@ pre-install: do-install: ${INSTALL} ${COPY} -o root -g wheel -m 500 \ - ${WRKSRC}/popa3d ${PREFIX}/libexec/popa3d - ${INSTALL_MAN} ${WRKSRC}/popa3d.8 ${MANPREFIX}/man/man8/ + ${WRKSRC}/popa3d ${STAGEDIR}${PREFIX}/libexec/popa3d + ${INSTALL_MAN} ${WRKSRC}/popa3d.8 ${STAGEDIR}${MANPREFIX}/man/man8/ .if ${PORT_OPTIONS:MSMTP_AFTER_POP3} && !defined(WITHOUT_POPAUTH_M4) - ${INSTALL_DATA} ${FILESDIR}/popauth.m4 ${CFDIR}/hack/ + ${INSTALL_DATA} ${FILESDIR}/popauth.m4 ${STAGEDIR}${CFDIR}/hack/ .endif .if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/DESIGN ${DOCSDIR}/ - ${INSTALL_MAN} ${WRKSRC}/LICENSE ${DOCSDIR}/ + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${WRKSRC}/DESIGN ${STAGEDIR}${DOCSDIR}/ + ${INSTALL_MAN} ${WRKSRC}/LICENSE ${STAGEDIR}${DOCSDIR}/ .if ${PORT_OPTIONS:MSMTP_AFTER_POP3} - ${INSTALL_DATA} ${FILESDIR}/POPAUTH ${DOCSDIR}/ + ${INSTALL_DATA} ${FILESDIR}/POPAUTH ${STAGEDIR}${DOCSDIR}/ .endif .endif -post-install: -.if ! ${PORT_OPTIONS:MSTANDALONE_POP3} - @ ${CAT} ${PKGMESSAGE} -.endif - .if exists(${LOCALBASE}/share/sendmail/cf/mailer/uucp.m4) CFDIR= ${LOCALBASE}/share/sendmail/cf .else Modified: head/mail/popa3d/pkg-plist ============================================================================== --- head/mail/popa3d/pkg-plist Mon Oct 14 21:25:58 2013 (r330362) +++ head/mail/popa3d/pkg-plist Mon Oct 14 21:33:13 2013 (r330363) @@ -1,4 +1,5 @@ libexec/popa3d +man/man8/popa3d.8.gz %%PORTDOCS%%%%DOCSDIR%%/DESIGN %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%SMTP_AFTER_POP3%%%%PORTDOCS%%%%DOCSDIR%%/POPAUTH