diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-12-01 22:33:42 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-12-01 22:33:42 +0000 |
commit | 23b2ada33c233aac72d31b8f4034108a43e0da13 (patch) | |
tree | 59767e6a65032cd4da4fc0ada92a72657487c9cd /net-mail/mailx | |
parent | added sparc and sparc64 testing (diff) | |
download | gentoo-2-23b2ada33c233aac72d31b8f4034108a43e0da13.tar.gz gentoo-2-23b2ada33c233aac72d31b8f4034108a43e0da13.tar.bz2 gentoo-2-23b2ada33c233aac72d31b8f4034108a43e0da13.zip |
New mailx ebuild ported from the openbsd cvs repository pulled
11/29/2002. Currently marked unstable.
Diffstat (limited to 'net-mail/mailx')
-rw-r--r-- | net-mail/mailx/ChangeLog | 9 | ||||
-rw-r--r-- | net-mail/mailx/files/20021129-cvs.diff.bz2 | bin | 0 -> 64969 bytes | |||
-rw-r--r-- | net-mail/mailx/files/digest-mailx-8.1.2.20021129 | 1 | ||||
-rw-r--r-- | net-mail/mailx/mailx-8.1.2.20021129.ebuild | 57 |
4 files changed, 66 insertions, 1 deletions
diff --git a/net-mail/mailx/ChangeLog b/net-mail/mailx/ChangeLog index 592a9b886887..0e9bc59919dc 100644 --- a/net-mail/mailx/ChangeLog +++ b/net-mail/mailx/ChangeLog @@ -1,7 +1,14 @@ # ChangeLog for net-mail/mailx # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailx/ChangeLog,v 1.3 2002/09/28 18:57:22 owen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailx/ChangeLog,v 1.4 2002/12/01 22:33:42 raker Exp $ +*mailx-8.1.2.20021129 (01 Dec 2002) + + 01 Dec 2002; Nick Hadaway <raker@gentoo.org> + mailx-8.1.2.20021129.ebuild, files/digest-mailx-8.1.2.20021129, + files/20021129-cvs.diff.bz2 : + mailx ported from openbsd cvs repository pulled 11/29/2002. + Currently marked unstable. *mailx-8.1.1.11 (1 Feb 2002) diff --git a/net-mail/mailx/files/20021129-cvs.diff.bz2 b/net-mail/mailx/files/20021129-cvs.diff.bz2 Binary files differnew file mode 100644 index 000000000000..49195f360165 --- /dev/null +++ b/net-mail/mailx/files/20021129-cvs.diff.bz2 diff --git a/net-mail/mailx/files/digest-mailx-8.1.2.20021129 b/net-mail/mailx/files/digest-mailx-8.1.2.20021129 new file mode 100644 index 000000000000..ab658e38e44a --- /dev/null +++ b/net-mail/mailx/files/digest-mailx-8.1.2.20021129 @@ -0,0 +1 @@ +MD5 c779002cb043b57fd5198ec2032cacb0 mailx_8.1.1.orig.tar.gz 89069 diff --git a/net-mail/mailx/mailx-8.1.2.20021129.ebuild b/net-mail/mailx/mailx-8.1.2.20021129.ebuild new file mode 100644 index 000000000000..11e1edfb5fd5 --- /dev/null +++ b/net-mail/mailx/mailx-8.1.2.20021129.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailx/mailx-8.1.2.20021129.ebuild,v 1.1 2002/12/01 22:33:42 raker Exp $ + +MX_VER="8.1.1" +S=${WORKDIR}/mailx-${MX_VER}.orig + +DESCRIPTION="The /bin/mail program, which is used to send mail via shell scripts." +SRC_URI="ftp://ftp.debian.org/debian/pool/main/m/mailx/mailx_${MX_VER}.orig.tar.gz" +HOMEPAGE="http://www.debian.org" + +DEPEND=">=net-libs/liblockfile-1.03 + virtual/mta" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64 ~alpha" + +src_unpack() { + + unpack ${A} + cd ${S} + bzcat ${FILESDIR}/20021129-cvs.diff.bz2 | patch -p1 \ + || die "patch failed" + +} + +src_compile() { + + # Can't compile mailx with optimizations + _CFLAGS=$(echo $CFLAGS|sed 's/-O.//g') + + make CFLAGS="$_CFLAGS" || die "make failed" + +} + +src_install() { + + dodir /bin /usr/share/man/man1 /etc /usr/lib + + insinto /bin + insopts -m 755 + doins mail + + doman mail.1 + + dosym mail /bin/Mail + dosym mail /bin/mailx + dosym mail.1 /usr/share/man/man1/Mail.1 + + cd ${S}/misc + insinto /usr/lib + doins mail.help mail.tildehelp + insinto /etc + doins mail.rc + +} |