88ea72915d
make a distinction between these. ok aja@ dcoppa@
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.131 2012/03/29 13:38:40 sthen Exp $
|
|
|
|
COMMENT= mail retrieval utility for POP2, POP3, KPOP, IMAP and more
|
|
|
|
DISTNAME= fetchmail-6.3.21
|
|
REVISION= 1
|
|
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 \
|
|
lang/python
|
|
MODPY_RUNDEP= No
|
|
MODPY_ADJ_FILES= fetchmailconf.py
|
|
SUBST_VARS+= MODPY_LIBDIR
|
|
BUILD_DEPENDS= devel/bison
|
|
|
|
SEPARATE_BUILD= Yes
|
|
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:
|
|
${SUBST_CMD} -c ${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>
|