diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2001-07-06 16:12:47 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2001-07-06 16:12:47 +0000 |
commit | 7b6b5277e7855f488fc9416c17834c6969b12818 (patch) | |
tree | 505b36de0ea1ab82ca9d3350b2b013f1efbf91ab /net-mail/nail | |
parent | script installs stuff in wrong place. will modify and remove it from package.... (diff) | |
download | gentoo-2-7b6b5277e7855f488fc9416c17834c6969b12818.tar.gz gentoo-2-7b6b5277e7855f488fc9416c17834c6969b12818.tar.bz2 gentoo-2-7b6b5277e7855f488fc9416c17834c6969b12818.zip |
New ebuild -- nail is a /bin/mail clone.
Diffstat (limited to 'net-mail/nail')
-rw-r--r-- | net-mail/nail/files/digest-nail-9.27 | 1 | ||||
-rw-r--r-- | net-mail/nail/nail-9.27.ebuild | 58 |
2 files changed, 59 insertions, 0 deletions
diff --git a/net-mail/nail/files/digest-nail-9.27 b/net-mail/nail/files/digest-nail-9.27 new file mode 100644 index 000000000000..5ebda44b5242 --- /dev/null +++ b/net-mail/nail/files/digest-nail-9.27 @@ -0,0 +1 @@ +MD5 6a2990c5e9e60f26dc5823b01172e824 nail-9.27.tar.gz diff --git a/net-mail/nail/nail-9.27.ebuild b/net-mail/nail/nail-9.27.ebuild new file mode 100644 index 000000000000..52f7b90eaf85 --- /dev/null +++ b/net-mail/nail/nail-9.27.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Grant Goodyear <g2boojum@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/nail/nail-9.27.ebuild,v 1.1 2001/07/06 16:12:47 g2boojum Exp $ + +#Remeber to add the proper Author line, above. Don't worry about the fourth line; +#it'll get automatically fixed when the ebuild is checked in. + +#Source directory; the dir where the sources can be found (automatically unpacked) +#inside ${WORKDIR} +S=${WORKDIR}/${P} + +#Short one-line description +DESCRIPTION="Nail is a mail user agent derived from Berkeley Mail 8.1 and contains builtin support for MIME messages." + +#Point to any required sources; these will be automatically downloaded by Portage +SRC_URI="http://omnibus.ruf.uni-freiburg.de/~gritter/archive/nail/${P}.tar.gz" + +#Homepage, not used by Portage directly but handy for developer reference +HOMEPAGE="http://omnibus.ruf.uni-freiburg.de/~gritter/" + +#build-time dependencies +DEPEND="virtual/glibc + virtual/mta" + +#run-time dependencies, same as DEPEND if RDEPEND isn't defined: +#RDEPEND="" + +src_compile() { + #the "try" command will stop the build process if the specified command fails. Prefix critical + #commands with "try" + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} --with-mailspool=/var/spool/mail + #Note the use of --infodir and --mandir, above. This is to make this package FHS 2.2-compliant + #(/usr/share is used for info and man now). + + try emake + #emake (previously known as pmake) is a script that calls the standard GNU make with parallel + #building options for speedier builds on SMP systems. Use emake first; it make not work. If + #not, then replace the line above with: + + #try make +} + +src_install () { + #you must *personally verify* that this trick doesn't install + #anything outside of DESTDIR; do this by reading and understanding + #the install part of the Makefiles. Also note that this will often + #also work for autoconf stuff (usually much more often than DESTDIR, + #which is actually quite rare. + + # try make prefix=${D}/usr install + + try make DESTDIR=${D} install + #again, verify the Makefiles! We don't want anything falling outside + #of ${D}. + dodoc AUTHORS COPYING I18N INSTALL README +} + |