diff options
author | Don Seiler <rizzo@gentoo.org> | 2004-03-25 21:49:43 +0000 |
---|---|---|
committer | Don Seiler <rizzo@gentoo.org> | 2004-03-25 21:49:43 +0000 |
commit | 2c3d472dd08665b16606f9bf10ccb33d80a74a03 (patch) | |
tree | efd76b0a8659789fb2cdbdfa80a00860dac65be1 /app-misc/abook/abook-0.5.2-r1.ebuild | |
parent | Added fix for bug #45716. (Manifest recommit) (diff) | |
download | gentoo-2-2c3d472dd08665b16606f9bf10ccb33d80a74a03.tar.gz gentoo-2-2c3d472dd08665b16606f9bf10ccb33d80a74a03.tar.bz2 gentoo-2-2c3d472dd08665b16606f9bf10ccb33d80a74a03.zip |
Revision bump. Adding trancate bug patch to filter.c
Diffstat (limited to 'app-misc/abook/abook-0.5.2-r1.ebuild')
-rw-r--r-- | app-misc/abook/abook-0.5.2-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-misc/abook/abook-0.5.2-r1.ebuild b/app-misc/abook/abook-0.5.2-r1.ebuild new file mode 100644 index 000000000000..b0dd411b2b90 --- /dev/null +++ b/app-misc/abook/abook-0.5.2-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/abook/abook-0.5.2-r1.ebuild,v 1.1 2004/03/25 21:49:43 rizzo Exp $ + +DESCRIPTION="Abook is a text-based addressbook program designed to use with mutt mail client." +HOMEPAGE="http://abook.sourceforge.net/" +SRC_URI="mirror://sourceforge/abook/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc" +DEPEND="sys-libs/ncurses + sys-libs/readline" + +#S="${WORKDIR}/${P}" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/abook-0.5.2-filter.diff +} + +src_compile() { + cd ${S} + econf || die "configure failed" + emake || die "make failed" +} + +src_install() { + make install DESTDIR=${D} || die "install died" + dodoc ANNOUNCE AUTHORS BUGS COPYING ChangeLog FAQ INSTALL NEWS README THANKS TODO + dodoc sample.abookrc +} + |