mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
24524caf0f
to fix "*** [install-libLTLIBRARIES] Error code 71"
81 lines
2.3 KiB
Makefile
81 lines
2.3 KiB
Makefile
# Created by: Daniel Roethlisberger <daniel@roe.ch>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libspf
|
|
DISTVERSION= 1.0.0-p5
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.libspf.org/files/src/ \
|
|
${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= mnag/${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Sender Policy Framework (SPF) library and client
|
|
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
USE_BZIP2= yes
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= RFC_RECURSION LOGFILE_STATS DEBUG DOCS
|
|
RFC_RECURSION_DESC= Change SPF recursion to 20 (as per RFC)
|
|
LOGFILE_STATS_DESC= Enables logfile stats
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MRFC_RECURSION}
|
|
CONFIGURE_ARGS+= --enable-rfc-recursion
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MLOGFILE_STATS}
|
|
CONFIGURE_ARGS+= --enable-logfile-stats
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MDEBUG}
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s|CFLAGS =|CFLAGS +=|" \
|
|
${WRKSRC}/src/libspf/Makefile.in ${WRKSRC}/src/spfqtool/Makefile.in
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${FIND} ${WRKSRC}/docs -type d -name CVS | ${XARGS} ${RM} -rf
|
|
.for i in docs docs/API docs/API/doxygen docs/API/doxygen/html docs/RFC docs/qmail \
|
|
docs/qmail/1.03 docs/qmail/1.04 docs/qmail/1.05 docs/spfqtool docs/Postfix \
|
|
docs/Postfix/2.1.x docs/Sendmail docs/Sendmail/8.12.x docs/Sendmail/8.13.x \
|
|
docs/Courier-MTA docs/history
|
|
@${MKDIR} ${DOCSDIR}/${i}
|
|
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
|
${INSTALL_DATA} $${f} ${DOCSDIR}/${i}; \
|
|
done
|
|
.endfor
|
|
.endif
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${FIND} ${WRKSRC}/examples -type d -name CVS | ${XARGS} ${RM} -rf
|
|
.for i in examples/qmail examples/qmail/control examples/Sendmail
|
|
@${MKDIR} ${EXAMPLESDIR}/${i}
|
|
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
|
${INSTALL_DATA} $${f} ${EXAMPLESDIR}/${i}; \
|
|
done
|
|
.endfor
|
|
@${MKDIR} ${DATADIR}
|
|
@${FIND} ${WRKSRC}/patches -type d -name CVS | ${XARGS} ${RM} -rf
|
|
.for i in patches patches/qmail patches/qmail/1.03 patches/qmail/1.05 patches/Postfix \
|
|
patches/Postfix/2.1.x patches/Sendmail patches/Sendmail/8.12.x patches/Sendmail/8.13.x \
|
|
patches/Courier-MTA
|
|
@${MKDIR} ${DATADIR}/${i}
|
|
@for f in `${FIND} ${WRKSRC}/${i} ! -type d -maxdepth 1`; do \
|
|
${INSTALL_DATA} $${f} ${DATADIR}/${i}; \
|
|
done
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|