diff options
author | Ben Lutgens <lamer@gentoo.org> | 2001-07-10 19:34:41 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2001-07-10 19:34:41 +0000 |
commit | 231a59e2b2eee90f53f759a81a2a0589265db48c (patch) | |
tree | a92ac2bfb5aa00df8384d9b12a26d44e025c05ac /net-mail/lbdb | |
parent | This is an updated package with a fix for the PRNG bug / exploit. More (diff) | |
download | gentoo-2-231a59e2b2eee90f53f759a81a2a0589265db48c.tar.gz gentoo-2-231a59e2b2eee90f53f759a81a2a0589265db48c.tar.bz2 gentoo-2-231a59e2b2eee90f53f759a81a2a0589265db48c.zip |
From the README "This package was inspired by the Big Brother Database
package
available for various Emacs mailers, and by Brandon Long's "external
query" patch for the mutt mail user agent (Note that this patch has
been incorporated into the main-line mutt versions as of mutt 0.93.)"
hope you like it.
Diffstat (limited to 'net-mail/lbdb')
-rw-r--r-- | net-mail/lbdb/files/digest-lbdb-0.24 | 1 | ||||
-rw-r--r-- | net-mail/lbdb/lbdb-0.24.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/net-mail/lbdb/files/digest-lbdb-0.24 b/net-mail/lbdb/files/digest-lbdb-0.24 new file mode 100644 index 000000000000..0ca5f5f472eb --- /dev/null +++ b/net-mail/lbdb/files/digest-lbdb-0.24 @@ -0,0 +1 @@ +MD5 b1a04c5db06561bc4486074982adcaf7 lbdb_0.24.tar.gz diff --git a/net-mail/lbdb/lbdb-0.24.ebuild b/net-mail/lbdb/lbdb-0.24.ebuild new file mode 100644 index 000000000000..cb21d671ea7e --- /dev/null +++ b/net-mail/lbdb/lbdb-0.24.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <blutgens@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/net-mail/lbdb/lbdb-0.24.ebuild,v 1.1 2001/07/10 19:34:41 lamer Exp $ +P=lbdb_0.24 +S=${WORKDIR}/lbdb-0.24 +DESCRIPTION="This is a sample skeleton ebuild file" +SRC_URI="http://www.spinnaker.de/debian/${P}.tar.gz" +HOMEPAGE="http://www.spinnaker.de/debian/lbdb.html" +DEPEND=">=net-mail/mutt-1.2.5" + +#RDEPEND="" +# NOTE: You need to have the Palm::PDB and Palm::Address Perl modules +# installed to use the m_palm module. use perl's CPAN module to fetch +# and install "perl -MCPAN -e shell" see "perldoc CPAN" + + + +src_compile() { + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man \ + --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib/lbdb --host=${CHOST} + + try emake + #try make +} + +src_install () { + + # try make prefix=${D}/usr install + + try make install_prefix=${D} install + dodoc README INSTALL COPYING NEWS TODO +} + |