svn commit: r324446 - head/mail/smtpfeed
Antoine Brodin
antoine at FreeBSD.org
Fri Aug 9 15:46:24 UTC 2013
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 at itojun.org
-#
+# Created by: itojun at 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>
More information about the svn-ports-head
mailing list