aboutsummaryrefslogtreecommitdiff
path: root/mail/popcheck/files
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-01-26 18:41:09 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-01-26 18:41:09 +0000
commit48c3b91e1041bcfe82123d5f4ff2f6fa7b8f999a (patch)
tree728365f717a6e37b6ca5602cfda06b2128b82000 /mail/popcheck/files
parent38a01f9fb355a7dfdb863df2cc49026bef79c734 (diff)
downloadports-48c3b91e1041bcfe82123d5f4ff2f6fa7b8f999a.tar.gz
ports-48c3b91e1041bcfe82123d5f4ff2f6fa7b8f999a.zip
Add popcheck, a small curses based POP3 mailbox viewer.
PR: ports/61961 Submitted by: Radim Kolar <hsn@netmag.cz>
Notes
Notes: svn path=/head/; revision=99208
Diffstat (limited to 'mail/popcheck/files')
-rw-r--r--mail/popcheck/files/patch-Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/mail/popcheck/files/patch-Makefile b/mail/popcheck/files/patch-Makefile
new file mode 100644
index 000000000000..5cd192e03cfe
--- /dev/null
+++ b/mail/popcheck/files/patch-Makefile
@@ -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