pkgsrc/mail/fetchmail/Makefile
tron 78b9e98d87 Use documented trick to disable Python detection instead of patching
"Makefile.in". Hint provided by Matthias Andree in private e-mail.
2007-01-17 19:18:01 +00:00

69 lines
1.6 KiB
Makefile

# $NetBSD: Makefile,v 1.161 2007/01/17 19:18:01 tron Exp $
DISTNAME= fetchmail-6.3.6
CATEGORIES= mail
MASTER_SITES= http://download.berlios.de/fetchmail/ \
http://download2.berlios.de/fetchmail/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= frueauf@NetBSD.org
HOMEPAGE= http://fetchmail.berlios.de/
COMMENT= Batch mail retrieval/forwarding utility for pop2, pop3, apop, imap
PKG_INSTALLATION_TYPES= overwrite pkgviews
.include "../../mk/bsd.prefs.mk"
USE_PKGLOCALEDIR= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-hesiod
CONFIGURE_ENV+= PYTHON=:
LDFLAGS+= ${CFLAGS}
USE_TOOLS+= msgfmt tbl
.if ${OPSYS} == "Darwin"
LDFLAGS+= -lresolv
CFLAGS.Darwin+= -DBIND_8_COMPAT -DHAVE_RESOLV_H
.endif
.include "options.mk"
DOCDIR= ${PREFIX}/share/doc/fetchmail
RCD_SCRIPTS= fetchmail
.include "../../devel/gettext-lib/buildlink3.mk"
post-extract:
@${RM} -f ${WRKSRC}/intl/libintl.h
.if ${OPSYS} == "NetBSD"
@${RM} -f ${WRKSRC}/md5.h
.endif
.if defined(REPLACE_KERBEROS_LIBS)
pre-configure:
cd ${WRKSRC} && \
for F in configure.in configure; do \
${SED} -e "s/-lkrb -ldes/-lkrb -ldes -lcom_err -lroken/" \
$$F > $$F.mod; \
${MV} -f $$F.mod $$F; \
done
${CHMOD} a+x ${WRKSRC}/configure
.endif
post-build:
for file in ${WRKSRC}/fetchmail.man; do \
${MV} -f $$file $$file.tbl; \
${TBL} $$file.tbl > $$file; \
done
post-install:
${INSTALL_DATA_DIR} ${DOCDIR}
cd ${WRKSRC}; for file in \
FAQ NOTES FEATURES README COPYING \
fetchmail-FAQ.html fetchmail-features.html \
design-notes.html; \
do \
${INSTALL_DATA} $$file ${DOCDIR}; \
done
.include "../../mk/bsd.pkg.mk"