diff options
author | Karol Pasternak <reb@gentoo.org> | 2006-01-30 16:42:01 +0000 |
---|---|---|
committer | Karol Pasternak <reb@gentoo.org> | 2006-01-30 16:42:01 +0000 |
commit | daaa71f16f2aa327d556dac9ed3afcc42f298216 (patch) | |
tree | f3c6a1d488446c7a5f0716eaa225702c508d954a /net-im/naim/naim-0.11.8.1.ebuild | |
parent | Version bump (diff) | |
download | gentoo-2-daaa71f16f2aa327d556dac9ed3afcc42f298216.tar.gz gentoo-2-daaa71f16f2aa327d556dac9ed3afcc42f298216.tar.bz2 gentoo-2-daaa71f16f2aa327d556dac9ed3afcc42f298216.zip |
version bump
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'net-im/naim/naim-0.11.8.1.ebuild')
-rw-r--r-- | net-im/naim/naim-0.11.8.1.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/net-im/naim/naim-0.11.8.1.ebuild b/net-im/naim/naim-0.11.8.1.ebuild new file mode 100644 index 000000000000..d1fd110b821f --- /dev/null +++ b/net-im/naim/naim-0.11.8.1.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.8.1.ebuild,v 1.1 2006/01/30 16:42:01 reb Exp $ + + +DESCRIPTION="An ncurses based AOL Instant Messenger" +HOMEPAGE="http://naim.n.ml.org" +SRC_URI="http://shell.n.ml.org/n/naim/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc-macos ~sparc ~x86 ~mips" +IUSE="debug" + +DEPEND=">=sys-libs/ncurses-5.2 + app-misc/screen" + +src_unpack() { + unpack ${A} + + # Alter makefile so firetalk-int.h is installed + cd ${S} + sed -i 's/include_HEADERS = firetalk.h/include_HEADERS = firetalk.h firetalk-int.h/' \ + firetalk/Makefile.am \ + firetalk/Makefile.in +} + +src_compile() { + # --enable-profile + local myconf="" + + use debug && myconf="${myconf} --enable-debug" + + econf \ + --with-pkgdocdir=/usr/share/doc/${PF} \ + --enable-detach \ + ${myconf} \ + || die "configure failed" + emake || die "make failed" +} + +src_install() { + cd ${S} + make DESTDIR=${D} install || die "make install failed" + dodoc AUTHORS FAQ BUGS README NEWS ChangeLog doc/*.hlp +} |