summaryrefslogtreecommitdiff
path: root/mail/mmc
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-07-21 14:06:25 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-07-21 14:06:25 +0000
commit7bcf1fe7b0b0a6b9d240d43488901fa9605c729d (patch)
treef6d5f79e5f8519845ad4ea3e7934fc64fa5b68dd /mail/mmc
parentAdd ssserver, "Subject Search Server(TM)", a binary-only CGI supporting (diff)
Add mmc - a tiny mail client for Gnome desktop.
Notes
Notes: svn path=/head/; revision=30934
Diffstat (limited to 'mail/mmc')
-rw-r--r--mail/mmc/Makefile32
-rw-r--r--mail/mmc/distinfo1
-rw-r--r--mail/mmc/files/patch-ab11
-rw-r--r--mail/mmc/files/patch-ac13
-rw-r--r--mail/mmc/files/patch-ad10
-rw-r--r--mail/mmc/files/patch-ae10
-rw-r--r--mail/mmc/pkg-comment1
-rw-r--r--mail/mmc/pkg-descr19
-rw-r--r--mail/mmc/pkg-plist3
9 files changed, 100 insertions, 0 deletions
diff --git a/mail/mmc/Makefile b/mail/mmc/Makefile
new file mode 100644
index 000000000000..c5068004a167
--- /dev/null
+++ b/mail/mmc/Makefile
@@ -0,0 +1,32 @@
+# New ports collection makefile for: mmc
+# Date created: 21 July 2000
+# Whom: Maxim Sobolev
+#
+# $FreeBSD$
+#
+
+PORTNAME= mmc
+PORTVERSION= 0.4.1
+CATEGORIES= mail gnome
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITE_SUBDIR= ${PORTNAME}
+DISTNAME= ${PORTNAME}-${PORTVERSION:S/.1/-1/}
+
+MAINTAINER= sobomax@FreeBSD.org
+
+LIB_DEPENDS= gnome.4:${PORTSDIR}/x11/gnomelibs
+
+WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.1//}
+
+USE_X_PREFIX= yes
+GNU_CONFIGURE= yes
+
+GLIB_CONFIG?= ${LOCALBASE}/bin/glib12-config
+GTK_CONFIG?= ${X11BASE}/bin/gtk12-config
+
+CONFIGURE_ENV= GLIB_CONFIG="${GLIB_CONFIG}" \
+ GTK_CONFIG="${GTK_CONFIG}" \
+ CPPFLAGS="-I${LOCALBASE}/include" \
+ LDFLAGS="-L${LOCALBASE}/lib"
+
+.include <bsd.port.mk>
diff --git a/mail/mmc/distinfo b/mail/mmc/distinfo
new file mode 100644
index 000000000000..40e703379502
--- /dev/null
+++ b/mail/mmc/distinfo
@@ -0,0 +1 @@
+MD5 (mmc-0.4-1.tar.gz) = f642669682b5ebb6a853e1c4e01d83cf
diff --git a/mail/mmc/files/patch-ab b/mail/mmc/files/patch-ab
new file mode 100644
index 000000000000..537275ed1336
--- /dev/null
+++ b/mail/mmc/files/patch-ab
@@ -0,0 +1,11 @@
+--- src/Makefile.in 2000/07/21 13:35:12 1.1
++++ src/Makefile.in 2000/07/21 13:35:38
+@@ -115,7 +115,7 @@
+ mmc_SOURCES = main.cc main.h msg.cc msg.h pop3.cc pop3.h mime.cc mime.h compose.cc compose.h smtp.cc smtp.h address.cc progressbar.cc protocols.h protocols.cc folders.cc folders.h address.h progress.h
+
+
+-mmc_LDADD = $(GNOMEUI_LIBS) $(GNOME_LIBDIR) $(INTLLIBS) -ldb
++mmc_LDADD = $(GNOMEUI_LIBS) $(GNOME_LIBDIR) $(INTLLIBS)
+
+ EXTRA_DIST = logo.png
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
diff --git a/mail/mmc/files/patch-ac b/mail/mmc/files/patch-ac
new file mode 100644
index 000000000000..28f201be2b53
--- /dev/null
+++ b/mail/mmc/files/patch-ac
@@ -0,0 +1,13 @@
+--- src/address.h 2000/07/21 13:28:27 1.1
++++ src/address.h 2000/07/21 13:30:50
+@@ -23,8 +23,8 @@
+ #ifndef __MMC_ADDRESS_H
+ #define __MMC_ADDRESS_H
+
+-#include <alloca.h>
+-#include <db1/db.h>
++/*#include <alloca.h>*/
++#include <db.h>
+ #include <errno.h>
+ #include <fcntl.h>
+ #include <stdio.h>
diff --git a/mail/mmc/files/patch-ad b/mail/mmc/files/patch-ad
new file mode 100644
index 000000000000..ac391ca228e9
--- /dev/null
+++ b/mail/mmc/files/patch-ad
@@ -0,0 +1,10 @@
+--- src/pop3.cc 2000/07/21 13:31:58 1.1
++++ src/pop3.cc 2000/07/21 13:32:56
+@@ -26,6 +26,7 @@
+ */
+
+ #include <sys/types.h>
++#include <sys/socket.h>
+ #include <sys/stat.h>
+ #include <netinet/in.h>
+ #include <arpa/inet.h>
diff --git a/mail/mmc/files/patch-ae b/mail/mmc/files/patch-ae
new file mode 100644
index 000000000000..a371e75d7962
--- /dev/null
+++ b/mail/mmc/files/patch-ae
@@ -0,0 +1,10 @@
+--- src/smtp.cc 2000/07/21 13:33:45 1.1
++++ src/smtp.cc 2000/07/21 13:34:24
+@@ -20,6 +20,7 @@
+ For the complete License see the file COPYING.
+ */
+
++#include <sys/types.h>
+ #include<sys/socket.h>
+ #include<gnome.h>
+
diff --git a/mail/mmc/pkg-comment b/mail/mmc/pkg-comment
new file mode 100644
index 000000000000..c1a42b7a0cd9
--- /dev/null
+++ b/mail/mmc/pkg-comment
@@ -0,0 +1 @@
+A tiny mail client for Gnome Desktop
diff --git a/mail/mmc/pkg-descr b/mail/mmc/pkg-descr
new file mode 100644
index 000000000000..56de746f4184
--- /dev/null
+++ b/mail/mmc/pkg-descr
@@ -0,0 +1,19 @@
+MMC is a Mail Client, written in C++, for Gnome.
+
+Current features (more to come in the nearest future):
+
+ o Single window interface
+ o Two pane view for multiple mailboxes
+ o Sortable columnized email view
+ o Simple Address Book
+ o Complete support for POP3 email receiving
+ o Complete support for SMTP email sending
+ o Simple, organized email composition interface
+ o Complete attachment support, intuitive attachment list
+ o MIME support
+ o Multiple recipients, carbon copy/blind carbon copy support
+ o Multiple Mailboxes
+ o Copying/Moving between multiple Folders
+
+
+WWW: http://mmc.sourceforge.net/
diff --git a/mail/mmc/pkg-plist b/mail/mmc/pkg-plist
new file mode 100644
index 000000000000..30a994bd6157
--- /dev/null
+++ b/mail/mmc/pkg-plist
@@ -0,0 +1,3 @@
+bin/mmc
+share/locale/de/LC_MESSAGES/mmc.mo
+share/locale/de_DE/LC_MESSAGES/mmc.mo