aboutsummaryrefslogtreecommitdiff
path: root/mail/elm
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 21:25:59 +0000
commit8003ba152f15aa82aaadd76fcd6b669cc0cc9981 (patch)
tree7842527232644d8f0fc76639a38e9596a910d381 /mail/elm
parented087d4a054a21cc8ed53e4878392ce7aa857b54 (diff)
downloadports-8003ba152f15aa82aaadd76fcd6b669cc0cc9981.tar.gz
ports-8003ba152f15aa82aaadd76fcd6b669cc0cc9981.zip
Remove non staged ports without pending PR from ma*
Notes
Notes: svn path=/head/; revision=366959
Diffstat (limited to 'mail/elm')
-rw-r--r--mail/elm/Makefile34
-rw-r--r--mail/elm/distinfo2
-rw-r--r--mail/elm/files/patch-Configure59
-rw-r--r--mail/elm/pkg-descr2
-rw-r--r--mail/elm/pkg-plist29
-rw-r--r--mail/elm/scripts/pre-configure315
6 files changed, 0 insertions, 441 deletions
diff --git a/mail/elm/Makefile b/mail/elm/Makefile
deleted file mode 100644
index 5d7233242fc7..000000000000
--- a/mail/elm/Makefile
+++ /dev/null
@@ -1,34 +0,0 @@
-# Created by: dhagan@cs.vt.edu
-# $FreeBSD$
-
-PORTNAME= elm
-PORTVERSION= 2.5.8
-PORTREVISION= 3
-CATEGORIES= mail
-MASTER_SITES= http://instinct.org/elm/files/tarballs/
-DISTNAME= ${PORTNAME}${PORTVERSION}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Once-popular mail user agent, version 2.5.x
-
-BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/aspell-ispell
-
-MAKE_JOBS_UNSAFE= yes
-
-CFLAGS+= -D_SIZE_T
-
-WRKSRC= ${WRKDIR}/elm${PORTVERSION}
-NO_LATEST_LINK= yes
-USES= gettext
-HAS_CONFIGURE= yes
-CONFIGURE_SCRIPT= Configure
-CONFIGURE_ENV= PREFIX="${PREFIX}"
-CONFIGURE_ARGS= -d
-MAKE_FLAGS= CATMAN=catman-none
-MAN1= answer.1 checkalias.1 elm.1 elmalias.1 fastmail.1 \
- frm.1 listalias.1 messages.1 newalias.1 newmail.1 \
- printmail.1 readmsg.1 mmencode.1
-MLINKS= frm.1 nfrm.1 newmail.1 wnewmail.1
-
-NO_STAGE= yes
-.include <bsd.port.mk>
diff --git a/mail/elm/distinfo b/mail/elm/distinfo
deleted file mode 100644
index cc2e61a92518..000000000000
--- a/mail/elm/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (elm2.5.8.tar.gz) = 80ec62197d214a6efcf19bb98eb64483a78f80956c1a77eab783bea1949ac815
-SIZE (elm2.5.8.tar.gz) = 607078
diff --git a/mail/elm/files/patch-Configure b/mail/elm/files/patch-Configure
deleted file mode 100644
index 95d2af9e29f2..000000000000
--- a/mail/elm/files/patch-Configure
+++ /dev/null
@@ -1,59 +0,0 @@
---- Configure.orig 2005-08-18 13:49:24.000000000 +0100
-+++ Configure 2013-01-18 16:14:29.794050455 +0000
-@@ -18,11 +18,6 @@
- PATH=".:/bin:/usr/bin:/usr/local/bin:/usr/ucb:/usr/local:/usr/lbin:/etc:/usr/new:/usr/new/bin:/usr/nbin:$PATH"
- export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh $0; kill $$)
-
--if test ! -t 0; then
-- echo "Say 'sh Configure', not 'sh <Configure'"
-- exit 1
--fi
--
- (alias) >/dev/null 2>&1 && \
- echo "(I see you are using the Korn shell. Some ksh's blow up on Configure," && \
- echo "especially on exotic machines. If yours does, try the Bourne shell instead.)"
-@@ -491,7 +486,6 @@
- c='\c'
- fi
- echo $n "Type carriage return to continue. Your cursor should be here-->$c"
--read ans
- rm -f .echotmp
-
- : now set up to do reads with possible shell escape and default assignment
-@@ -2058,6 +2052,7 @@
- libc=/usr/lib/libc.a
- else
- set /usr/ccs/lib/libc.so
-+test -f $1 || set /usr/lib/libc.a
- test -f $1 || set /usr/lib/libc.so
- test -f $1 || set /usr/lib/libc.so.[0-9]*
- test -f $1 || set /lib/libsys_s.a
-@@ -2111,7 +2106,7 @@
- set `echo $libc $libnames | tr ' ' '\012' | sort | uniq`
- $echo $n "Extracting names from $* for later perusal...$c"
- nm $nm_opts $* 2>/dev/null >libc.tmp
--$sed -n -e 's/^.* [ATDSU] *[_.]*//p' -e 's/^.* [ATDSU] //p' <libc.tmp >libc.list
-+$sed -n -e 's/^.* [ATDSUW] *[_.]*//p' -e 's/^.* [ATDSUW] //p' <libc.tmp >libc.list
- if $contains '^printf$' libc.list >/dev/null 2>&1; then
- echo done
- elif $sed -n -e 's/^__*//' -e 's/^\([a-zA-Z_0-9$]*\).*xtern.*/\1/p' \
-@@ -2499,7 +2494,10 @@
- #
- : see if crypt exists
- echo " "
--if $contains '^crypt$' libc.list >/dev/null 2>&1; then
-+if $test "$cryptlib" = -lcrypt; then
-+ echo 'crypt() found.'
-+ d_crypt="$define"
-+elif $contains '^crypt$' libc.list >/dev/null 2>&1; then
- echo 'crypt() found.'
- d_crypt="$define"
- cryptlib=''
-@@ -5499,7 +5497,6 @@
- echo "If you didn't make any mistakes, then just type a carriage return here."
- rp="If you need to edit config.sh, do it as a shell escape here:"
- $echo $n "$rp $c"
--. UU/myread
- case "$ans" in
- '') ;;
- *) : in case they cannot read
diff --git a/mail/elm/pkg-descr b/mail/elm/pkg-descr
deleted file mode 100644
index bb36f162e118..000000000000
--- a/mail/elm/pkg-descr
+++ /dev/null
@@ -1,2 +0,0 @@
-Elm is an interactive screen-oriented mailer program that
-supersedes mail and mailx. This is the 2.5.x distribution.
diff --git a/mail/elm/pkg-plist b/mail/elm/pkg-plist
deleted file mode 100644
index ac6ec4bd9cd2..000000000000
--- a/mail/elm/pkg-plist
+++ /dev/null
@@ -1,29 +0,0 @@
-bin/elm
-bin/answer
-bin/checkalias
-bin/elmalias
-bin/fastmail
-bin/frm
-@exec ln -f %D/%F %D/bin/nfrm
-@unexec rm -f %D/bin/nfrm
-bin/listalias
-bin/messages
-bin/newalias
-bin/newmail
-@exec ln -f %D/%F %D/bin/wnewmail
-@unexec rm -f %D/bin/wnewmail
-bin/printmail
-bin/readmsg
-bin/prlong
-bin/mmencode
-lib/elmrc-info
-lib/help-main
-lib/help-options
-lib/help-alias
-lib/help-pager
-lib/help-status
-lib/help-fbrowser
-lib/help-attach
-lib/help-selfolder
-lib/mime-types
-lib/mlists.eg
diff --git a/mail/elm/scripts/pre-configure b/mail/elm/scripts/pre-configure
deleted file mode 100644
index beb4b0ce011e..000000000000
--- a/mail/elm/scripts/pre-configure
+++ /dev/null
@@ -1,315 +0,0 @@
-#!/bin/sh -
-#
-# pre-configure script for Elm port to FreeBSD 2.0
-#
-# Stolen from the elm-ME port (/usr/ports/mail/elm/)
-# $FreeBSD$
-
-PortsDir=$PORTSDIR
- CurDir=$CURDIR
- WrkSrc=$WRKSRC
-
- cat > ${WrkSrc}/config.sh << 'EOF'
-#!/bin/sh
-# config.sh
-# This file was produced by running the Configure script.
-
-Log='$Log'
-Header='$Header'
-bin="${PREFIX}/bin"
-contains='grep'
-cppstdin='/usr/bin/cpp'
-cppminus=''
-d_getopt='define'
-d_memcpy='define'
-d_rename='define'
-d_symlink='define'
-d_whoami='undef'
-d_poll='define'
-d_mmap='define'
-d_inttypes='define'
-d_nointtypes='undef'
-n='-n'
-c=''
-orderlib='false'
-ranlib=':'
-package='elm2'
-pager='builtin'
-startsh='#!/bin/sh'
-define='define'
-loclist='
-cat
-chgrp
-chmod
-cp
-echo
-expr
-grep
-fgrep
-head
-ln
-ls
-make
-mv
-rm
-sed
-sleep
-touch
-tr
-cut
-'
-expr='/bin/expr'
-sed='/usr/bin/sed'
-echo='/bin/echo'
-cat='/bin/cat'
-rm='/bin/rm'
-mv='/bin/mv'
-cp='/bin/cp'
-tail=''
-tr='/usr/bin/tr'
-sort=''
-uniq=''
-grep='/usr/bin/grep'
-fgrep='/usr/bin/fgrep'
-head='/usr/bin/head'
-trylist='
-Mcc
-compress
-cpp
-date
-emacs
-execmail
-finger
-ispell
-line
-lint
-lp
-locale
-lpr
-mailx
-metamail
-mips
-more
-nroff
-pack
-pg
-pgp
-pmake
-pr
-rmail
-sendmail
-shar
-smail
-submit
-tar
-tbl
-test
-troff
-uname
-uuname
-vi
-'
-test='/bin/test'
-inews=''
-ispell="${PREFIX}/bin/ispell"
-egrep=''
-more='/usr/bin/more'
-pg='pg'
-Mcc='Mcc'
-vi='/usr/bin/vi'
-mailx='mailx'
-mail=''
-cpp='/usr/bin/cpp'
-perl=''
-emacs='emacs'
-ls='/bin/ls'
-rmail='/bin/rmail'
-sendmail='/usr/sbin/sendmail'
-shar='/usr/bin/shar'
-smail='smail'
-submit=''
-tbl='/usr/bin/tbl'
-troff='/usr/bin/troff'
-nroff='/usr/bin/nroff'
-uname='/usr/bin/uname'
-uuname='/usr/bin/uuname'
-line='line'
-chgrp='/usr/bin/chgrp'
-chmod='/bin/chmod'
-lint='/usr/bin/lint'
-sleep='/bin/sleep'
-pr='/usr/bin/pr'
-tar='/usr/bin/tar'
-ln='/bin/ln'
-lpr='/usr/bin/lpr'
-lp='/usr/bin/lp'
-touch='/usr/bin/touch'
-make='/usr/bin/make'
-date='/bin/date'
-csh=''
-pmake='pmake'
-mips='false'
-col=''
-pack='pack'
-compress='/usr/bin/compress'
-execmail=''
-libswanted='sun intl nls c_s'
-noaddlib='yes'
-c_date='Wed Sep 8 21:06:00 MSD 1999'
-d_ascii='undef'
-d_broke_ctype='undef'
-d_calendar='define'
-calendar='calendar'
-d_chown_neg1='define'
-d_content='undef'
-d_crypt='define'
-cryptlib='-lcrypt'
-d_cuserid='undef'
-d_disphost='undef'
-d_domname='define'
-d_usegetdom='undef'
-d_errlst='define'
-d_flock='define'
-d_dotlock='undef'
-d_fcntlock='undef'
-has_flock='define'
-has_fcntl='define'
-d_ftruncate='define'
-d_gethname='define'
-d_douname='undef'
-d_host_comp='undef'
-ign_hname='n'
-d_havetlib='define'
-termlib='-ltermlib'
-d_index='undef'
-d_internet='define'
-d_ispell='define'
-ispell_path="${PREFIX}/bin/ispell"
-ispell_options=''
-d_locale='define'
-d_nl_types='define'
-d_msgcat='define'
-d_usenls='undef'
-d_mallocvoid='define'
-d_mboxedit='define'
-metamail_path='none'
-defencoding=''
-d_8bitmime='define'
-d_binarymime='undef'
-d_dsn='define'
-defcharset='DISPLAY'
-defdispcharset='ISO-8859-1'
-d_mmdf='undef'
-d_newauto='define'
-d_noaddfrom='define'
-d_usedomain='undef'
-d_noxheader='undef'
-d_pidcheck='define'
-d_ptem='undef'
-d_putenv='define'
-d_remlock='undef'
-maxattempts='6'
-d_setgid='undef'
-d_savegrpmboxid='undef'
-mailermode='755'
-d_sigvec='undef'
-d_sigvectr='undef'
-d_sigset='undef'
-d_sighold='undef'
-d_sigprocmask='define'
-d_sigblock='undef'
-d_waitpid='define'
-d_sigaction='define'
-d_strcspn='define'
-d_strspn='define'
-d_strpbrk='define'
-d_strerror='define'
-d_strftime='define'
-d_strings='undef'
-d_pwdinsys='undef'
-strings='/usr/include/string.h'
-includepath=''
-d_strstr='define'
-d_strtok='define'
-d_subshell='define'
-d_tempnam='define'
-tempnamo=''
-tempnamc=''
-d_termio='undef'
-d_termios='define'
-d_utimbuf='define'
-d_vfork='define'
-defbatsub='no subject (file transmission)'
-defeditor='/usr/bin/vi'
-editoropts=''
-hostname="${Hostname}"
-phostname='hostname'
-mydomain="${Domain}"
-autohostname='define'
-i_memory='define'
-i_stdarg='define'
-i_stdlib='define'
-i_time='define'
-i_systime='define'
-d_systimekernel='undef'
-i_unistd='define'
-i_utime='define'
-i_sysutime='undef'
-lib="${PREFIX}/lib"
-libc='/usr/lib/libc.so'
-linepr='/usr/bin/lp'
-maildir='/var/mail'
-mailer='/usr/sbin/sendmail'
-mailgrp='mail'
-mansrc="${PREFIX}/man/man1"
-catmansrc="${PREFIX}/man/cat1"
-manext='.1'
-manext_choice='.1'
-catmanext='.1'
-catmanext_choice='.1'
-packed='n'
-manroff='/usr/bin/nroff'
-manroffopts=''
-suffix=''
-packer=''
-optimize="$CFLAGS"
-ccflags=''
-cppflags=''
-ldflags='-s -L${PREFIX}/lib'
-cc='cc'
-libs=''
-nametype='bsd'
-d_passnames='define'
-d_berknames='define'
-d_usgnames='undef'
-# passcat=''
-rmttape='unknown-remote-tape-unit'
-roff='/usr/bin/troff'
-roffopts=''
-sigtype='void'
-spitshell='cat'
-shsharp='true'
-sharpbang='#!'
-tmpdir='/tmp'
-tzname_handling='TM_ZONE'
-use_pmake='n'
-xencf=''
-xenlf=''
-d_xenix='undef'
-d_bsd='define'
-locale='locale'
-d_pgp='define'
-pgp="${PREFIX}/bin/pgp"
-pgp_path="${PREFIX}/bin/pgp"
-special_path='/usr/local/bin'
-CONFIG=true
-EOF
-
-# Warn user to just take defaults.
-#
-echo "===> Note: This configure script is interactive, but the "
-echo " supplied defaults will work for FreeBSD. Just press "
-echo " Enter to accept each default."
-exit 0
-# END
-