385fda0e1d
netbiff is a mail notification utility, like the traditional xbiff, but designed to handle multiple mailboxes. It can provide a graphical interface and/or execute shell commands when new mail is received. netbiff is the main interface program. It reads a configuration and communicates with several backend mail checkers. It uses either GTK or a terminal to display messages to the user. netbiffd-imap checks for mail on an IMAP connection. It supports checking multiple folders, and can connect using TCP, SSL, or an SSH tunnel. netbiffd-file checks for updates to a specific file using its mtime field. The behavior is identical to the original xbiff.
24 lines
677 B
Makefile
24 lines
677 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2007/11/03 16:47:50 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= netbiff-0.9.18
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.cs.virginia.edu/~jrk3g/netbiff/
|
|
|
|
MAINTAINER= rvalls@ac.upc.edu
|
|
HOMEPAGE= http://www.cs.virginia.edu/~jrk3g/netbiff/
|
|
COMMENT= Xbiff-like mail notification, handles multiple mailboxes
|
|
|
|
SUBST_CLASSES+= fix-path
|
|
SUBST_FILES.fix-path+= conf-home
|
|
SUBST_STAGE.fix-path= pre-configure
|
|
SUBST_SED.fix-path= -e 's|/usr/local|${PREFIX}|g'
|
|
|
|
DOCDIR= ${DESTDIR}${PREFIX}/share/doc/netbiff
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/CONFIG ${DOCDIR}
|
|
|
|
.include "../../x11/gtk/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|