aboutsummaryrefslogtreecommitdiff
path: root/mail/biabam
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:37:31 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-05-02 07:37:31 +0000
commitb792cc5809657214baafaf9e6c91c0f2c60ae2d3 (patch)
tree2819644bae64c8f4c44733d6d7dcbf578855d2d2 /mail/biabam
parent362cb389be3b570d1c92fc52e966116cfbbfe25c (diff)
downloadports-b792cc5809657214baafaf9e6c91c0f2c60ae2d3.tar.gz
ports-b792cc5809657214baafaf9e6c91c0f2c60ae2d3.zip
remove unmaintained expired ports from mail
2011-05-01 mail/biabam: Upstream disapear and distfile is no more available 2011-05-01 mail/crashecho: Upstream disapear and distfile is no more available 2011-05-01 mail/drbl: Upstream disapear and distfile is no more available 2011-05-01 mail/glbiff: Upstream disapear and distfile is no more available 2011-05-01 mail/libsrs: Upstream disapear and distfile is no more available 2011-05-01 mail/majorcool: Upstream disapear and distfile is no more available 2011-05-01 mail/messagewall: Upstream disapear and distfile is no more available 2011-05-01 mail/pgen: Upstream disapear and distfile is no more available 2011-05-01 mail/regm: Upstream disapear and distfile is no more available 2011-05-01 mail/ricochet: Upstream disapear and distfile is no more available 2011-05-01 mail/smtpclient: Upstream disapear and distfile is no more available 2011-05-01 mail/smtpproxy: Upstream disapear and distfile is no more available 2011-05-01 mail/solidpop3d: Upstream disapear and distfile is no more available 2011-05-01 mail/spruce: Upstream disapear and distfile is no more available 2011-05-01 mail/teapop-devel: Upstream disapear and distfile is no more available 2011-05-01 mail/wmmail: Upstream disapear and distfile is no more available 2011-05-01 mail/wmmultipop3: Upstream disapear and distfile is no more available 2011-05-01 mail/wmymail: Upstream disapear and distfile is no more available 2011-05-01 mail/xpbiff: Upstream disapear and distfile is no more available
Notes
Notes: svn path=/head/; revision=273455
Diffstat (limited to 'mail/biabam')
-rw-r--r--mail/biabam/Makefile32
-rw-r--r--mail/biabam/distinfo3
-rw-r--r--mail/biabam/files/patch-biabam83
-rw-r--r--mail/biabam/pkg-descr14
4 files changed, 0 insertions, 132 deletions
diff --git a/mail/biabam/Makefile b/mail/biabam/Makefile
deleted file mode 100644
index ddea43b705bc..000000000000
--- a/mail/biabam/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-# New ports collection makefile for: biabam
-# Date created: 03 January 2001
-# Whom: George Reid <greid@ukug.uk.freebsd.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= biabam
-PORTVERSION= 0.9.7
-PORTREVISION= 2
-CATEGORIES= mail
-MASTER_SITES= http://mmj.dk/biabam/
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A command-line attachment mailer
-
-DEPRECATED= Upstream disapear and distfile is no more available
-EXPIRATION_DATE= 2011-05-01
-
-RUN_DEPENDS= bash:${PORTSDIR}/shells/bash
-
-NO_BUILD= yes
-PLIST_FILES= bin/biabam
-
-post-patch:
- @${REINPLACE_CMD} -e 's|\(#!\)\(/bin/bash\)|\1${LOCALBASE}\2|' \
- ${WRKSRC}/${PORTNAME}
-
-do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/biabam ${PREFIX}/bin
-
-.include <bsd.port.mk>
diff --git a/mail/biabam/distinfo b/mail/biabam/distinfo
deleted file mode 100644
index 36f5550b0914..000000000000
--- a/mail/biabam/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (biabam-0.9.7.tar.gz) = 1e72070576b6040522050e70f1f75ee9
-SHA256 (biabam-0.9.7.tar.gz) = d4165f432b371628d6a39e0b99a1f245182cc547f984309e2f5f6837acd3f707
-SIZE (biabam-0.9.7.tar.gz) = 8873
diff --git a/mail/biabam/files/patch-biabam b/mail/biabam/files/patch-biabam
deleted file mode 100644
index aa6a16ac80a6..000000000000
--- a/mail/biabam/files/patch-biabam
+++ /dev/null
@@ -1,83 +0,0 @@
---- biabam.orig Tue Dec 21 00:08:38 2004
-+++ biabam Tue Dec 21 00:10:02 2004
-@@ -33,15 +33,15 @@
- exit 1
- fi
-
--if ! which uuencode > /dev/null; then
-- echo "This program needs the uuencode utility to perform base64 encoding."
-+if ! which b64encode > /dev/null; then
-+ echo "This program needs the b64encode utility to perform base64 encoding."
- exit 1
- fi
-
- # Find out the number of files to attach
- TOTAL_ATTACHMENTS=`echo "$1" | awk -F$SP '{print NF}'`
-
--for i in `seq 1 $TOTAL_ATTACHMENTS`;
-+for i in `jot $TOTAL_ATTACHMENTS 1`;
- do
- STR="'{print \$$i}'"
- # store filenames in an array
-@@ -55,7 +55,7 @@
-
- BASETEMP="`basename $TEMPFILE`"
-
--for i in `seq 1 $TOTAL_ATTACHMENTS`; do
-+for i in `jot $TOTAL_ATTACHMENTS 1`; do
- # array for attachments basename
- BASEATTACHMENT[$i]="`basename \"${ARR_ATTACHMENTS[$i]}\"`"
- # test if file exists
-@@ -78,7 +78,7 @@
- TYPE[$i]=${MIME:-application/unknown}
- fi
-
-- uuencode --base64 -- "${ARR_ATTACHMENTS[$i]}" "${BASEATTACHMENT[$i]}" | \
-+ b64encode -- "${ARR_ATTACHMENTS[$i]}" "${BASEATTACHMENT[$i]}" | \
- sed '1d;$d' > ${TEMPUUENCODED[$i]}
- done
-
-@@ -97,7 +97,7 @@
- # Find out the number of recipients to send the email
- TOTAL_EMAILS=`echo "$1" | awk -F$SP '{print NF}'`
-
--for i in `seq 1 $TOTAL_EMAILS`; do
-+for i in `jot $TOTAL_EMAILS 1`; do
- STR="'{print \$$i}'"
- # store recipients in an array
- ARR_EMAILS[$i]=`sh -c "echo "$1" | awk -F$SP $STR" `
-@@ -105,7 +105,7 @@
-
- TO="To:"
-
--for i in `seq 1 $TOTAL_EMAILS`; do
-+for i in `jot $TOTAL_EMAILS 1`; do
- # write the 'To:' field with all recipients previously stored in the array
- TO="$TO <${ARR_EMAILS[$i]}>,"
- done
-@@ -129,7 +129,7 @@
- cat >> $TEMPFILE
- echo >> $TEMPFILE
-
--for i in `seq 1 $TOTAL_ATTACHMENTS`; do
-+for i in `jot $TOTAL_ATTACHMENTS 1`; do
- echo "--$BOUNDARY" >> $TEMPFILE
- echo "Content-Type: ${TYPE[$i]}" >> $TEMPFILE
- echo "Content-Disposition: attachment; filename=\"${BASEATTACHMENT[$i]}\"" >> $TEMPFILE
-@@ -143,14 +143,14 @@
- echo "--$BOUNDARY--" >> $TEMPFILE
- echo >> $TEMPFILE
-
--for i in `seq 1 $TOTAL_EMAILS`; do
-+for i in `jot $TOTAL_EMAILS 1`; do
- # put all recipients together to call sendmail below
- RECIPIENTS="$RECIPIENTS ${ARR_EMAILS[$i]}"
- done
-
- cat $TEMPFILE | $SENDMAIL $SENDMAIL_OPTS $RECIPIENTS # here we call sendmail
-
--for i in `seq 1 $TOTAL_ATTACHMENTS`; do
-+for i in `jot $TOTAL_ATTACHMENTS 1`; do
- /bin/rm -f ${TEMPUUENCODED[$i]} # remove all temp files created
- done
-
diff --git a/mail/biabam/pkg-descr b/mail/biabam/pkg-descr
deleted file mode 100644
index 978976439e9f..000000000000
--- a/mail/biabam/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-Biabam Is A Bash Attachment Mailer
-
-To use BIABAM use the following syntax:
-
-echo [body] | biabam attachment1,[attachment2,attachmentN] [-s subject] \
- recipient1[,recipient2,recipientN]
-
-Example:
-echo "Here are the tarballs you requested" | biabam \
- foobar-0.7.8.tar.gz,coolapp-0.4.3.tar.gz,otherapp-4.3.0.tar.gz \
- -s "Answer to your request" john@doe.org,irene@prima.org,cira@alpispa.es
-
-If no text is piped into biabam, it will wait for text on standard input
-(finish with CTRL-D)