diff options
author | 2001-10-13 17:33:29 +0000 | |
---|---|---|
committer | 2001-10-13 17:33:29 +0000 | |
commit | cf9509c602f50897f86ad2de94e8fbf741498151 (patch) | |
tree | 827cace05e740204252d8d65184f08ff1ec0b109 /net-mail/mailx | |
parent | multi-gnome-terminal, gtkmm-addons added. sqlite updated (diff) | |
download | gentoo-2-cf9509c602f50897f86ad2de94e8fbf741498151.tar.gz gentoo-2-cf9509c602f50897f86ad2de94e8fbf741498151.tar.bz2 gentoo-2-cf9509c602f50897f86ad2de94e8fbf741498151.zip |
fixes/form changes
Diffstat (limited to 'net-mail/mailx')
-rw-r--r-- | net-mail/mailx/mailx-8.1.1.11.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/net-mail/mailx/mailx-8.1.1.11.ebuild b/net-mail/mailx/mailx-8.1.1.11.ebuild index 2b14643e062c..108e2ce9a027 100644 --- a/net-mail/mailx/mailx-8.1.1.11.ebuild +++ b/net-mail/mailx/mailx-8.1.1.11.ebuild @@ -2,17 +2,15 @@ # Distributed under the terms of the GNU General Public License, v2 or later # Author Martin Schlemmer <azarah@gentoo.org> -S=${WORKDIR}/mailx-8.1.1.orig +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_8.1.1.orig.tar.gz" +SRC_URI="ftp://ftp.debian.org/debian/pool/main/m/mailx/mailx_${MX_VER}.orig.tar.gz" HOMEPAGE="http://www.debian.org" DEPEND="virtual/glibc >=net-libs/liblockfile-1.03" -RDEPEND="virtual/glibc - >=net-libs/liblockfile-1.03" - src_unpack() { @@ -25,7 +23,6 @@ src_unpack() { # 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() { @@ -37,7 +34,7 @@ src_compile() { } -src_install () { +src_install() { dodir /bin /usr/share/man/man1 /etc /usr/lib make BINDIR=/bin DESTDIR=${D} install || die @@ -49,6 +46,5 @@ src_install () { # Some scripts require /bin/Mail dosym mail /bin/Mail dosym mail.1 /usr/share/man/man1/Mail.1 - } |