diff options
Diffstat (limited to 'net-im/naim/naim-0.11.7.2.ebuild')
-rw-r--r-- | net-im/naim/naim-0.11.7.2.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-im/naim/naim-0.11.7.2.ebuild b/net-im/naim/naim-0.11.7.2.ebuild index 5cc9259cfe6e..4133a377571c 100644 --- a/net-im/naim/naim-0.11.7.2.ebuild +++ b/net-im/naim/naim-0.11.7.2.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.7.2.ebuild,v 1.15 2008/02/05 21:13:31 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.7.2.ebuild,v 1.16 2009/05/09 20:13:29 gentoofan23 Exp $ DESCRIPTION="An ncurses based AOL Instant Messenger" HOMEPAGE="http://naim.n.ml.org" @@ -13,6 +13,7 @@ IUSE="debug" DEPEND=">=sys-libs/ncurses-5.2 app-misc/screen" +RDEPEND="${DEPEND}" src_compile() { # --enable-profile @@ -23,12 +24,11 @@ src_compile() { econf \ --with-pkgdocdir=/usr/share/doc/${PF} \ --enable-detach \ - ${myconf} \ - || die "configure failed" + ${myconf} emake || die "make failed" } src_install() { - make DESTDIR=${D} install || die "make install failed" + make DESTDIR="${D}" install || die "make install failed" dodoc AUTHORS FAQ BUGS README NEWS ChangeLog doc/*.hlp } |