summaryrefslogtreecommitdiff
path: root/mail/tkrat2
diff options
context:
space:
mode:
Diffstat (limited to 'mail/tkrat2')
-rw-r--r--mail/tkrat2/Makefile74
-rw-r--r--mail/tkrat2/distinfo2
-rw-r--r--mail/tkrat2/files/patch-configure11
-rw-r--r--mail/tkrat2/files/patch-lib_Makefile.in13
-rw-r--r--mail/tkrat2/files/patch-misc_Makefile.in13
-rw-r--r--mail/tkrat2/files/patch-ssl11
-rw-r--r--mail/tkrat2/files/patch-tkrat_Makefile.in32
-rw-r--r--mail/tkrat2/files/patch-util_Makefile.in13
-rw-r--r--mail/tkrat2/files/ratatoskrc26
-rw-r--r--mail/tkrat2/pkg-descr23
-rw-r--r--mail/tkrat2/pkg-plist88
11 files changed, 0 insertions, 306 deletions
diff --git a/mail/tkrat2/Makefile b/mail/tkrat2/Makefile
deleted file mode 100644
index a8ad84690248..000000000000
--- a/mail/tkrat2/Makefile
+++ /dev/null
@@ -1,74 +0,0 @@
-# Created by: Stephen J. Roznowski <sjr@home.net>
-# $FreeBSD$
-
-PORTNAME= tkrat
-PORTVERSION= 2.1.5
-PORTREVISION= 5
-CATEGORIES= mail tk
-MASTER_SITES= http://tkrat.org/downloads/stable/ \
- ftp://ftp.tkrat.org/pub/tkrat/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Mail user agent for X with a Tcl/Tk user interface
-
-DEPRECATED= Tcl/Tk 8.4 is no longer maintained, please use 8.5+
-EXPIRATION_DATE= 2017-11-20
-
-LICENSE= BSD3CLAUSE
-
-LIB_DEPENDS= libtcl84.so:lang/tcl84 \
- libtk84.so:x11-toolkits/tk84 \
- libc-client4.so:mail/cclient
-
-BROKEN_armv6= fails to link: ./ratatosk2.1.so: Undefined symbol "__aeabi_uidivmod"
-BROKEN_sparc64= fails to build
-
-USES= ssl
-USE_XORG= x11 xt
-
-GNU_CONFIGURE= yes
-
-CONFIGURE_ARGS= --with-tcl-config=${PREFIX}/lib/tcl8.4 \
- --with-tk-config=${PREFIX}/lib/tk8.4 \
- --with-tcl-include=${PREFIX}/include/tcl8.4 \
- --with-tk-include=${PREFIX}/include/tk8.4 \
- --with-ssl-dir=${OPENSSLBASE} \
- --prefix=${PREFIX}
-MAKE_ARGS+= -j2 -B
-
-OPTIONS_DEFINE= DOCS
-
-DOCFILES= CONFIGURATION COPYRIGHT README doc/interface doc/userprocs \
- doc/userproc.example
-
-post-patch:
- @${REINPLACE_CMD} '-e s|@INSTALL_PREFIX@|${STAGEDIR}${PREFIX}|g' \
- ${WRKSRC}/lib/Makefile.in ${WRKSRC}/util/Makefile.in \
- ${WRKSRC}/tkrat/Makefile.in ${WRKSRC}/misc/Makefile.in \
- ${WRKSRC}/doc/Makefile.in
- @${REINPLACE_CMD} '-e s|@libdir@|/lib|g' \
- ${WRKSRC}/lib/Makefile.in ${WRKSRC}/util/Makefile.in
- @${REINPLACE_CMD} '-e s|@datadir@|/share|g' \
- ${WRKSRC}/util/Makefile.in ${WRKSRC}/tkrat/Makefile.in \
- ${WRKSRC}/misc/Makefile.in
- @${REINPLACE_CMD} '-e s|@bindir@|/bin|g' ${WRKSRC}/tkrat/Makefile.in
- @${REINPLACE_CMD} '-e s|@mandir@|/man|g' ${WRKSRC}/doc/Makefile.in
- @${REINPLACE_CMD} -e 's|/usr/include/openssl|$$(SSLDIR)|g' \
- ${WRKSRC}/imap/src/osdep/unix/Makefile
- @${REINPLACE_CMD} -e 's|SSLDIR=/usr SSLINCLUDE=/usr/include/openssl|SSLDIR=${OPENSSLBASE} SSLINCLUDE=${OPENSSLINC}|g' \
- ${WRKSRC}/imap/Makefile
-
-do-install-DOCS-on:
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
-.for f in ${DOCFILES}
- ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
-.endfor
-
-post-install:
- @${MKDIR} ${STAGEDIR}${PREFIX}/lib/ratatosk
- ${INSTALL_DATA} ${FILESDIR}/ratatoskrc \
- ${STAGEDIR}${PREFIX}/lib/ratatosk
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/tkrat/ratatosk2.1.so
- ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/tkrat/blt_busy1.0.so
-
-.include <bsd.port.mk>
diff --git a/mail/tkrat2/distinfo b/mail/tkrat2/distinfo
deleted file mode 100644
index 778d07be95c0..000000000000
--- a/mail/tkrat2/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (tkrat-2.1.5.tar.gz) = 7cc3cbe934a3be4ae760675fc3fe0a3bfb99f8c38edcea4638ec5708161dd084
-SIZE (tkrat-2.1.5.tar.gz) = 2359287
diff --git a/mail/tkrat2/files/patch-configure b/mail/tkrat2/files/patch-configure
deleted file mode 100644
index cc3b9a339c9c..000000000000
--- a/mail/tkrat2/files/patch-configure
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.orig 2011-12-28 10:48:15.000000000 +0800
-+++ configure 2011-12-28 10:49:54.000000000 +0800
-@@ -2764,7 +2764,7 @@
- # results, and the version is kept in special file).
-
- if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
-- system=MP-RAS-`awk '{print $3}' /etc/.relid'`
-+ system=MP-RAS-`awk '{print $3}' /etc/.relid`
- fi
- if test "`uname -s`" = "AIX" ; then
- system=AIX-`uname -v`.`uname -r`
diff --git a/mail/tkrat2/files/patch-lib_Makefile.in b/mail/tkrat2/files/patch-lib_Makefile.in
deleted file mode 100644
index a1247fedcaa2..000000000000
--- a/mail/tkrat2/files/patch-lib_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- lib/Makefile.in.orig 2014-07-05 01:55:25.030451755 +0600
-+++ lib/Makefile.in 2014-07-05 02:00:25.024429652 +0600
-@@ -24,8 +24,8 @@
- exec_prefix = @exec_prefix@
- MAN_DIR = @mandir@
- BIN_DIR = @bindir@
-- DATA_DIR = @datadir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-- LIB_DIR = @libdir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-+ DATA_DIR = @datadir@/tkrat
-+ LIB_DIR = @libdir@/tkrat
-
- # Pointer to the imap c-client directory
- C_CLIENT = ${TOP_DIR}/imap/c-client
diff --git a/mail/tkrat2/files/patch-misc_Makefile.in b/mail/tkrat2/files/patch-misc_Makefile.in
deleted file mode 100644
index 7cf71ed78b2d..000000000000
--- a/mail/tkrat2/files/patch-misc_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- misc/Makefile.in.orig 2014-07-05 02:28:16.826314579 +0600
-+++ misc/Makefile.in 2014-07-05 02:28:45.627312853 +0600
-@@ -11,8 +11,8 @@
- exec_prefix = @exec_prefix@
- MAN_DIR = @mandir@
- BIN_DIR = @bindir@
-- DATA_DIR = @datadir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-- LIB_DIR = @libdir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-+ DATA_DIR = @datadir@/tkrat
-+ LIB_DIR = @libdir@/tkrat
-
- SHELL = /bin/sh
- VERSION = @VERSION@
diff --git a/mail/tkrat2/files/patch-ssl b/mail/tkrat2/files/patch-ssl
deleted file mode 100644
index 21138619d0e2..000000000000
--- a/mail/tkrat2/files/patch-ssl
+++ /dev/null
@@ -1,11 +0,0 @@
---- imap/src/osdep/unix/Makefile.orig Thu Jun 9 18:46:59 2005
-+++ imap/src/osdep/unix/Makefile Thu Jun 9 18:47:26 2005
-@@ -32,7 +32,7 @@
- SSLDIR=/usr/local/ssl
- SSLCERTS=$(SSLDIR)/certs
- SSLKEYS=$(SSLCERTS)
--SSLINCLUDE=$(SSLDIR)/include
-+SSLINCLUDE=/usr/include/openssl
- SSLLIB=$(SSLDIR)/lib
-
- SSLCRYPTO=-lcrypto
diff --git a/mail/tkrat2/files/patch-tkrat_Makefile.in b/mail/tkrat2/files/patch-tkrat_Makefile.in
deleted file mode 100644
index d01c2c368fd0..000000000000
--- a/mail/tkrat2/files/patch-tkrat_Makefile.in
+++ /dev/null
@@ -1,32 +0,0 @@
---- tkrat/Makefile.in.orig 2003-11-03 22:38:15.000000000 -0800
-+++ tkrat/Makefile.in 2014-07-20 14:46:06.000000000 -0700
-@@ -13,8 +13,8 @@
- exec_prefix = @exec_prefix@
- MAN_DIR = @mandir@
- BIN_DIR = @bindir@
-- DATA_DIR = @datadir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-- LIB_DIR = @libdir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-+ DATA_DIR = @datadir@/tkrat
-+ LIB_DIR = @libdir@/tkrat
- sysconfdir = @sysconfdir@
-
- INSTALL = @INSTALL@
-@@ -84,15 +84,15 @@
- rm -f $@
- echo "#!${WISH}" >$@
- echo "# This file automatically generated `date`" >>$@
-- echo "set env(LIBDIR) ${DATA_DIR}" >>$@
-+ echo "set env(LIBDIR) ${prefix}${DATA_DIR}" >>$@
- echo "set env(CONFIG_DIR) ${sysconfdir}/ratatosk" >>$@
- echo "set env(COMPRESS) ${COMPRESS}" >>$@
- echo "set env(CSUFFIX) ${CSUFFIX}" >>$@
- echo "set env(SSH) \"${SSH}\"" >>$@
-- echo "foreach dir {${DATA_DIR}/util ${LIB_DIR}} {" >>$@
-+ echo "foreach dir {${prefix}${DATA_DIR}/util ${LIB_DIR}} {" >>$@
- echo ' source $$dir/pkgIndex.tcl' >>$@
- echo "}" >>$@
-- echo "set auto_path [concat ${DATA_DIR} \$$auto_path]" >>$@
-+ echo "set auto_path [concat ${prefix}${DATA_DIR} \$$auto_path]" >>$@
- echo "TkRatClientStart" >>$@
-
- backup:
diff --git a/mail/tkrat2/files/patch-util_Makefile.in b/mail/tkrat2/files/patch-util_Makefile.in
deleted file mode 100644
index 83476c966727..000000000000
--- a/mail/tkrat2/files/patch-util_Makefile.in
+++ /dev/null
@@ -1,13 +0,0 @@
---- util/Makefile.in.orig 2014-07-05 02:10:52.166388201 +0600
-+++ util/Makefile.in 2014-07-05 02:11:35.955384041 +0600
-@@ -37,8 +37,8 @@
- exec_prefix = @exec_prefix@
- MAN_DIR = @mandir@
- BIN_DIR = @bindir@
-- DATA_DIR = @datadir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-- LIB_DIR = @libdir@/`echo tkrat${VERSION} | sed '${TRANSFORM}'`
-+ DATA_DIR = @datadir@/tkrat
-+ LIB_DIR = @libdir@/tkrat
-
- CC = @CC@
- INCLUDES = @TCL_INCLUDE@ @XINCLUDES@
diff --git a/mail/tkrat2/files/ratatoskrc b/mail/tkrat2/files/ratatoskrc
deleted file mode 100644
index 7136901a0336..000000000000
--- a/mail/tkrat2/files/ratatoskrc
+++ /dev/null
@@ -1,26 +0,0 @@
-# Minimum defaults or important defaults...
-#
-# See the file /usr/local/share/doc/tkrat/CONFIGURATION for a more
-# detailed explanation of these.
-#
-
-# Which domain we should pretend we are from
-set option(masquerade_as) {}
-
-# Which domain we are in
-set option(domain) {}
-
-# Should we sent even though we have a bad hostname?
-set option(force_send) 0
-
-# Command to get default folder
-set option(default_folder) "INBOX file {} /var/mail/$env(USER)"
-
-# Default sending program
-set option(sendprog) /usr/sbin/sendmail
-
-# Can the sending program handle eightbit data
-set option(sendprog_8bit) true
-
-# Use the sending program, or use smtp
-set option(sendprot) prog
diff --git a/mail/tkrat2/pkg-descr b/mail/tkrat2/pkg-descr
deleted file mode 100644
index 25faa152b387..000000000000
--- a/mail/tkrat2/pkg-descr
+++ /dev/null
@@ -1,23 +0,0 @@
-Excerpted from the BLURB file...
-
-TkRat is a graphical Mail User Agent (MUA) which handles MIME, POP3
-and IMAP4.1. It is mainly written in C, but the user interface is
-done in Tcl/Tk. The following is a non-exhaustive list of the
-capabilities:
-
- * Multilingual interface (English, Swedish and Italian included)
- * MIME support: text/plain, image/gif and message/rfc822
- including multipart/mixed and multipart/alternate,
- Quoted-printable and Base64 encoding.
- * Supports MIME in headers
- * Composing: (tk's text widget plus many extensions) or an
- external editor of your choice.
- * Message database
- * Virtual folders: mbox, mh, IMAP or POP
- * Message hold: suspend the composing, continued later
- * Watcher: When the program is iconified it checks the mailbox
- * Uses sendmail OR direct SMTP or other MA
- * Supports Delivery Status Notifications - DSN ESMTP sendmail-8.7
- * Supports PGP/MIME and "old-style PGP message receipt"
-
-WWW: http://www.tkrat.org/
diff --git a/mail/tkrat2/pkg-plist b/mail/tkrat2/pkg-plist
deleted file mode 100644
index 8227cc3efe57..000000000000
--- a/mail/tkrat2/pkg-plist
+++ /dev/null
@@ -1,88 +0,0 @@
-bin/tkrat
-lib/ratatosk/ratatoskrc
-lib/tkrat/blt_busy1.0.so
-lib/tkrat/pkgIndex.tcl
-lib/tkrat/ratatosk2.1.so
-%%PORTDOCS%%%%DOCSDIR%%/CONFIGURATION
-%%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/interface
-%%PORTDOCS%%%%DOCSDIR%%/userproc.example
-%%PORTDOCS%%%%DOCSDIR%%/userprocs
-%%DATADIR%%/alias.tcl
-%%DATADIR%%/client.tcl
-%%DATADIR%%/compose.tcl
-%%DATADIR%%/convert.tcl
-%%DATADIR%%/dbase.tcl
-%%DATADIR%%/dialog.tcl
-%%DATADIR%%/dsn.tcl
-%%DATADIR%%/exp.tcl
-%%DATADIR%%/folder.tcl
-%%DATADIR%%/font.tcl
-%%DATADIR%%/help.tcl
-%%DATADIR%%/html.tcl
-%%DATADIR%%/info.tcl
-%%DATADIR%%/keydef.tcl
-%%DATADIR%%/languages.tcl
-%%DATADIR%%/mime.tcl
-%%DATADIR%%/options.tcl
-%%DATADIR%%/pgp.tcl
-%%DATADIR%%/pkgIndex.tcl
-%%DATADIR%%/preferences.tcl
-%%DATADIR%%/print.tcl
-%%DATADIR%%/show.tcl
-%%DATADIR%%/source.tcl
-%%DATADIR%%/start.tcl
-%%DATADIR%%/tclIndex
-%%DATADIR%%/text_balText_de.tcl
-%%DATADIR%%/text_balText_en.tcl
-%%DATADIR%%/text_balText_fr.tcl
-%%DATADIR%%/text_balText_it.tcl
-%%DATADIR%%/text_balText_pl.tcl
-%%DATADIR%%/text_balText_pt.tcl
-%%DATADIR%%/text_balText_sr.tcl
-%%DATADIR%%/text_balText_sv.tcl
-%%DATADIR%%/text_changes_de.tcl
-%%DATADIR%%/text_changes_en.tcl
-%%DATADIR%%/text_changes_fr.tcl
-%%DATADIR%%/text_changes_it.tcl
-%%DATADIR%%/text_changes_pl.tcl
-%%DATADIR%%/text_changes_pt.tcl
-%%DATADIR%%/text_changes_sr.tcl
-%%DATADIR%%/text_changes_sv.tcl
-%%DATADIR%%/text_help_de.tcl
-%%DATADIR%%/text_help_en.tcl
-%%DATADIR%%/text_help_fr.tcl
-%%DATADIR%%/text_help_it.tcl
-%%DATADIR%%/text_help_pl.tcl
-%%DATADIR%%/text_help_pt.tcl
-%%DATADIR%%/text_help_sr.tcl
-%%DATADIR%%/text_help_sv.tcl
-%%DATADIR%%/text_t_de.tcl
-%%DATADIR%%/text_t_en.tcl
-%%DATADIR%%/text_t_fr.tcl
-%%DATADIR%%/text_t_it.tcl
-%%DATADIR%%/text_t_pl.tcl
-%%DATADIR%%/text_t_pt.tcl
-%%DATADIR%%/text_t_sr.tcl
-%%DATADIR%%/text_t_sv.tcl
-%%DATADIR%%/tkrat.xbm
-%%DATADIR%%/tkrat.xpm
-%%DATADIR%%/tkrat_small.xbm
-%%DATADIR%%/tkrat_smallmask.xbm
-%%DATADIR%%/tkratmask.xbm
-%%DATADIR%%/util/pkgIndex.tcl
-%%DATADIR%%/util/rat_balloon.tcl
-%%DATADIR%%/util/rat_ed.tcl
-%%DATADIR%%/util/rat_edit.tcl
-%%DATADIR%%/util/rat_enriched.tcl
-%%DATADIR%%/util/rat_fbox.tcl
-%%DATADIR%%/util/rat_ispell.tcl
-%%DATADIR%%/util/rat_list.tcl
-%%DATADIR%%/util/rat_textlist.tcl
-%%DATADIR%%/util/rat_tree.tcl
-%%DATADIR%%/vfolder.tcl
-%%DATADIR%%/vfolderdef.tcl
-%%DATADIR%%/watcher.tcl
-%%DATADIR%%/winctl.tcl
-man/man1/tkrat.1.gz