Date: Fri, 9 Aug 2013 15:46:23 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324446 - head/mail/smtpfeed Message-ID: <201308091546.r79FkNsH001195@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Fri Aug 9 15:46:23 2013 New Revision: 324446 URL: http://svnweb.freebsd.org/changeset/ports/324446 Log: - Trim Makefile header - Remove NO_PACKAGE, it needs manual configuration post installation but it packages fine and BSD license allows it - Unbreak with clang (reported by pkg-fallout) - Remove obsolete MAKE_JOBS_SAFE - Mute MKDIR - Remove loop in DOCS installation - Pad PKGMESSAGE Modified: head/mail/smtpfeed/Makefile Modified: head/mail/smtpfeed/Makefile ============================================================================== --- head/mail/smtpfeed/Makefile Fri Aug 9 15:21:56 2013 (r324445) +++ head/mail/smtpfeed/Makefile Fri Aug 9 15:46:23 2013 (r324446) @@ -1,9 +1,5 @@ -# New ports collection makefile for: smtpfeed -# Date created: 17 January 1998 -# Whom: itojun@itojun.org -# +# Created by: itojun@itojun.org # $FreeBSD$ -# PORTNAME= smtpfeed PORTVERSION= 1.21 @@ -16,12 +12,10 @@ COMMENT= SMTP Fast Exploding External De LICENSE= BSD LICENSE_FILE= ${WRKSRC}/COPYRIGHT -NO_PACKAGE= complex configuration for sendmail.cf needed - OPTIONS_DEFINE= DOCS +CFLAGS+= -Wno-error=return-type GNU_CONFIGURE= yes -MAKE_JOBS_SAFE= yes SUB_FILES= pkg-message @@ -37,11 +31,11 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/smtpfeed ${PREFIX}/libexec ${INSTALL_MAN} ${WRKSRC}/smtpfeed.8 ${MAN8PREFIX}/man/man8 .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} -.for file in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} -.endfor + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR} .endif + @${ECHO_MSG} @${CAT} ${PKGMESSAGE} + @${ECHO_MSG} .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308091546.r79FkNsH001195>