diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-05-23 06:50:17 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-05-23 06:50:17 +0000 |
commit | 1bb2bece31b858a8c4725d939c7a42b91fc68ae4 (patch) | |
tree | 2b9572882fc4318ced0a6e33f3f21348bdc22588 /net-mail/nmh | |
parent | gtk 1.2 dependency listing fixes (diff) | |
download | historical-1bb2bece31b858a8c4725d939c7a42b91fc68ae4.tar.gz historical-1bb2bece31b858a8c4725d939c7a42b91fc68ae4.tar.bz2 historical-1bb2bece31b858a8c4725d939c7a42b91fc68ae4.zip |
gtk 1.2 dependency listing fixes
Diffstat (limited to 'net-mail/nmh')
-rw-r--r-- | net-mail/nmh/nmh-1.0.4.ebuild | 35 |
1 files changed, 19 insertions, 16 deletions
diff --git a/net-mail/nmh/nmh-1.0.4.ebuild b/net-mail/nmh/nmh-1.0.4.ebuild index f0a4a664eb01..d10324f3db35 100644 --- a/net-mail/nmh/nmh-1.0.4.ebuild +++ b/net-mail/nmh/nmh-1.0.4.ebuild @@ -1,34 +1,37 @@ -# Copyright 2001 Gentoo Technologies, Inc. +# Copyright 2001-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Damon Conway <damon@3jane.net> -# $Header: /var/cvsroot/gentoo-x86/net-mail/nmh/nmh-1.0.4.ebuild,v 1.3 2001/08/31 03:23:39 pm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/nmh/nmh-1.0.4.ebuild,v 1.4 2002/05/23 06:50:16 seemant Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="New MH mail reader" -SRC_URI="ftp://ftp.mhost.com/pub/nmh/${A}" +SRC_URI="ftp://ftp.mhost.com/pub/nmh/${P}.tar.gz" HOMEPAGE="http://www.mhost.com/nmh/" DEPEND="virtual/glibc" - src_compile() { # Redifining libdir to be bindir so the support binaries get installed # correctly. Since no libraries are installed with nmh, this does not # pose a problem at this time. - try ./configure --prefix=/usr --mandir=/usr/share/man \ - --enable-nmh-pop --sysconfdir=/etc/nmh --libdir=/usr/bin - try make -} - -src_install() { - try make prefix=${D}/usr mandir=${D}/usr/share/man \ - libdir=${D}/usr/bin etcdir=${D}/etc/nmh install - dodoc COMPLETION-TCSH COMPLETION-ZSH TODO FAQ DIFFERENCES \ - MAIL.FILTERING Changelog* + econf \ + --enable-nmh-pop \ + --sysconfdir=/etc/nmh \ + --libdir=/usr/bin || die - gzip -v ${D}/usr/share/man/man?/*.? + make || die } +src_install() { + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + libdir=${D}/usr/bin \ + etcdir=${D}/etc/nmh \ + install || die + + dodoc COMPLETION-TCSH COMPLETION-ZSH TODO FAQ DIFFERENCES \ + MAIL.FILTERING Changelog* +} |