mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 09:19:15 -04:00
Add popcheck, a small curses based POP3 mailbox viewer.
PR: ports/61961 Submitted by: Radim Kolar <hsn@netmag.cz>
This commit is contained in:
parent
38a01f9fb3
commit
48c3b91e10
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=99208
5 changed files with 62 additions and 0 deletions
|
@ -273,6 +273,7 @@
|
||||||
SUBDIR += pop3vscan
|
SUBDIR += pop3vscan
|
||||||
SUBDIR += popa3d
|
SUBDIR += popa3d
|
||||||
SUBDIR += popa3d-before-sendmail
|
SUBDIR += popa3d-before-sendmail
|
||||||
|
SUBDIR += popcheck
|
||||||
SUBDIR += popd
|
SUBDIR += popd
|
||||||
SUBDIR += poppassd
|
SUBDIR += poppassd
|
||||||
SUBDIR += popper
|
SUBDIR += popper
|
||||||
|
|
31
mail/popcheck/Makefile
Normal file
31
mail/popcheck/Makefile
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# New ports collection makefile for: popcheck
|
||||||
|
# Date created: 25 Jan 2004
|
||||||
|
# Whom: Radim Kolar
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= popcheck
|
||||||
|
PORTVERSION= 1.3
|
||||||
|
CATEGORIES= mail
|
||||||
|
MASTER_SITES= http://www.ludd.luth.se/~staham/linux/programs/
|
||||||
|
DISTNAME= popcheck
|
||||||
|
|
||||||
|
MAINTAINER= hsn@netmag.cz
|
||||||
|
COMMENT= Preview and delete messages in POP3 mailbox
|
||||||
|
|
||||||
|
ALL_TARGET= popcheck
|
||||||
|
|
||||||
|
.if !defined(NO_INSTALL_MANPAGES)
|
||||||
|
MAN1= popcheck.1
|
||||||
|
.endif
|
||||||
|
|
||||||
|
PLIST_FILES= bin/popcheck
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_PROGRAM} ${WRKSRC}/popcheck ${PREFIX}/bin
|
||||||
|
.if !defined(NO_INSTALL_MANPAGES)
|
||||||
|
${INSTALL_MAN} ${WRKSRC}/popcheck.1 ${MAN1PREFIX}/man/man1
|
||||||
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
mail/popcheck/distinfo
Normal file
1
mail/popcheck/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (popcheck.tar.gz) = 22976e558030c88531fd848a8f06c503
|
22
mail/popcheck/files/patch-Makefile
Normal file
22
mail/popcheck/files/patch-Makefile
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
--- Makefile.orig Tue May 8 19:26:58 2001
|
||||||
|
+++ Makefile Sun Jan 25 22:08:08 2004
|
||||||
|
@@ -24,9 +24,9 @@
|
||||||
|
# Edit the options below to suit your needs
|
||||||
|
#
|
||||||
|
|
||||||
|
-CC = gcc
|
||||||
|
+CC?= gcc
|
||||||
|
|
||||||
|
-CFLAGS = -O2 -Wall -pipe
|
||||||
|
+CFLAGS?= -O2 -Wall -pipe
|
||||||
|
|
||||||
|
# Uncomment for Sparc Solaris
|
||||||
|
# LDFLAGS = -lcurses -lresolv -lnsl -lsocket
|
||||||
|
@@ -37,6 +37,7 @@
|
||||||
|
INSTPATH = /usr/local
|
||||||
|
|
||||||
|
$(PROG): $(PROG).o
|
||||||
|
+ $(CC) $(LDFLAGS) -o $(PROG) $(PROG).o
|
||||||
|
|
||||||
|
$(PROG).o: $(PROG).c
|
||||||
|
$(CC) $(CFLAGS) -c $(PROG).c -o $(PROG).o
|
7
mail/popcheck/pkg-descr
Normal file
7
mail/popcheck/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
Log onto a popserver to see a list of all messages that you have on there, with
|
||||||
|
sender, subject and size for each message. With an ncurses interface that
|
||||||
|
easily lets you scroll through them, and optionally deleting messages without
|
||||||
|
ever downloading them. This can be useful when you've received big mails that
|
||||||
|
you don't really want to download.
|
||||||
|
|
||||||
|
WWW: http://www.ludd.luth.se/~staham/linux/programs.html
|
Loading…
Add table
Reference in a new issue