diff options
50 files changed, 1405 insertions, 0 deletions
diff --git a/irc/lostirc/Makefile b/irc/lostirc/Makefile new file mode 100644 index 000000000..bfde407c8 --- /dev/null +++ b/irc/lostirc/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: irc/lostirc +# Date created: 01 Jul 2002 +# Whom: Juan Salaverria <rael@vectorstar.net> +# +# $FreeBSD$ +# + +PORTNAME= lostirc +PORTVERSION= 0.4.6 +PORTREVISION= 3 +CATEGORIES= irc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + http://demian.dyndns.org/src/ +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org +COMMENT= A simple and minimal IRC client for X + +LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 + +USE_X_PREFIX= yes +USE_GNOME= gnomehack gnomeprefix gnometarget +USE_GCC= 3.4+ +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --disable-kde + +MAN1= lostirc.1 + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} +.for file in AUTHORS ChangeLog TODO README INSTALL + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/irc/lostirc/distinfo b/irc/lostirc/distinfo new file mode 100644 index 000000000..7844ea7ae --- /dev/null +++ b/irc/lostirc/distinfo @@ -0,0 +1,3 @@ +MD5 (lostirc-0.4.6.tar.gz) = 501cd56bc0740d599540fb415718b939 +SHA256 (lostirc-0.4.6.tar.gz) = 50f07178d65fdbed1e85980af039cdf251ae044fee639aaeb28e3949ef6e7edd +SIZE (lostirc-0.4.6.tar.gz) = 622926 diff --git a/irc/lostirc/files/patch-src::libirc::DCC.cpp b/irc/lostirc/files/patch-src::libirc::DCC.cpp new file mode 100644 index 000000000..ebebd2531 --- /dev/null +++ b/irc/lostirc/files/patch-src::libirc::DCC.cpp @@ -0,0 +1,17 @@ +--- src/libirc/DCC.cpp.ori Sat Feb 7 17:25:51 2004 ++++ src/libirc/DCC.cpp Sat Feb 7 17:27:32 2004 +@@ -16,12 +16,13 @@ + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + */ + ++#include <sys/types.h> ++ + #ifndef WIN32 + #include <sys/socket.h> + #include <netinet/in.h> + #include <arpa/inet.h> + #else +-#include <sys/types.h> + #include <sys/stat.h> + #define stat _stat + #endif diff --git a/irc/lostirc/files/patch-src::libirc::Parser.cpp b/irc/lostirc/files/patch-src::libirc::Parser.cpp new file mode 100644 index 000000000..a71575d93 --- /dev/null +++ b/irc/lostirc/files/patch-src::libirc::Parser.cpp @@ -0,0 +1,11 @@ +--- src/libirc/Parser.cpp.orig Sat May 31 09:25:44 2003 ++++ src/libirc/Parser.cpp Mon Jul 7 00:37:53 2003 +@@ -681,7 +681,7 @@ + ss >> time; + + long date = std::atol(time.c_str()); +- time = std::ctime(&date); ++ time = std::ctime((const time_t *)&date); + + Channel *c = _conn->findChannel(chan); + assert(c); diff --git a/irc/lostirc/pkg-descr b/irc/lostirc/pkg-descr new file mode 100644 index 000000000..ad04f7d08 --- /dev/null +++ b/irc/lostirc/pkg-descr @@ -0,0 +1,16 @@ +LostIRC is an IRC client for X, written in C++ using gtkmm as a widget set. +The goal of the first stable version, is to make a simple, keyboard +controlled IRC application with basic features implemented. + +Key features: + + * Simple and minimal client, where the keyboard can be used almost + exclusively + * Tab-completion for both nicks and commands + * Autojoin servers and set which IRC commands to execute on connect + * Multi-server support + * DCC SEND support + +WWW: http://lostirc.sourceforge.net/ + +morten@wtf.dk diff --git a/irc/lostirc/pkg-plist b/irc/lostirc/pkg-plist new file mode 100644 index 000000000..a7d25f92d --- /dev/null +++ b/irc/lostirc/pkg-plist @@ -0,0 +1,11 @@ +bin/lostirc +%%PORTDOCS%%%%DOCSDIR%%/AUTHORS +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog +%%PORTDOCS%%%%DOCSDIR%%/INSTALL +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/TODO +share/applications/lostirc.desktop +share/pixmaps/lostirc.png +share/locale/da/LC_MESSAGES/lostirc.mo +share/locale/fr/LC_MESSAGES/lostirc.mo +%%PORTDOCS%%@dirrm %%DOCSDIR%% diff --git a/irc/xchat-gnome/Makefile b/irc/xchat-gnome/Makefile new file mode 100644 index 000000000..1cb8a72dc --- /dev/null +++ b/irc/xchat-gnome/Makefile @@ -0,0 +1,119 @@ +# New ports collection makefile for: xchat-gnome +# Date created: 04 May 2004 +# Whom: Koop Mast <kwm@rainbow-runner.nl> +# +# $FreeBSD$ +# + +PORTNAME= xchat +PORTVERSION= 0.15 +PORTREVISION= 2 +CATEGORIES= irc gnome ipv6 +MASTER_SITES= http://releases.navi.cx/xchat-gnome/ +PKGNAMESUFFIX= -gnome +DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} + +MAINTAINER= ports@thepentagon.org +COMMENT= An IRC client for GNOME 2 (development version) + +LIB_DEPENDS= sexy:${PORTSDIR}/x11-toolkits/libsexy \ + notify:${PORTSDIR}/devel/libnotify + +USE_XLIB= yes +USE_GETTEXT= yes +USE_BZIP2= yes +USE_GMAKE= yes +USE_GNOME= gnomehack gnomeprefix libgnomeui gnomedocutils desktopfileutils +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" +CONFIGURE_ARGS= --disable-tcl +GCONF_SCHEMAS= apps_xchat.schemas notification.schemas urlscraper.schemas +INSTALLS_ICONS= yes +INSTALLS_OMF= yes + +MAN1= xchat-gnome.1 + +.if !defined(WITHOUT_DBUS) +LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus +CONFIGURE_ARGS+= --enable-dbus +USE_GNOME+= gconf2 +GCONF_SCHEMAS+= url_handler.schemas +PLIST_SUB+= DBUS="" +.else +CONFIGURE_ARGS+=--disable-dbus +PLIST_SUB+= DBUS="@comment " +.endif + +.if defined(WITH_SOCKS) +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 +CONFIGURE_ARGS+= --enable-socks +.endif + +.if !defined(WITHOUT_IPV6) +CONFIGURE_ARGS+= --enable-ipv6 +.endif + +# openssl in now default in configure + +.if defined(WITH_PYTHON) +USE_PYTHON= yes +CONFIGURE_ARGS+= --enable-python +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+= --disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + +.if defined(WITH_TCL) +LIB_DEPENDS+= tcl83.1:${PORTSDIR}/lang/tcl83 +CONFIGURE_ARGS+=--enable-tcl=${LOCALBASE}/lib/tcl8.3 +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include ${PTHREAD_CFLAGS} \ + -I${LOCALBASE}/include/tcl8.3" \ + LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS} \ + -L${LOCALBASE}/lib/tcl8.3" +PLIST_SUB+= TCL="" +.else +CONFIGURE_ARGS+=--enable-tcl=no +PLIST_SUB+= TCL="@comment " +.endif + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not build on 4.X +.endif + +.if ${PERL_LEVEL} < 500600 || defined(WITHOUT_PERL) +CONFIGURE_ARGS+=--disable-perl +PLIST_SUB+= PERL="@comment " +.else +USE_PERL5= yes +CONFIGURE_ARGS+=--enable-perl +PLIST_SUB+= PERL="" +.endif + +pre-everything:: +.if !defined(WITH_PYTHON) || !defined(WITH_SOCKS) || !defined(WITH_TCL) + @${ECHO_MSG} "You may specify the following on the command line:" + @${ECHO_MSG} "" +.endif +.if !defined(WITH_PYTHON) + @${ECHO_MSG} "WITH_PYTHON=yes for Python support" +.endif +.if !defined(WITH_SOCKS) + @${ECHO_MSG} "WITH_SOCKS=yes for SOCKS5 proxy support" +.endif +.if !defined(WITH_TCL) + @${ECHO_MSG} "WITH_TCL=yes for tcl support" +.endif +.if !defined(WITHOUT_PERL) + @${ECHO_MSG} "WITHOUT_PERL=yes to disable Perl support" +.endif + +post-patch: + @${REINPLACE_CMD} -E -e 's|PY_LIBS=.*|PY_LIBS="-L\$$PY_EXEC_PREFIX/lib/python\$$PY_VER/config -lpython\$$PY_VER ${PTHREAD_LIBS} -lutil"|' \ + -e 's|tcl-8.4/lib|lib/tcl8.3|g' \ + ${WRKSRC}/configure + +.include <bsd.port.post.mk> diff --git a/irc/xchat-gnome/distinfo b/irc/xchat-gnome/distinfo new file mode 100644 index 000000000..f04e63716 --- /dev/null +++ b/irc/xchat-gnome/distinfo @@ -0,0 +1,3 @@ +MD5 (xchat-gnome-0.15.tar.bz2) = a0f1f011e594d85a5a5781cfc5f52221 +SHA256 (xchat-gnome-0.15.tar.bz2) = 1d066ee04e5ec2b2557e0e363078c4f38ec527522d958492c331facc24d2be57 +SIZE (xchat-gnome-0.15.tar.bz2) = 1501197 diff --git a/irc/xchat-gnome/pkg-descr b/irc/xchat-gnome/pkg-descr new file mode 100644 index 000000000..5aa359429 --- /dev/null +++ b/irc/xchat-gnome/pkg-descr @@ -0,0 +1,11 @@ +Note that xchat-gnome is very young project and is under heavy development. +You can consider xchat-gnome as alpha software, not that its unstable +but in lack of (not-yet) implemented features. + +Xchat-gnome is a fork of the popular xchat irc client. +But the difference between the two is that xchat-gnome aims at better +gnome integration. + +For help see the website or visit #xchat-gnome on irc.freenode.net + +WWW: http://xchat-gnome.navi.cx/ diff --git a/irc/xchat-gnome/pkg-plist b/irc/xchat-gnome/pkg-plist new file mode 100644 index 000000000..6bffdb06b --- /dev/null +++ b/irc/xchat-gnome/pkg-plist @@ -0,0 +1,131 @@ +bin/xchat-gnome +lib/xchat-gnome/plugins/autoaway.a +lib/xchat-gnome/plugins/autoaway.la +lib/xchat-gnome/plugins/autoaway.so +%%DBUS%%lib/xchat-gnome/plugins/netmonitor.a +%%DBUS%%lib/xchat-gnome/plugins/netmonitor.la +%%DBUS%%lib/xchat-gnome/plugins/netmonitor.so +lib/xchat-gnome/plugins/notification.a +lib/xchat-gnome/plugins/notification.la +lib/xchat-gnome/plugins/notification.so +lib/xchat-gnome/plugins/notifyosd.a +lib/xchat-gnome/plugins/notifyosd.la +lib/xchat-gnome/plugins/notifyosd.so +%%PERL%%lib/xchat-gnome/plugins/perl.a +%%PERL%%lib/xchat-gnome/plugins/perl.la +%%PERL%%lib/xchat-gnome/plugins/perl.so +%%PYTHON%%lib/xchat-gnome/plugins/python.a +%%PYTHON%%lib/xchat-gnome/plugins/python.la +%%PYTHON%%lib/xchat-gnome/plugins/python.so +lib/xchat-gnome/plugins/soundnotification.a +lib/xchat-gnome/plugins/soundnotification.la +lib/xchat-gnome/plugins/soundnotification.so +%%TCL%%lib/xchat-gnome/plugins/tcl.a +%%TCL%%lib/xchat-gnome/plugins/tcl.la +%%TCL%%lib/xchat-gnome/plugins/tcl.so +lib/xchat-gnome/plugins/urlscraper.a +lib/xchat-gnome/plugins/urlscraper.la +lib/xchat-gnome/plugins/urlscraper.so +%%DBUS%%share/dbus-1/services/org.gnome.Xchat.service +share/applications/xchat-gnome.desktop +share/gnome/help/xchat-gnome/C/figures/xchat-gnome_main_window.png +share/gnome/help/xchat-gnome/C/legal.xml +share/gnome/help/xchat-gnome/C/xchat-gnome.xml +share/omf/xchat-gnome/xchat-gnome-C.omf +share/xchat-gnome/channel-list.glade +share/xchat-gnome/connect-dialog.glade +share/xchat-gnome/dcc-window.glade +share/xchat-gnome/irc-network-editor.glade +share/xchat-gnome/message.wav +share/xchat-gnome/preferences-dialog.glade +share/xchat-gnome/setup-dialog.glade +share/xchat-gnome/topic-change.glade +share/xchat-gnome/xchat-gnome-ui.xml +share/xchat-gnome/xchat-gnome.glade +share/icons/hicolor/128x128/apps/xchat-gnome.png +share/icons/hicolor/16x16/apps/xchat-gnome-dcc.png +share/icons/hicolor/16x16/apps/xchat-gnome-message-data.png +share/icons/hicolor/16x16/apps/xchat-gnome-message-new.png +share/icons/hicolor/16x16/apps/xchat-gnome-message-nickname-said.png +share/icons/hicolor/16x16/apps/xchat-gnome-plugin.png +share/icons/hicolor/16x16/apps/xchat-gnome-search-wrapped.png +share/icons/hicolor/16x16/apps/xchat-gnome-status-halfop.png +share/icons/hicolor/16x16/apps/xchat-gnome-status-operator.png +share/icons/hicolor/16x16/apps/xchat-gnome-status-voice.png +share/icons/hicolor/16x16/apps/xchat-gnome-users.png +share/icons/hicolor/22x22/apps/xchat-gnome-message-new.png +share/icons/hicolor/22x22/apps/xchat-gnome-message-nickname-said.png +share/icons/hicolor/22x22/apps/xchat-gnome-plugin.png +share/icons/hicolor/22x22/apps/xchat-gnome-status-halfop.png +share/icons/hicolor/22x22/apps/xchat-gnome-status-operator.png +share/icons/hicolor/22x22/apps/xchat-gnome-users.png +share/icons/hicolor/48x48/apps/xchat-gnome.png +share/icons/hicolor/scalable/apps/xchat-gnome-plugin.svg +share/locale/am/LC_MESSAGES/xchat-gnome.mo +share/locale/az/LC_MESSAGES/xchat-gnome.mo +share/locale/bg/LC_MESSAGES/xchat-gnome.mo +share/locale/bn/LC_MESSAGES/xchat-gnome.mo +share/locale/ca/LC_MESSAGES/xchat-gnome.mo +share/locale/cs/LC_MESSAGES/xchat-gnome.mo +share/locale/da/LC_MESSAGES/xchat-gnome.mo +share/locale/de/LC_MESSAGES/xchat-gnome.mo +share/locale/el/LC_MESSAGES/xchat-gnome.mo +share/locale/en_AU/LC_MESSAGES/xchat-gnome.mo +share/locale/en_GB/LC_MESSAGES/xchat-gnome.mo +share/locale/es/LC_MESSAGES/xchat-gnome.mo +share/locale/et/LC_MESSAGES/xchat-gnome.mo +share/locale/eu/LC_MESSAGES/xchat-gnome.mo +share/locale/fi/LC_MESSAGES/xchat-gnome.mo +share/locale/fr/LC_MESSAGES/xchat-gnome.mo +share/locale/gl/LC_MESSAGES/xchat-gnome.mo +share/locale/hi/LC_MESSAGES/xchat-gnome.mo +share/locale/hr/LC_MESSAGES/xchat-gnome.mo +share/locale/hu/LC_MESSAGES/xchat-gnome.mo +share/locale/is/LC_MESSAGES/xchat-gnome.mo +share/locale/it/LC_MESSAGES/xchat-gnome.mo +share/locale/ja/LC_MESSAGES/xchat-gnome.mo +share/locale/jbo/LC_MESSAGES/xchat-gnome.mo +share/locale/ka/LC_MESSAGES/xchat-gnome.mo +share/locale/ko/LC_MESSAGES/xchat-gnome.mo +share/locale/ku/LC_MESSAGES/xchat-gnome.mo +share/locale/lt/LC_MESSAGES/xchat-gnome.mo +share/locale/lv/LC_MESSAGES/xchat-gnome.mo +share/locale/mk/LC_MESSAGES/xchat-gnome.mo +share/locale/ms/LC_MESSAGES/xchat-gnome.mo +share/locale/nb/LC_MESSAGES/xchat-gnome.mo +share/locale/oc/LC_MESSAGES/xchat-gnome.mo +share/locale/pa/LC_MESSAGES/xchat-gnome.mo +share/locale/pl/LC_MESSAGES/xchat-gnome.mo +share/locale/pt/LC_MESSAGES/xchat-gnome.mo +share/locale/pt_BR/LC_MESSAGES/xchat-gnome.mo +share/locale/ru/LC_MESSAGES/xchat-gnome.mo +share/locale/sk/LC_MESSAGES/xchat-gnome.mo +share/locale/sl/LC_MESSAGES/xchat-gnome.mo +share/locale/sq/LC_MESSAGES/xchat-gnome.mo +share/locale/sr/LC_MESSAGES/xchat-gnome.mo +share/locale/sv/LC_MESSAGES/xchat-gnome.mo +share/locale/tl/LC_MESSAGES/xchat-gnome.mo +share/locale/tr/LC_MESSAGES/xchat-gnome.mo +share/locale/uk/LC_MESSAGES/xchat-gnome.mo +share/locale/vi/LC_MESSAGES/xchat-gnome.mo +share/locale/wa/LC_MESSAGES/xchat-gnome.mo +share/locale/zh_CN/LC_MESSAGES/xchat-gnome.mo +share/locale/zh_HK/LC_MESSAGES/xchat-gnome.mo +share/locale/zh_TW/LC_MESSAGES/xchat-gnome.mo +@dirrm share/xchat-gnome +@dirrm share/omf/xchat-gnome +@dirrm share/gnome/help/xchat-gnome/C/figures +@dirrm share/gnome/help/xchat-gnome/C +@dirrm share/gnome/help/xchat-gnome +@dirrm lib/xchat-gnome/plugins +@dirrm lib/xchat-gnome +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/tl/LC_MESSAGES +@dirrmtry share/locale/tl +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/jbo/LC_MESSAGES +@dirrmtry share/locale/jbo diff --git a/irc/xchat1/Makefile b/irc/xchat1/Makefile new file mode 100644 index 000000000..05597b5cc --- /dev/null +++ b/irc/xchat1/Makefile @@ -0,0 +1,89 @@ +# New ports collection makefile for: xchat +# Date created: 17 Nov 1998 +# Whom: Jim Mock <jim@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= xchat +PORTVERSION= 1.8.11 +PORTREVISION= 9 +CATEGORIES+= irc gnome ipv6 +MASTER_SITES= http://xchat.org/files/source/1.8/ \ + http://xchat.linuxpower.org/files/source/1.8/ + +MAINTAINER?= ports@FreeBSD.org +COMMENT= An X11 IRC client using the GTK+ toolkit, and optionally, GNOME + +# This port has a slave port japanese/xchat. Do not carelessly overwrite +# the variables or the targets defined in it. When you need to, please +# contact its maintainer. + +USE_X_PREFIX= yes +USE_BZIP2= yes +USE_GMAKE= yes +USE_ICONV= yes +USE_PERL5= yes +USE_GNOME= gtk12 +WANT_GNOME= yes +GNU_CONFIGURE= yes +# Assign with `+=' for slave ports +CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib -lintl -liconv" +CONFIGURE_ARGS+= --without-included-gettext \ + --enable-nls \ + --enable-ipv6 \ + --datadir="${PREFIX}/share" \ + --enable-perl +LATEST_LINK?= xchat1 + +.if defined(WITH_SSL) +USE_OPENSSL= YES +CONFIGURE_ARGS+= --enable-openssl +.endif + +.if defined(WITH_PYTHON) +USE_PYTHON= yes +CONFIGURE_ARGS+= --enable-python +.else +CONFIGURE_ARGS+= --disable-python +.endif + +.include <bsd.port.pre.mk> + +.if defined(WITH_SOCKS) +# Assign with `+=' for slave ports +BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5 +CONFIGURE_ARGS+= --enable-socks +.endif + +.if defined(WITH_TRANSPARENCY) +BUILD_DEPENDS+= ${LOCALBASE}/bin/gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf +CONFIGURE_ARGS+= --enable-gdk-pixbuf +.endif + +.if ${HAVE_GNOME:Mimlib}!="" +USE_GNOME= imlib +CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf \ + --enable-zvt +MAKE_ARGS= icondir="${PREFIX}/share/pixmaps" \ + utildir="${PREFIX}/share/gnome/apps/Internet" +.else +CONFIGURE_ARGS+= --disable-gnome --disable-zvt +.endif + +post-patch: + @${PERL} -pi \ + -e 's|-lpthread|${PTHREAD_LIBS}|g;' \ + ${WRKSRC}/configure + +post-install: +.if !defined(NOPORTDOCS) + @${ECHO_MSG} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat" + @${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat + ${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat + ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat + ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat +.endif + +.include <bsd.port.post.mk> diff --git a/irc/xchat1/distinfo b/irc/xchat1/distinfo new file mode 100644 index 000000000..0e2f124dc --- /dev/null +++ b/irc/xchat1/distinfo @@ -0,0 +1,3 @@ +MD5 (xchat-1.8.11.tar.bz2) = 951f5b2fe2d5deef08f7f519414072a1 +SHA256 (xchat-1.8.11.tar.bz2) = b3d457e014649e4b25ba5241e6dde600ffe2c8c6c4d462b8d4392b9f38b5abed +SIZE (xchat-1.8.11.tar.bz2) = 850453 diff --git a/irc/xchat1/files/patch-configure b/irc/xchat1/files/patch-configure new file mode 100644 index 000000000..1d6df50fa --- /dev/null +++ b/irc/xchat1/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig Wed Jan 15 23:38:08 2003 ++++ configure Wed Jan 15 23:38:08 2003 +@@ -6017,4 +6017,4 @@ + #include "confdefs.h" + #include <libintl.h> + extern int _nl_msg_cat_cntr; +-extern int *_nl_domain_bindings; ++extern int *libintl_nl_domain_bindings; +@@ -6031,2 +6031,2 @@ +-return (int) gettext ("") + _nl_msg_cat_cntr + *_nl_domain_bindings ++return (int) gettext ("") + _nl_msg_cat_cntr + *libintl_nl_domain_bindings diff --git a/irc/xchat1/files/patch-src::common::cfgfiles.c b/irc/xchat1/files/patch-src::common::cfgfiles.c new file mode 100644 index 000000000..d33af116d --- /dev/null +++ b/irc/xchat1/files/patch-src::common::cfgfiles.c @@ -0,0 +1,11 @@ +--- src/common/cfgfiles.c.orig Mon Mar 29 15:46:01 2004 ++++ src/common/cfgfiles.c Mon Mar 29 15:46:20 2004 +@@ -600,7 +600,7 @@ + + prefs.autoresume = 1; + prefs.show_away_once = 1; +- prefs.show_away_message = 1; ++ prefs.show_away_message = 0; + prefs.indent_pixels = 80; + prefs.dialog_indent_pixels = 80; + prefs.indent_nicks = 1; diff --git a/irc/xchat1/pkg-descr b/irc/xchat1/pkg-descr new file mode 100644 index 000000000..8fb4ab1a1 --- /dev/null +++ b/irc/xchat1/pkg-descr @@ -0,0 +1,8 @@ +XChat is a graphical IRC client. It requires a computer running a +UNIX-like OS and the X Window System (X11), and the GTK library. It can +also (optionally) take advantage of GNOME and use Perl and Python +scripts. + +WWW: http://xchat.org/ + +- Jim <jim@FreeBSD.org> diff --git a/irc/xchat1/pkg-plist b/irc/xchat1/pkg-plist new file mode 100644 index 000000000..54af6d2ff --- /dev/null +++ b/irc/xchat1/pkg-plist @@ -0,0 +1,55 @@ +bin/xchat +bin/xchat-text +%%NOGNOME:%%etc/X11/applnk/Internet/xchat.desktop +%%PORTDOCS%%share/doc/xchat/ChangeLog +%%PORTDOCS%%share/doc/xchat/README +%%PORTDOCS%%share/doc/xchat/xchat-1.html +%%PORTDOCS%%share/doc/xchat/xchat-10.html +%%PORTDOCS%%share/doc/xchat/xchat-2.html +%%PORTDOCS%%share/doc/xchat/xchat-3.html +%%PORTDOCS%%share/doc/xchat/xchat-4.html +%%PORTDOCS%%share/doc/xchat/xchat-5.html +%%PORTDOCS%%share/doc/xchat/xchat-6.html +%%PORTDOCS%%share/doc/xchat/xchat-7.html +%%PORTDOCS%%share/doc/xchat/xchat-8.html +%%PORTDOCS%%share/doc/xchat/xchat-9.html +%%PORTDOCS%%share/doc/xchat/xchat.html +%%PORTDOCS%%share/doc/xchat/xchat.sgml +%%GNOME:%%share/gnome/apps/Internet/xchat.desktop +%%GNOME:%%share/pixmaps/xchat.png +%%PORTDOCS%%@dirrm share/doc/xchat +share/locale/ca/LC_MESSAGES/xchat.mo +share/locale/cs/LC_MESSAGES/xchat.mo +share/locale/da/LC_MESSAGES/xchat.mo +share/locale/de/LC_MESSAGES/xchat.mo +share/locale/el/LC_MESSAGES/xchat.mo +share/locale/es/LC_MESSAGES/xchat.mo +share/locale/fi/LC_MESSAGES/xchat.mo +share/locale/fr/LC_MESSAGES/xchat.mo +share/locale/he/LC_MESSAGES/xchat.mo +share/locale/hu/LC_MESSAGES/xchat.mo +share/locale/it/LC_MESSAGES/xchat.mo +share/locale/ja/LC_MESSAGES/xchat.mo +share/locale/ko/LC_MESSAGES/xchat.mo +share/locale/lt/LC_MESSAGES/xchat.mo +share/locale/lv/LC_MESSAGES/xchat.mo +share/locale/nl/LC_MESSAGES/xchat.mo +share/locale/no/LC_MESSAGES/xchat.mo +share/locale/pl/LC_MESSAGES/xchat.mo +share/locale/pt/LC_MESSAGES/xchat.mo +share/locale/pt_BR/LC_MESSAGES/xchat.mo +share/locale/ro/LC_MESSAGES/xchat.mo +share/locale/ru/LC_MESSAGES/xchat.mo +share/locale/sk/LC_MESSAGES/xchat.mo +share/locale/sl/LC_MESSAGES/xchat.mo +share/locale/sr/LC_MESSAGES/xchat.mo +share/locale/sv/LC_MESSAGES/xchat.mo +share/locale/tr/LC_MESSAGES/xchat.mo +share/locale/uk/LC_MESSAGES/xchat.mo +share/locale/vi/LC_MESSAGES/xchat.mo +share/locale/zh_CN/LC_MESSAGES/xchat.mo +share/locale/zh_TW.Big5/LC_MESSAGES/xchat.mo +%%NOGNOME:%%share/pixmaps/xchat.png +%%NOGNOME:%%@dirrmtry etc/X11/applnk/Internet +%%NOGNOME:%%@dirrmtry etc/X11/applnk +%%NOGNOME:%%@dirrmtry etc/X11 diff --git a/japanese/im-ja/Makefile b/japanese/im-ja/Makefile new file mode 100644 index 000000000..ab00a04a8 --- /dev/null +++ b/japanese/im-ja/Makefile @@ -0,0 +1,77 @@ +# New ports collection makefile for: im-ja +# Date created: 2003/09/02 +# Whom: Jacques Vidrine <nectar@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= im-ja +PORTVERSION= 1.5 +PORTREVISION= 4 +CATEGORIES= japanese x11-toolkits +MASTER_SITES= http://im-ja.sourceforge.net/ + +MAINTAINER= ports@FreeBSD.org +COMMENT= A Japanese input module for GTK2 + +OPTIONS+= ANTHY "Use Anthy" on +OPTIONS+= CANNA "Use Canna" on +OPTIONS+= WNN "Use FreeWnn" on +OPTIONS+= GNOMEPANEL "Build GNOME Panel Applet" off + +USE_XLIB= yes +USE_GNOME= gconf2 gnomehack gnomeprefix gnometarget intlhack libglade2 +USE_PERL5_BUILD= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" + +MAN1= im-ja-conf.1 im-ja-xim-server.1 +GCONF_SCHEMAS= im-ja.schemas + +CPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include -DNO_MALLOC_H +LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib + +.include <bsd.port.pre.mk> + +.if defined(WITHOUT_ANTHY) +CONFIGURE_ARGS+= --disable-anthy +.else +LIB_DEPENDS+= anthy.1:${PORTSDIR}/japanese/anthy +.endif + +.if defined(WITHOUT_CANNA) +CONFIGURE_ARGS+= --disable-canna +.else +LIB_DEPENDS+= RKC.1:${PORTSDIR}/japanese/Canna +.endif + +.if defined(WITHOUT_WNN) +CONFIGURE_ARGS+= --disable-wnn +.else +LIB_DEPENDS+= wnn.0:${PORTSDIR}/japanese/FreeWnn-lib +.endif + +.if defined(WITH_GNOMEPANEL) +USE_GNOME+= gnomepanel +PLIST_SUB+= GNOMEPANEL="" +.else +CONFIGURE_ARGS+= --disable-gnome +PLIST_SUB+= GNOMEPANEL="@comment " +.endif + +post-patch: + ${FIND} ${WRKSRC} -name configure.in | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name aclocal.m4 | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name configure | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name config.h.in | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name Makefile.am | ${XARGS} ${TOUCH} + ${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${TOUCH} + @${REINPLACE_CMD} -e 's|$$(datadir)/gconf|$$(sysconfdir)/gconf|g' \ + ${WRKSRC}/data/Makefile.in + +post-install: + ${LOCALBASE}/bin/gtk-query-immodules-2.0 > \ + ${LOCALBASE}/etc/gtk-2.0/gtk.immodules + +.include <bsd.port.post.mk> diff --git a/japanese/im-ja/distinfo b/japanese/im-ja/distinfo new file mode 100644 index 000000000..e9f5b08b5 --- /dev/null +++ b/japanese/im-ja/distinfo @@ -0,0 +1,3 @@ +MD5 (im-ja-1.5.tar.gz) = 8986574373d03e685730e16d8f15ade9 +SHA256 (im-ja-1.5.tar.gz) = 96f4ed82706a873bdade99a934a1a66431f146758837ed0f007e3c145649f780 +SIZE (im-ja-1.5.tar.gz) = 905539 diff --git a/japanese/im-ja/files/patch-src_Makefile.in b/japanese/im-ja/files/patch-src_Makefile.in new file mode 100644 index 000000000..463635803 --- /dev/null +++ b/japanese/im-ja/files/patch-src_Makefile.in @@ -0,0 +1,15 @@ +--- src/Makefile.in.ORIG Mon Apr 12 08:00:59 2004 ++++ src/Makefile.in Mon Apr 12 08:01:22 2004 +@@ -512,12 +512,6 @@ + uninstall-recursive + + +-hiragana-convtable.h: hiragana-convtable.txt +- perl convtable.pl hiragana +-zenkaku-convtable.h: zenkaku-convtable.txt +- perl convtable.pl zenkaku +-halfkata-convtable.h: halfkata-convtable.txt +- perl convtable.pl halfkata + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: diff --git a/japanese/im-ja/files/patch-src_helper_helper-socket.c b/japanese/im-ja/files/patch-src_helper_helper-socket.c new file mode 100644 index 000000000..165515833 --- /dev/null +++ b/japanese/im-ja/files/patch-src_helper_helper-socket.c @@ -0,0 +1,11 @@ +--- src/helper/helper-socket.c.orig Tue Apr 12 20:10:13 2005 ++++ src/helper/helper-socket.c Thu Dec 29 23:05:18 2005 +@@ -25,6 +25,8 @@ + + #include <glib.h> + ++#include <sys/types.h> ++#include <sys/time.h> + #include <netinet/in.h> + #include <string.h> + #include <sys/types.h> diff --git a/japanese/im-ja/files/patch-src_xim_Makefile.in b/japanese/im-ja/files/patch-src_xim_Makefile.in new file mode 100644 index 000000000..504c00891 --- /dev/null +++ b/japanese/im-ja/files/patch-src_xim_Makefile.in @@ -0,0 +1,11 @@ +--- src/xim/Makefile.in.ORIG Mon Apr 12 07:58:51 2004 ++++ src/xim/Makefile.in Mon Apr 12 07:59:06 2004 +@@ -1663,7 +1663,7 @@ + + + IMdkit/libXimd.a : +- cd IMdkit; make ++ cd IMdkit; $(MAKE) + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. + .NOEXPORT: diff --git a/japanese/im-ja/pkg-descr b/japanese/im-ja/pkg-descr new file mode 100644 index 000000000..555020eae --- /dev/null +++ b/japanese/im-ja/pkg-descr @@ -0,0 +1,11 @@ +im-ja is a Japanese input module for GTK2. + +Currently supported input modes are: hiragana, katakana, half-width +katakana, zenkaku, Canna, FreeWnn, and Kanji character recognition +(based on Kanjipad). + +Conversion hotkeys, status window, preedit text colors, etc. can be +customized through a GUI. An optional applet is also included for the +gnome-panel which can be used to display and change the input method. + +WWW: http://im-ja.sourceforge.net/ diff --git a/japanese/im-ja/pkg-plist b/japanese/im-ja/pkg-plist new file mode 100644 index 000000000..407ffd2a5 --- /dev/null +++ b/japanese/im-ja/pkg-plist @@ -0,0 +1,48 @@ +bin/im-ja-conf +bin/im-ja-xim-server +lib/gtk-2.0/%%GTK2_VERSION%%/immodules/im-ja.la +lib/gtk-2.0/%%GTK2_VERSION%%/immodules/im-ja.so +%%GNOMEPANEL%%libdata/bonobo/servers/GNOME_ImJaApplet.server +%%GNOMEPANEL%%libexec/im-ja/im-ja-applet +libexec/im-ja/im-ja-helper +libexec/im-ja/kpengine +share/applications/im-ja.desktop +%%GNOMEPANEL%%share/gnome-2.0/ui/GNOME_ImJaApplet.xml +share/im-ja/01.unistrok +share/im-ja/02.unistrok +share/im-ja/03.unistrok +share/im-ja/04.unistrok +share/im-ja/05.unistrok +share/im-ja/06.unistrok +share/im-ja/07.unistrok +share/im-ja/08.unistrok +share/im-ja/09.unistrok +share/im-ja/10.unistrok +share/im-ja/11.unistrok +share/im-ja/12.unistrok +share/im-ja/13.unistrok +share/im-ja/14.unistrok +share/im-ja/15.unistrok +share/im-ja/16.unistrok +share/im-ja/17.unistrok +share/im-ja/18.unistrok +share/im-ja/19.unistrok +share/im-ja/20.unistrok +share/im-ja/21.unistrok +share/im-ja/22.unistrok +share/im-ja/23.unistrok +share/im-ja/im-ja-conf.glade +share/im-ja/im-ja-doc.html +share/im-ja/im-ja-symbols.txt +share/im-ja/radkfile.utf8 +share/pixmaps/im-ja-about.jpg +share/pixmaps/im-ja-capplet.png +share/locale/ca/LC_MESSAGES/im-ja.mo +share/locale/de/LC_MESSAGES/im-ja.mo +share/locale/es/LC_MESSAGES/im-ja.mo +share/locale/hu/LC_MESSAGES/im-ja.mo +share/locale/ja/LC_MESSAGES/im-ja.mo +@dirrm share/im-ja +@dirrm libexec/im-ja +@exec if [ -f %D/bin/gtk-query-immodules-2.0 ]; then %D/bin/gtk-query-immodules-2.0 > %D/etc/gtk-2.0/gtk.immodules; fi +@unexec if [ -f %D/bin/gtk-query-immodules-2.0 ]; then %D/bin/gtk-query-immodules-2.0 > %D/etc/gtk-2.0/gtk.immodules; fi diff --git a/japanese/stardict2-dict-ja/Makefile b/japanese/stardict2-dict-ja/Makefile new file mode 100644 index 000000000..21921acaa --- /dev/null +++ b/japanese/stardict2-dict-ja/Makefile @@ -0,0 +1,30 @@ +# Ports collection makefile for: stardict2-dict-ja +# Date created: 16 Jan 2004 +# Whom: LI Dong <ld@FreeBSD.org.cn> +# $FreeBSD$ +# + +PORTNAME= stardict2-dict-ja +PORTVERSION= 2.4.2 +PORTREVISION= 5 +CATEGORIES= japanese textproc +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= stardict +DISTFILES= stardict-jmdict-en-ja-${PORTVERSION}.tar.bz2 \ + stardict-jmdict-ja-en-${PORTVERSION}.tar.bz2 +DIST_SUBDIR= stardict + +MAINTAINER= ld@FreeBSD.org.cn +COMMENT= English-Japanese/Japanese-English dictionaries for StarDict + +RUN_DEPENDS= stardict:${PORTSDIR}/textproc/stardict2 + +NO_BUILD= yes +USE_BZIP2= yes + +do-install: + ${MKDIR} ${PREFIX}/share/stardict/dic/ + ${INSTALL_DATA} ${WRKDIR}/stardict-jmdict-en-ja-${PORTVERSION}/* ${PREFIX}/share/stardict/dic/ + ${INSTALL_DATA} ${WRKDIR}/stardict-jmdict-ja-en-${PORTVERSION}/* ${PREFIX}/share/stardict/dic/ + +.include <bsd.port.mk> diff --git a/japanese/stardict2-dict-ja/distinfo b/japanese/stardict2-dict-ja/distinfo new file mode 100644 index 000000000..700ab70c0 --- /dev/null +++ b/japanese/stardict2-dict-ja/distinfo @@ -0,0 +1,6 @@ +MD5 (stardict/stardict-jmdict-en-ja-2.4.2.tar.bz2) = e0f60d6acc4e3df6784805816b2e136f +SHA256 (stardict/stardict-jmdict-en-ja-2.4.2.tar.bz2) = 757fbe025bdfae9ae6716f20b3210eaada22380647b90056e1f78b6101cf080b +SIZE (stardict/stardict-jmdict-en-ja-2.4.2.tar.bz2) = 2343208 +MD5 (stardict/stardict-jmdict-ja-en-2.4.2.tar.bz2) = 2c574aef86a5d7bab45395d7e8ee7f6b +SHA256 (stardict/stardict-jmdict-ja-en-2.4.2.tar.bz2) = 1b2ed4e2844c08fd31e377b7d0e428a798fcfdbc8bd4c9492756d8f01c28d1a4 +SIZE (stardict/stardict-jmdict-ja-en-2.4.2.tar.bz2) = 4017230 diff --git a/japanese/stardict2-dict-ja/pkg-descr b/japanese/stardict2-dict-ja/pkg-descr new file mode 100644 index 000000000..8245de085 --- /dev/null +++ b/japanese/stardict2-dict-ja/pkg-descr @@ -0,0 +1,3 @@ +English-Japanese/Japanese-English dictionaries for StarDict. + +WWW: http://stardict.sourceforge.net/ diff --git a/japanese/stardict2-dict-ja/pkg-plist b/japanese/stardict2-dict-ja/pkg-plist new file mode 100644 index 000000000..2a36f21f5 --- /dev/null +++ b/japanese/stardict2-dict-ja/pkg-plist @@ -0,0 +1,7 @@ +share/stardict/dic/jmdict-en-ja.dict.dz +share/stardict/dic/jmdict-en-ja.idx +share/stardict/dic/jmdict-en-ja.ifo +share/stardict/dic/jmdict-ja-en.dict.dz +share/stardict/dic/jmdict-ja-en.idx +share/stardict/dic/jmdict-ja-en.ifo +@dirrmtry share/stardict/dic diff --git a/korean/nabi/Makefile b/korean/nabi/Makefile new file mode 100644 index 000000000..45011b7db --- /dev/null +++ b/korean/nabi/Makefile @@ -0,0 +1,29 @@ +# New ports collection makefile for: nabi +# Date created: 5 August 2003 +# Whom: Hye-Shik Chang <perky@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= nabi +PORTVERSION= 0.15 +PORTREVISION= 4 +CATEGORIES= korean gnome +MASTER_SITES= http://kldp.net/frs/download.php/1651/ + +MAINTAINER= perky@FreeBSD.org +COMMENT= Hangul X Input Method for Everywhere + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_GNOME= gnomeprefix gnomehack gtk20 +GNU_CONFIGURE= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib" + +.if defined(WITH_LAYOUT_390) +CONFIGURE_ARGS= --with-default-keyboard=39 +.elif defined(WITH_LAYOUT_3FINAL) +CONFIGURE_ARGS= --with-default-keyboard=3f +.endif + +.include <bsd.port.mk> diff --git a/korean/nabi/distinfo b/korean/nabi/distinfo new file mode 100644 index 000000000..79cce3d5f --- /dev/null +++ b/korean/nabi/distinfo @@ -0,0 +1,3 @@ +MD5 (nabi-0.15.tar.gz) = 7a440215e13e3efc285de6bfb1cb4687 +SHA256 (nabi-0.15.tar.gz) = f39ccc86e1a2a2ad08127a232d06da39be9a39ba8fb933afd5a04f501a20a39d +SIZE (nabi-0.15.tar.gz) = 633850 diff --git a/korean/nabi/pkg-descr b/korean/nabi/pkg-descr new file mode 100644 index 000000000..224a652ef --- /dev/null +++ b/korean/nabi/pkg-descr @@ -0,0 +1,6 @@ +Nabi is a X Hangul Input Method based on GTK+2. But, it can be +docked into GNOME panel or even KDE panel and it's able to be +used in any X11-based applications. + +-- +WWW: http://kldp.net/projects/nabi diff --git a/korean/nabi/pkg-plist b/korean/nabi/pkg-plist new file mode 100644 index 000000000..2c8289ad2 --- /dev/null +++ b/korean/nabi/pkg-plist @@ -0,0 +1,54 @@ +bin/nabi +share/nabi/candidate/nabi.txt +share/nabi/compose/default +share/nabi/compose/full +share/nabi/keyboard/2qwerty +share/nabi/keyboard/32qwerty +share/nabi/keyboard/39qwerty +share/nabi/keyboard/3fqwerty +share/nabi/keyboard/3sqwerty +share/nabi/nabi-about.png +share/nabi/nabi.png +share/nabi/nabi.svg +share/nabi/themes/KingSejong/README +share/nabi/themes/KingSejong/english.png +share/nabi/themes/KingSejong/hangul.png +share/nabi/themes/KingSejong/none.png +share/nabi/themes/MSWindows/english.png +share/nabi/themes/MSWindows/hangul.png +share/nabi/themes/MSWindows/none.png +share/nabi/themes/MSWindowsXP/english.png +share/nabi/themes/MSWindowsXP/hangul.png +share/nabi/themes/MSWindowsXP/none.png +share/nabi/themes/Mac/README +share/nabi/themes/Mac/english.png +share/nabi/themes/Mac/hangul.png +share/nabi/themes/Mac/none.png +share/nabi/themes/Onion/README +share/nabi/themes/Onion/english.png +share/nabi/themes/Onion/hangul.png +share/nabi/themes/Onion/none.png +share/nabi/themes/SimplyRed/english.png +share/nabi/themes/SimplyRed/hangul.png +share/nabi/themes/SimplyRed/none.png +share/nabi/themes/Tux/english.png +share/nabi/themes/Tux/hangul.png +share/nabi/themes/Tux/none.png +share/nabi/themes/keyboard/README +share/nabi/themes/keyboard/english.png +share/nabi/themes/keyboard/hangul.png +share/nabi/themes/keyboard/none.png +share/locale/ko/LC_MESSAGES/nabi.mo +@dirrm share/nabi/themes/KingSejong +@dirrm share/nabi/themes/MSWindows +@dirrm share/nabi/themes/MSWindowsXP +@dirrm share/nabi/themes/Mac +@dirrm share/nabi/themes/Onion +@dirrm share/nabi/themes/SimplyRed +@dirrm share/nabi/themes/Tux +@dirrm share/nabi/themes/keyboard +@dirrm share/nabi/candidate +@dirrm share/nabi/compose +@dirrm share/nabi/keyboard +@dirrm share/nabi/themes +@dirrm share/nabi diff --git a/mail/contact-lookup-applet/Makefile b/mail/contact-lookup-applet/Makefile new file mode 100644 index 000000000..88f58e39d --- /dev/null +++ b/mail/contact-lookup-applet/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: contact lookup applet +# Date created: 22 January 2004 +# Whom: kwm@rainbow-runner.nl +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= contact +PORTVERSION= 0.14 +PORTREVISION= 3 +CATEGORIES= mail gnome +MASTER_SITES= http://www.burtonini.com/computing/ +PKGNAMESUFFIX= -lookup-applet +DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} + +MAINTAINER= ports@FreeBSD.org +COMMENT= Gnome panel applet for easy Evolution contact book access + +USE_GMAKE= yes +USE_X_PREFIX= yes +USE_GETTEXT= yes +GNU_CONFIGURE= yes +USE_GNOME= gnomehier gnomeprefix gnomehack gnomepanel \ + evolutiondataserver gal2 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib" + +post-patch: + @${REINPLACE_CMD} -e 's|mkdir}"|mkdir} -p"|g' \ + ${WRKSRC}/install-sh + +.include <bsd.port.mk> diff --git a/mail/contact-lookup-applet/distinfo b/mail/contact-lookup-applet/distinfo new file mode 100644 index 000000000..71e0cdc5b --- /dev/null +++ b/mail/contact-lookup-applet/distinfo @@ -0,0 +1,3 @@ +MD5 (contact-lookup-applet-0.14.tar.gz) = 53b7d3a55ce7f50dae06f2c896cb1677 +SHA256 (contact-lookup-applet-0.14.tar.gz) = 2f5dfbe6f71b47698ec031f11ba2c21d53bcc148595f4fc8aa3278944931cb11 +SIZE (contact-lookup-applet-0.14.tar.gz) = 421627 diff --git a/mail/contact-lookup-applet/files/patch-src_contact-dialog.c b/mail/contact-lookup-applet/files/patch-src_contact-dialog.c new file mode 100644 index 000000000..52ab8653e --- /dev/null +++ b/mail/contact-lookup-applet/files/patch-src_contact-dialog.c @@ -0,0 +1,11 @@ +--- src/contact-dialog.c.orig Sat Sep 30 19:56:51 2006 ++++ src/contact-dialog.c Sat Sep 30 19:57:14 2006 +@@ -260,7 +260,7 @@ + + loader = gdk_pixbuf_loader_new (); + +- if (!gdk_pixbuf_loader_write (loader, photo->data, photo->length, NULL)) { ++ if (!gdk_pixbuf_loader_write (loader, photo->data.inlined.data, photo->data.inlined.length, NULL)) { + gtk_widget_hide (photo_frame); + } else if( (pixbuf = gdk_pixbuf_loader_get_pixbuf (loader)) != NULL ) { + GdkPixbuf *tmp; diff --git a/mail/contact-lookup-applet/files/patch-src_e-contact-entry.c b/mail/contact-lookup-applet/files/patch-src_e-contact-entry.c new file mode 100644 index 000000000..2ce6c8e62 --- /dev/null +++ b/mail/contact-lookup-applet/files/patch-src_e-contact-entry.c @@ -0,0 +1,13 @@ +--- src/e-contact-entry.c.orig Sat Sep 30 19:54:33 2006 ++++ src/e-contact-entry.c Sat Sep 30 19:56:09 2006 +@@ -261,8 +261,8 @@ + + loader = gdk_pixbuf_loader_new (); + +- if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data, +- photo->length, NULL)) ++ if (gdk_pixbuf_loader_write (loader, (guchar *)photo->data.inlined.data, ++ photo->data.inlined.length, NULL)) + pixbuf = gdk_pixbuf_loader_get_pixbuf (loader); + + if (pixbuf) { diff --git a/mail/contact-lookup-applet/pkg-descr b/mail/contact-lookup-applet/pkg-descr new file mode 100644 index 000000000..71e405abb --- /dev/null +++ b/mail/contact-lookup-applet/pkg-descr @@ -0,0 +1,4 @@ +Contact Lookup Applet is a gnome panel tool to look up people using the +Evolution data server backend. + +WWW: http://www.burtonini.com/ diff --git a/mail/contact-lookup-applet/pkg-plist b/mail/contact-lookup-applet/pkg-plist new file mode 100644 index 000000000..f3dce63b1 --- /dev/null +++ b/mail/contact-lookup-applet/pkg-plist @@ -0,0 +1,37 @@ +libdata/bonobo/servers/GNOME_ContactLookupApplet.server +libexec/contact-lookup-applet +share/lookup-applet/GNOME_ContactLookupApplet.xml +share/lookup-applet/contact-lookup-applet.glade +share/locale/bg/LC_MESSAGES/contact-lookup-applet.mo +share/locale/ca/LC_MESSAGES/contact-lookup-applet.mo +share/locale/cs/LC_MESSAGES/contact-lookup-applet.mo +share/locale/de/LC_MESSAGES/contact-lookup-applet.mo +share/locale/el/LC_MESSAGES/contact-lookup-applet.mo +share/locale/en_CA/LC_MESSAGES/contact-lookup-applet.mo +share/locale/es/LC_MESSAGES/contact-lookup-applet.mo +share/locale/eu/LC_MESSAGES/contact-lookup-applet.mo +share/locale/fr/LC_MESSAGES/contact-lookup-applet.mo +share/locale/hu/LC_MESSAGES/contact-lookup-applet.mo +share/locale/it/LC_MESSAGES/contact-lookup-applet.mo +share/locale/ja/LC_MESSAGES/contact-lookup-applet.mo +share/locale/lt/LC_MESSAGES/contact-lookup-applet.mo +share/locale/nb/LC_MESSAGES/contact-lookup-applet.mo +share/locale/ne/LC_MESSAGES/contact-lookup-applet.mo +share/locale/pa/LC_MESSAGES/contact-lookup-applet.mo +share/locale/pl/LC_MESSAGES/contact-lookup-applet.mo +share/locale/pt_BR/LC_MESSAGES/contact-lookup-applet.mo +share/locale/rw/LC_MESSAGES/contact-lookup-applet.mo +share/locale/sk/LC_MESSAGES/contact-lookup-applet.mo +share/locale/sq/LC_MESSAGES/contact-lookup-applet.mo +share/locale/sr/LC_MESSAGES/contact-lookup-applet.mo +share/locale/sr@Latn/LC_MESSAGES/contact-lookup-applet.mo +share/locale/sv/LC_MESSAGES/contact-lookup-applet.mo +share/locale/uk/LC_MESSAGES/contact-lookup-applet.mo +share/locale/vi/LC_MESSAGES/contact-lookup-applet.mo +share/locale/xh/LC_MESSAGES/contact-lookup-applet.mo +share/locale/zh_CN/LC_MESSAGES/contact-lookup-applet.mo +@dirrm share/lookup-applet +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw diff --git a/mail/mail-notification/Makefile b/mail/mail-notification/Makefile new file mode 100644 index 000000000..553606a47 --- /dev/null +++ b/mail/mail-notification/Makefile @@ -0,0 +1,107 @@ +# New ports collection makefile for: mail-notification +# Date created: 18 Sep 2003 +# Whom: Jean-Yves Lefort <jylefort@brutele.be> +# +# $FreeBSD$ +# + +PORTNAME= mail-notification +DISTVERSION= 4.0 +PORTREVISION= 3 +CATEGORIES= mail ipv6 +MASTER_SITES= ${MASTER_SITE_SAVANNAH} +MASTER_SITE_SUBDIR= mailnotify + +MAINTAINER= jylefort@FreeBSD.org +COMMENT= A mail notification for freedesktop.org-compliant system trays + +LIB_DEPENDS= notify:${PORTSDIR}/devel/libnotify + +USE_XLIB= yes +USE_GNOME= gnomeprefix gnomehack eel2 +GNU_CONFIGURE= yes +USE_GMAKE= yes +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" +GCONF_SCHEMAS= mail-notification.schemas +INSTALLS_OMF= yes +INSTALLS_ICONS= yes + +OPTIONS= MBOX "mbox support" on \ + MH "MH support" on \ + MAILDIR "Maildir support" on \ + POP3 "POP3 support" on \ + IMAP "IMAP support" on \ + SSL "SSL/TLS support" on \ + SASL "SASL authentication support" on \ + GMAIL "Gmail support" on \ + EVOLUTION "Evolution support" off \ + MOZILLA "Mozilla products support" on \ + SYLPHEED "Sylpheed support" on + +.include <bsd.port.pre.mk> + +.if defined(WITHOUT_MBOX) +CONFIGURE_ARGS+=--disable-mbox +.endif +.if defined(WITHOUT_MH) +CONFIGURE_ARGS+=--disable-mh +.endif +.if defined(WITHOUT_MAILDIR) +CONFIGURE_ARGS+=--disable-maildir +.endif +.if defined(WITHOUT_POP3) +CONFIGURE_ARGS+=--disable-pop3 +.endif +.if defined(WITHOUT_IMAP) +CONFIGURE_ARGS+=--disable-imap +.endif +.if defined(WITHOUT_POP3) && defined(WITHOUT_IMAP) +# only POP3 and IMAP use SSL and SASL +WITHOUT_SSL= yes +WITHOUT_SASL= yes +.endif +.if defined(WITHOUT_GMAIL) +CONFIGURE_ARGS+=--disable-gmail +PLIST_SUB+= GMAIL="@comment " +.else +PLIST_SUB+= GMAIL="" +.endif +.if defined(WITHOUT_EVOLUTION) +CONFIGURE_ARGS+=--disable-evolution +PLIST_SUB+= EVOLUTION="@comment " +.else +EVO_VERSION= 2.10 +BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/evolution-plugin-${EVO_VERSION}.pc:${PORTSDIR}/mail/evolution +RUN_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/evolution-plugin-${EVO_VERSION}.pc:${PORTSDIR}/mail/evolution +PLIST_SUB+= EVOLUTION="" EVO_VERSION=${EVO_VERSION} +.endif +.if defined(WITHOUT_MOZILLA) +CONFIGURE_ARGS+=--disable-mozilla +.endif +.if defined(WITHOUT_SYLPHEED) +CONFIGURE_ARGS+=--disable-sylpheed +.endif +.if defined(WITH_MBOX) \ + || defined(WITH_MH) \ + || defined(WITH_MAILDIR) \ + || defined(WITH_POP3) \ + || defined(WITH_IMAP) \ + || defined(WITH_MOZILLA) \ + || defined(WITH_SYLPHEED) +LIB_DEPENDS+= gmime-2.0.4:${PORTSDIR}/mail/gmime2 +.endif +.if defined(WITHOUT_SSL) +CONFIGURE_ARGS+=--disable-ssl +.else +# we can't use USE_OPENSSL=yes after including bsd.port.pre.mk +.include "${PORTSDIR}/Mk/bsd.openssl.mk" +.endif +.if defined(WITHOUT_SASL) +CONFIGURE_ARGS+=--disable-sasl +.else +LIB_DEPENDS+= sasl2:${PORTSDIR}/security/cyrus-sasl2 +.endif + +.include <bsd.port.post.mk> diff --git a/mail/mail-notification/distinfo b/mail/mail-notification/distinfo new file mode 100644 index 000000000..9c43b7b36 --- /dev/null +++ b/mail/mail-notification/distinfo @@ -0,0 +1,3 @@ +MD5 (mail-notification-4.0.tar.gz) = 0e10b221de4389fa9275fb7bf52dc010 +SHA256 (mail-notification-4.0.tar.gz) = e8f462420d1398d293ee3b9451e854c4ca9bf030111c38e3e4247cf2813db378 +SIZE (mail-notification-4.0.tar.gz) = 956007 diff --git a/mail/mail-notification/pkg-descr b/mail/mail-notification/pkg-descr new file mode 100644 index 000000000..227c14361 --- /dev/null +++ b/mail/mail-notification/pkg-descr @@ -0,0 +1,25 @@ +Mail Notification is a status icon (aka tray icon) that informs you if you +have new mail. + +It works with system trays implementing the freedesktop.org System Tray +Specification, such as the GNOME Panel Notification Area, the Xfce +Notification Area and the KDE System Tray. + +Mail Notification features include: + + * multiple mailbox support + * mbox, MH, Maildir, POP3, IMAP, Gmail, Evolution, Mozilla products + (Mozilla, SeaMonkey, Thunderbird, ...) and Sylpheed support + * SASL authentication support + * APOP authentication support + * SSL/TLS support + * automatic detection of mailbox format + * immediate notification (the status icon is updated immediately or + within seconds after a mailbox changes) + * message popups + * HIG 2.0 compliance + +WWW: http://www.nongnu.org/mailnotify/ + +- Jean-Yves Lefort +jylefort@FreeBSD.org diff --git a/mail/mail-notification/pkg-plist b/mail/mail-notification/pkg-plist new file mode 100644 index 000000000..3c978f6e4 --- /dev/null +++ b/mail/mail-notification/pkg-plist @@ -0,0 +1,48 @@ +bin/mail-notification +etc/xdg/autostart/mail-notification.desktop +libdata/bonobo/servers/GNOME_MailNotification.server +%%EVOLUTION%%libdata/bonobo/servers/GNOME_MailNotification_Evolution.server +share/applications/mail-notification-properties.desktop +share/gnome/help/mail-notification/C/documentation-license.xml +share/gnome/help/mail-notification/C/figures/mail.png +share/gnome/help/mail-notification/C/figures/mailbox-emblem-error.png +share/gnome/help/mail-notification/C/figures/mailbox-emblem-polled.png +share/gnome/help/mail-notification/C/figures/mailbox-emblem-unknown.png +share/gnome/help/mail-notification/C/mail-notification.xml +share/gnome/help/mail-notification/C/software-license.xml +%%GMAIL%%share/mail-notification/ui/gmail.png +share/mail-notification/ui/logo.png +share/mail-notification/ui/mailbox-properties-dialog.glade +share/mail-notification/ui/properties-dialog.glade +share/omf/mail-notification/mail-notification-C.omf +share/icons/hicolor/16x16/apps/mail-notification.png +share/icons/hicolor/22x22/apps/mail-notification.png +share/icons/hicolor/24x24/apps/mail-notification.png +share/icons/hicolor/32x32/apps/mail-notification.png +share/icons/hicolor/48x48/apps/mail-notification.png +share/icons/hicolor/scalable/apps/mail-notification.svg +share/locale/bg/LC_MESSAGES/mail-notification.mo +share/locale/ca/LC_MESSAGES/mail-notification.mo +share/locale/cs/LC_MESSAGES/mail-notification.mo +share/locale/de/LC_MESSAGES/mail-notification.mo +share/locale/fr/LC_MESSAGES/mail-notification.mo +share/locale/ja/LC_MESSAGES/mail-notification.mo +share/locale/nl/LC_MESSAGES/mail-notification.mo +share/locale/pl/LC_MESSAGES/mail-notification.mo +share/locale/pt/LC_MESSAGES/mail-notification.mo +share/locale/pt_BR/LC_MESSAGES/mail-notification.mo +share/locale/ru/LC_MESSAGES/mail-notification.mo +share/locale/sr/LC_MESSAGES/mail-notification.mo +share/locale/sr@Latn/LC_MESSAGES/mail-notification.mo +share/locale/sv/LC_MESSAGES/mail-notification.mo +%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/liborg-gnome-mail-notification.a +%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/liborg-gnome-mail-notification.la +%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/liborg-gnome-mail-notification.so +%%EVOLUTION%%lib/evolution/%%EVO_VERSION%%/plugins/org-gnome-mail-notification.eplug +@dirrm share/omf/mail-notification +@dirrm share/mail-notification/ui +@dirrm share/mail-notification +@dirrm share/gnome/help/mail-notification/C/figures +@dirrm share/gnome/help/mail-notification/C +@dirrm share/gnome/help/mail-notification +@dirrmtry etc/xdg/autostart diff --git a/mail/mboxcheck-applet/Makefile b/mail/mboxcheck-applet/Makefile new file mode 100644 index 000000000..d996da232 --- /dev/null +++ b/mail/mboxcheck-applet/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: xmms-status-plugin +# Date created: Sep 28, 2003 +# Whom: Pav Lucistnik <pav@oook.cz> +# +# $FreeBSD$ + +PORTNAME= mboxcheck-applet +PORTVERSION= 0.3 +PORTREVISION= 7 +CATEGORIES= mail +MASTER_SITES= http://perso.orange.fr/seb128/fichiers/ + +MAINTAINER= pav@FreeBSD.org +COMMENT= Mailbox checking applet for GNOME 2 + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-2.0/gnome/__init__.py:${PORTSDIR}/x11-toolkits/py-gnome2 + +USE_XLIB= yes +USE_PYTHON= yes +NO_BUILD= yes + +do-patch: + @${REINPLACE_CMD} 's|/usr/bin/python|${PYTHON_CMD}|' ${WRKSRC}/*.py + @${REINPLACE_CMD} 's|/usr/share/pixmaps/|${LOCALBASE}/share/pixmaps/|' ${WRKSRC}/mboxcheck.py + @${REINPLACE_CMD} 's|/usr/lib/gnome-panel/mboxcheck|${LOCALBASE}/libexec/mboxcheck.py|' ${WRKSRC}/GNOME_MboxCheck.server + @${REINPLACE_CMD} 's|mbox.png|mboxcheck.png|' ${WRKSRC}/GNOME_MboxCheck.server + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mboxcheck.py ${LOCALBASE}/libexec + ${INSTALL_SCRIPT} ${WRKSRC}/configmbox.py ${LOCALBASE}/libexec + ${INSTALL_DATA} ${WRKSRC}/mboxcheck.png ${LOCALBASE}/share/pixmaps + ${INSTALL_DATA} ${WRKSRC}/GNOME_MboxCheck.server ${LOCALBASE}/libdata/bonobo/servers + +.include <bsd.port.mk> diff --git a/mail/mboxcheck-applet/distinfo b/mail/mboxcheck-applet/distinfo new file mode 100644 index 000000000..4d2865f2c --- /dev/null +++ b/mail/mboxcheck-applet/distinfo @@ -0,0 +1,3 @@ +MD5 (mboxcheck-applet-0.3.tar.gz) = f781858c3483f7de42442d24beec63f8 +SHA256 (mboxcheck-applet-0.3.tar.gz) = 4cfe0e18abcbc837b65e93731aca4da96240d7812d05333a6c86264f6505b75d +SIZE (mboxcheck-applet-0.3.tar.gz) = 29574 diff --git a/mail/mboxcheck-applet/pkg-descr b/mail/mboxcheck-applet/pkg-descr new file mode 100644 index 000000000..49e4db55c --- /dev/null +++ b/mail/mboxcheck-applet/pkg-descr @@ -0,0 +1,4 @@ +Mboxcheck is a GNOME2 applet which check mails arrive in your mboxes. It uses +python and its gnome binding. + +WWW: http://perso.orange.fr/seb128/mboxcheck-en.html diff --git a/mail/mboxcheck-applet/pkg-plist b/mail/mboxcheck-applet/pkg-plist new file mode 100644 index 000000000..a3b2c7c3c --- /dev/null +++ b/mail/mboxcheck-applet/pkg-plist @@ -0,0 +1,4 @@ +libdata/bonobo/servers/GNOME_MboxCheck.server +libexec/mboxcheck.py +libexec/configmbox.py +share/pixmaps/mboxcheck.png diff --git a/mail/pmail/Makefile b/mail/pmail/Makefile new file mode 100644 index 000000000..f5b3ef1ca --- /dev/null +++ b/mail/pmail/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: pmail +# Date created: 27 July 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= pmail +PORTVERSION= 0.5.3 +PORTREVISION= 6 +CATEGORIES= mail python gnome +MASTER_SITES= # previous mastersites disappeared in 2001 and 2002 + +MAINTAINER= ports@FreeBSD.org +COMMENT= A GNOME/python email client + +BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-1.2/_gnomemodule.so:${PORTSDIR}/x11-toolkits/py-gnome +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/gtk-1.2/_gnomemodule.so:${PORTSDIR}/x11-toolkits/py-gnome + +USE_X_PREFIX= yes +USE_GMAKE= yes +USE_PYTHON= yes +USE_GNOME= yes +GNU_CONFIGURE= yes + +.include <bsd.port.mk> diff --git a/mail/pmail/distinfo b/mail/pmail/distinfo new file mode 100644 index 000000000..031a8a030 --- /dev/null +++ b/mail/pmail/distinfo @@ -0,0 +1,3 @@ +MD5 (pmail-0.5.3.tar.gz) = 7f1cfdbc3f2c9c70c342b987332fbcdf +SHA256 (pmail-0.5.3.tar.gz) = f704379e398d6f2316eb60764aa15019b8bb1c73d1189edf9dfdca814d51d117 +SIZE (pmail-0.5.3.tar.gz) = 149673 diff --git a/mail/pmail/files/patch-gtkf::gutil.py b/mail/pmail/files/patch-gtkf::gutil.py new file mode 100644 index 000000000..0b4ee8ac5 --- /dev/null +++ b/mail/pmail/files/patch-gtkf::gutil.py @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- gtkf/gutil.py 2001/08/03 07:14:48 1.1 ++++ gtkf/gutil.py 2001/08/03 07:14:57 +@@ -19,7 +19,7 @@ + # Boston, MA 02111-1307, USA. + + from gtk import * +-import gtk ++import gtk, sys + import GtkExtra + try: + import gnome diff --git a/mail/pmail/pkg-descr b/mail/pmail/pkg-descr new file mode 100644 index 000000000..83cfc4b0c --- /dev/null +++ b/mail/pmail/pkg-descr @@ -0,0 +1,24 @@ +pmail - GNOME/python email client +==================================== + +This an email client written (almost) entirely in python using pygtk and +gnome-python for the user interface. + +Major Features +==================================== + * Unlimited IMAP4 and POP3 accounts (tested with cyrus and uw IMAP) + * Unlimited MH Mailboxes + * Drag and Drop (attachments, and messages between folders) + * MIME reading and composition + * Sent/Drafs/Trash can be any folder in IMAP or MH + * CREATE/DELETE/RENAME IMAP and MH Folders + * IMAP Namespace/Subscription support + * IMAP messages cached for faster operation on slow connections + * Search IMAP folders + * POP messages can be stored in IMAP or MH folders + * HTML messages can be viewed with XmHTML or GtkMozilla + * Smart external attachment viewing + * Written in python and pygtk, easy to add new folder/server types + * READ/SEND mail with atttached mail messages + +WWW: http://www.scottbender.net/pmail/ diff --git a/mail/pmail/pkg-plist b/mail/pmail/pkg-plist new file mode 100644 index 000000000..71f0dca9f --- /dev/null +++ b/mail/pmail/pkg-plist @@ -0,0 +1,157 @@ +bin/pmail +share/pmail/Base.py +share/pmail/Base.pyc +share/pmail/Base.pyo +share/pmail/MessageList.py +share/pmail/MessageList.pyc +share/pmail/MessageList.pyo +share/pmail/MimeWriter.py +share/pmail/MimeWriter.pyc +share/pmail/MimeWriter.pyo +share/pmail/PmailGtkXmHTML.py +share/pmail/PmailGtkXmHTML.pyc +share/pmail/PmailGtkXmHTML.pyo +share/pmail/_pmailextensionsmodule.so +share/pmail/config/Config.py +share/pmail/config/Config.pyc +share/pmail/config/Config.pyo +share/pmail/config/__init__.py +share/pmail/config/__init__.pyc +share/pmail/config/__init__.pyo +share/pmail/config/paths.py +share/pmail/config/paths.pyc +share/pmail/config/paths.pyo +share/pmail/dumpconfig.py +share/pmail/dumpconfig.pyc +share/pmail/dumpconfig.pyo +share/pmail/gtkf/Compose.py +share/pmail/gtkf/Compose.pyc +share/pmail/gtkf/Compose.pyo +share/pmail/gtkf/FrontEnd.py +share/pmail/gtkf/FrontEnd.pyc +share/pmail/gtkf/FrontEnd.pyo +share/pmail/gtkf/GladeWindow.py +share/pmail/gtkf/GladeWindow.pyc +share/pmail/gtkf/GladeWindow.pyo +share/pmail/gtkf/MainWindow.py +share/pmail/gtkf/MainWindow.pyc +share/pmail/gtkf/MainWindow.pyo +share/pmail/gtkf/MessageList.py +share/pmail/gtkf/MessageList.pyc +share/pmail/gtkf/MessageList.pyo +share/pmail/gtkf/MozillaMsgWindow.py +share/pmail/gtkf/MozillaMsgWindow.pyc +share/pmail/gtkf/MozillaMsgWindow.pyo +share/pmail/gtkf/MsgWindow.py +share/pmail/gtkf/MsgWindow.pyc +share/pmail/gtkf/MsgWindow.pyo +share/pmail/gtkf/Preferences.py +share/pmail/gtkf/Preferences.pyc +share/pmail/gtkf/Preferences.pyo +share/pmail/gtkf/ProgressBar.py +share/pmail/gtkf/ProgressBar.pyc +share/pmail/gtkf/ProgressBar.pyo +share/pmail/gtkf/SMessageWindow.py +share/pmail/gtkf/SMessageWindow.pyc +share/pmail/gtkf/SMessageWindow.pyo +share/pmail/gtkf/SearchMessages.py +share/pmail/gtkf/SearchMessages.pyc +share/pmail/gtkf/SearchMessages.pyo +share/pmail/gtkf/Spell.py +share/pmail/gtkf/Spell.pyc +share/pmail/gtkf/Spell.pyo +share/pmail/gtkf/TextMsgWindow.py +share/pmail/gtkf/TextMsgWindow.pyc +share/pmail/gtkf/TextMsgWindow.pyo +share/pmail/gtkf/TreeWindow.py +share/pmail/gtkf/TreeWindow.pyc +share/pmail/gtkf/TreeWindow.pyo +share/pmail/gtkf/XmHTMLMsgWindow.py +share/pmail/gtkf/XmHTMLMsgWindow.pyc +share/pmail/gtkf/XmHTMLMsgWindow.pyo +share/pmail/gtkf/__init__.py +share/pmail/gtkf/__init__.pyc +share/pmail/gtkf/__init__.pyo +share/pmail/gtkf/all.glade +share/pmail/gtkf/gnomeapp.glade +share/pmail/gtkf/gutil.py +share/pmail/gtkf/gutil.pyc +share/pmail/gtkf/gutil.pyo +share/pmail/gtkf/mygnome.py +share/pmail/gtkf/mygnome.pyc +share/pmail/gtkf/mygnome.pyo +share/pmail/gtkf/update.py +share/pmail/gtkf/update.pyc +share/pmail/gtkf/update.pyo +share/pmail/imaplib.py +share/pmail/imaplib.pyc +share/pmail/imaplib.pyo +share/pmail/mail/IMAP.py +share/pmail/mail/IMAP.pyc +share/pmail/mail/IMAP.pyo +share/pmail/mail/MH.py +share/pmail/mail/MH.pyc +share/pmail/mail/MH.pyo +share/pmail/mail/Mailbox.py +share/pmail/mail/Mailbox.pyc +share/pmail/mail/Mailbox.pyo +share/pmail/mail/Message.py +share/pmail/mail/Message.pyc +share/pmail/mail/Message.pyo +share/pmail/mail/NewMessage.py +share/pmail/mail/NewMessage.pyc +share/pmail/mail/NewMessage.pyo +share/pmail/mail/POP.py +share/pmail/mail/POP.pyc +share/pmail/mail/POP.pyo +share/pmail/mail/Plugin.py +share/pmail/mail/Plugin.pyc +share/pmail/mail/Plugin.pyo +share/pmail/mail/SearchCriteria.py +share/pmail/mail/SearchCriteria.pyc +share/pmail/mail/SearchCriteria.pyo +share/pmail/mail/Source.py +share/pmail/mail/Source.pyc +share/pmail/mail/Source.pyo +share/pmail/mail/SpoolFile.py +share/pmail/mail/SpoolFile.pyc +share/pmail/mail/SpoolFile.pyo +share/pmail/mail/__init__.py +share/pmail/mail/__init__.pyc +share/pmail/mail/__init__.pyo +share/pmail/mail/config_hooks.py +share/pmail/mail/config_hooks.pyc +share/pmail/mail/config_hooks.pyo +share/pmail/mail/pmailmailbox.py +share/pmail/mail/pmailmailbox.pyc +share/pmail/mail/pmailmailbox.pyo +share/pmail/mail/util.py +share/pmail/mail/util.pyc +share/pmail/mail/util.pyo +share/pmail/main.py +share/pmail/main.pyc +share/pmail/main.pyo +share/pmail/plugins/Filters.py +share/pmail/plugins/Filters.pyc +share/pmail/plugins/Filters.pyo +share/pmail/plugins/HtmlViewer.py +share/pmail/plugins/HtmlViewer.pyc +share/pmail/plugins/HtmlViewer.pyo +share/pmail/plugins/__init__.py +share/pmail/plugins/__init__.pyc +share/pmail/plugins/__init__.pyo +share/pmail/plugins/filters.glade +share/pmail/plugins/myf.py +share/pmail/plugins/myf.pyc +share/pmail/plugins/myf.pyo +share/pmail/pmailmimify.py +share/pmail/pmailmimify.pyc +share/pmail/pmailmimify.pyo +share/pmail/posixfile.py +share/pmail/posixfile.pyc +share/pmail/posixfile.pyo +@dirrm share/pmail/plugins +@dirrm share/pmail/mail +@dirrm share/pmail/gtkf +@dirrm share/pmail/config +@dirrm share/pmail |