55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.125 2010/11/19 07:23:06 espie Exp $
|
|
|
|
COMMENT= mail retrieval utility for POP2, POP3, KPOP, IMAP and more
|
|
|
|
DISTNAME= fetchmail-6.3.17
|
|
REVISION = 0
|
|
CATEGORIES= mail
|
|
MASTER_SITES= ${MASTER_SITE_BERLIOS:=fetchmail/}
|
|
|
|
HOMEPAGE= http://fetchmail.berlios.de/
|
|
|
|
# GPLv2(+)
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c crypto krb5 ssl
|
|
|
|
MODULES= devel/gettext
|
|
BUILD_DEPENDS= devel/bison
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
CFLAGS= -I${LOCALBASE}/include
|
|
CONFIGURE_ENV= PYTHON=: YACC="bison -y"
|
|
CONFIGURE_ARGS= --with-ssl \
|
|
--with-kerberos5 \
|
|
--enable-NTLM
|
|
USE_GROFF = Yes
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
DOCS= FAQ NOTES FEATURES README COPYING fetchmail-FAQ.html \
|
|
fetchmail-features.html design-notes.html todo.html
|
|
|
|
# Remove those so they get rebuild. Fixes problems with gcc2.
|
|
post-extract:
|
|
@rm -f ${WRKSRC}/rcfile_y.[ch]
|
|
|
|
pre-patch:
|
|
@sed -e "s|@PREFIX@|${LOCALBASE}|" \
|
|
${FILESDIR}/fetchmailconf > ${WRKDIR}/fetchmailconf
|
|
@tbl ${WRKSRC}/fetchmail.man > ${WRKSRC}/fetchmail.tbl && \
|
|
cp -f ${WRKSRC}/fetchmail.tbl ${WRKSRC}/fetchmail.man
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fetchmail
|
|
@cd ${PREFIX}/man/man1 && ln -sf fetchmail.1 fetchmailconf.1
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/fetchmail
|
|
${INSTALL_SCRIPT} ${WRKSRC}/fetchmailconf.py \
|
|
${PREFIX}/libexec/fetchmailconf.bin
|
|
${INSTALL_SCRIPT} ${WRKDIR}/fetchmailconf ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|