diff options
author | Tuan Van <langthang@gentoo.org> | 2004-07-12 21:26:30 +0000 |
---|---|---|
committer | Tuan Van <langthang@gentoo.org> | 2004-07-12 21:26:30 +0000 |
commit | cf35eef48088581a2b98245b1d8c16e0015d836a (patch) | |
tree | 3b3f30c5d64d18f8f1c4cc83a397a582a9fdfe09 /mail-client | |
parent | Version bump - closes bug #54455, #55376 and adds more PCMCIA modules to the ... (diff) | |
download | gentoo-2-cf35eef48088581a2b98245b1d8c16e0015d836a.tar.gz gentoo-2-cf35eef48088581a2b98245b1d8c16e0015d836a.tar.bz2 gentoo-2-cf35eef48088581a2b98245b1d8c16e0015d836a.zip |
removed old ebuild.
Diffstat (limited to 'mail-client')
-rw-r--r-- | mail-client/mailx/mailx-8.1.1.11.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/mail-client/mailx/mailx-8.1.1.11.ebuild b/mail-client/mailx/mailx-8.1.1.11.ebuild deleted file mode 100644 index 3d71bd1eb04b..000000000000 --- a/mail-client/mailx/mailx-8.1.1.11.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-client/mailx/mailx-8.1.1.11.ebuild,v 1.2 2004/06/24 22:16:17 agriffis 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 alpha" - -src_unpack() { - - unpack ${A} - - cd ${S} - - patch -p1 < ${FILESDIR}/${PF}.diff || die - patch -p1 < ${FILESDIR}/${PF}-version.diff || die - # It needs to install to /bin/mail (else conflicts with Postfix) - # Also man pages go to /usr/share/man for FHS compliancy - patch -p0 <${FILESDIR}/${PF}-Makefile.diff || die -} - -src_compile() { - - # Can't compile mailx with optimizations - _CFLAGS=$(echo $CFLAGS|sed 's/-O.//g') - - make CFLAGS="$_CFLAGS" || die - -} - -src_install() { - - dodir /bin /usr/share/man/man1 /etc /usr/lib - make BINDIR=/bin DESTDIR=${D} install || die - - # Install the docs - docinto debian - dodoc debian/* - - # Some scripts require /bin/Mail - dosym mail /bin/Mail - dosym mail.1 /usr/share/man/man1/Mail.1 -} |