summaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2000-08-15 08:15:35 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2000-08-15 08:15:35 +0000
commite62efa81eaefdd41b3ac5be16ba3775b4b789883 (patch)
tree92bb72932b2847f86856ea576a49380189ef0a37 /mail
parentBack out previous commit - I erroneously replaced this file with older version. (diff)
Add pygmy - a GNOME mail client written in Python.
Notes
Notes: svn path=/head/; revision=31654
Diffstat (limited to 'mail')
-rw-r--r--mail/Makefile1
-rw-r--r--mail/pygmy/Makefile32
-rw-r--r--mail/pygmy/distinfo1
-rw-r--r--mail/pygmy/files/patch-aa16
-rw-r--r--mail/pygmy/files/patch-ab11
-rw-r--r--mail/pygmy/pkg-comment1
-rw-r--r--mail/pygmy/pkg-descr3
-rw-r--r--mail/pygmy/pkg-plist47
8 files changed, 112 insertions, 0 deletions
diff --git a/mail/Makefile b/mail/Makefile
index 42e6f0df8176..0a8376847e58 100644
--- a/mail/Makefile
+++ b/mail/Makefile
@@ -96,6 +96,7 @@
SUBDIR += procmail
SUBDIR += prom-mew
SUBDIR += prom-wl
+ SUBDIR += pygmy
SUBDIR += qmail
SUBDIR += qmail-contrib
SUBDIR += qmailanalog
diff --git a/mail/pygmy/Makefile b/mail/pygmy/Makefile
new file mode 100644
index 000000000000..028dedee0fd4
--- /dev/null
+++ b/mail/pygmy/Makefile
@@ -0,0 +1,32 @@
+# New ports collection makefile for: pygmy
+# Date created: 15 August 2000
+# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
+#
+# $FreeBSD$
+#
+
+PORTNAME= pygmy
+PORTVERSION= 0.4.0
+CATEGORIES= mail python gnome
+MASTER_SITES= http://www.cs.uit.no/~kjetilja/Pygmy/
+
+MAINTAINER= sobomax@FreeBSD.org
+
+BUILD_DEPENDS= python:${PORTSDIR}/lang/python \
+ ${LOCALBASE}/lib/python1.5/site-packages/_gnomemodule.so:${PORTSDIR}/x11-toolkits/py-gnome
+RUN_DEPENDS= python:${PORTSDIR}/lang/python \
+ ${LOCALBASE}/lib/python1.5/site-packages/_gnomemodule.so:${PORTSDIR}/x11-toolkits/py-gnome
+
+ALL_TARGET= pythonprogs
+
+do-configure:
+ @${ECHO} "PYGMY_PREFIX='${PREFIX}/share'" > ${WRKSRC}/prefix.py
+
+do-install:
+ ${MKDIR} ${PREFIX}/share/pygmy/icons
+ ${INSTALL_DATA} ${WRKSRC}/*.pyo ${WRKSRC}/*.pyc ${PREFIX}/share/pygmy
+ ${INSTALL_DATA} ${WRKSRC}/icons/* ${PREFIX}/share/pygmy/icons
+ ${INSTALL_SCRIPT} ${WRKSRC}/pygmy ${PREFIX}/share/pygmy
+ ${LN} -sf ${PREFIX}/share/pygmy/pygmy ${PREFIX}/bin/pygmy
+
+.include <bsd.port.mk>
diff --git a/mail/pygmy/distinfo b/mail/pygmy/distinfo
new file mode 100644
index 000000000000..60b88f81f959
--- /dev/null
+++ b/mail/pygmy/distinfo
@@ -0,0 +1 @@
+MD5 (pygmy-0.4.0.tar.gz) = 79fb6b1c471239a792a7a56a18f6acb3
diff --git a/mail/pygmy/files/patch-aa b/mail/pygmy/files/patch-aa
new file mode 100644
index 000000000000..d016dda9b9ff
--- /dev/null
+++ b/mail/pygmy/files/patch-aa
@@ -0,0 +1,16 @@
+--- Makefile.orig Tue Aug 15 10:23:51 2000
++++ Makefile Tue Aug 15 10:24:42 2000
+@@ -1,11 +1,11 @@
+ # $Id: Makefile,v 1.3 2000/07/31 14:06:31 kjetilja Exp $
+
+ # Installation prefix -- modify to your preferences
+-PREFIX=/usr/local
++#PREFIX=/usr/local
+
+
+ # NOTE: Normally nothing below this point need to be changed
+-PYTHON=/usr/bin/env python
++PYTHON=${LOCALBASE}/bin/python
+ PYTHONLIBPATH=`$(PYTHON) -c 'import sys; print sys.prefix'`/lib/python1.5
+ COMPILEPROG=compileall.py
+ COMPILEPROGOPT=-l .
diff --git a/mail/pygmy/files/patch-ab b/mail/pygmy/files/patch-ab
new file mode 100644
index 000000000000..10a2a3e3f51f
--- /dev/null
+++ b/mail/pygmy/files/patch-ab
@@ -0,0 +1,11 @@
+--- msg.py 2000/08/15 07:46:28 1.1
++++ msg.py 2000/08/15 07:47:14
+@@ -54,7 +54,7 @@
+
+ # Font styles
+ self.bold_font = load_font('-*-helvetica-bold-r-normal--12-120-75-75-p-70-iso8859-1')
+- self.normal_font = load_font('-*-helvetica-medium-r-normal--12-120-75-75-p-70-iso8859-1')
++ self.normal_font = load_font('-*-helvetica-bold-r-normal--12-120-75-75-p-70-iso8859-1')
+
+ # Make a separate window to play in
+ self.vbox = GtkVBox()
diff --git a/mail/pygmy/pkg-comment b/mail/pygmy/pkg-comment
new file mode 100644
index 000000000000..80023d01b5f1
--- /dev/null
+++ b/mail/pygmy/pkg-comment
@@ -0,0 +1 @@
+A tiny GNOME mail client written in the Python programming language
diff --git a/mail/pygmy/pkg-descr b/mail/pygmy/pkg-descr
new file mode 100644
index 000000000000..8f8295efd724
--- /dev/null
+++ b/mail/pygmy/pkg-descr
@@ -0,0 +1,3 @@
+Pygmy is a tiny GNOME mail client written in the Python programming language.
+
+WWW: http://www.cs.uit.no/~kjetilja/Pygmy/
diff --git a/mail/pygmy/pkg-plist b/mail/pygmy/pkg-plist
new file mode 100644
index 000000000000..b80df566eb02
--- /dev/null
+++ b/mail/pygmy/pkg-plist
@@ -0,0 +1,47 @@
+bin/pygmy
+share/pygmy/addresslist.pyc
+share/pygmy/addresslist.pyo
+share/pygmy/cite.pyc
+share/pygmy/cite.pyo
+share/pygmy/edit.pyc
+share/pygmy/edit.pyo
+share/pygmy/expand.pyc
+share/pygmy/expand.pyo
+share/pygmy/fileops.pyc
+share/pygmy/fileops.pyo
+share/pygmy/filter.pyc
+share/pygmy/filter.pyo
+share/pygmy/folder.pyc
+share/pygmy/folder.pyo
+share/pygmy/folderedit.pyc
+share/pygmy/folderedit.pyo
+share/pygmy/folderops.pyc
+share/pygmy/folderops.pyo
+share/pygmy/headers.pyc
+share/pygmy/headers.pyo
+share/pygmy/icons/dir-close.xpm
+share/pygmy/icons/dir-open.xpm
+share/pygmy/icons/directory.xpm
+share/pygmy/icons/forwarded.xpm
+share/pygmy/icons/fulltrash.xpm
+share/pygmy/icons/inbox.xpm
+share/pygmy/icons/outbox.xpm
+share/pygmy/icons/trash.xpm
+share/pygmy/icons/tray_empty.xpm
+share/pygmy/icons/tray_full.xpm
+share/pygmy/icons/tray_new.xpm
+share/pygmy/mime.pyc
+share/pygmy/mime.pyo
+share/pygmy/msg.pyc
+share/pygmy/msg.pyo
+share/pygmy/newmail.pyc
+share/pygmy/newmail.pyo
+share/pygmy/prefix.pyc
+share/pygmy/prefix.pyo
+share/pygmy/prefs.pyc
+share/pygmy/prefs.pyo
+share/pygmy/pygmy
+share/pygmy/pygmymailbox.pyc
+share/pygmy/pygmymailbox.pyo
+@dirrm share/pygmy/icons
+@dirrm share/pygmy