diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2008-03-27 14:47:48 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2008-03-27 14:47:48 +0000 |
commit | bbab62ef0fa0e7cf652456229101469ef84a8675 (patch) | |
tree | 1ad02666154872005da5146b5155f654f8cc45da /net-im/naim | |
parent | Move sys-apps/tcb to sys-auth/tcb instead. (diff) | |
download | gentoo-2-bbab62ef0fa0e7cf652456229101469ef84a8675.tar.gz gentoo-2-bbab62ef0fa0e7cf652456229101469ef84a8675.tar.bz2 gentoo-2-bbab62ef0fa0e7cf652456229101469ef84a8675.zip |
Version bump (bug #186275) and remove old.
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-im/naim')
-rw-r--r-- | net-im/naim/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/naim/naim-0.11.7.1.ebuild | 33 | ||||
-rw-r--r-- | net-im/naim/naim-0.11.8.3.1.ebuild | 48 |
3 files changed, 55 insertions, 34 deletions
diff --git a/net-im/naim/ChangeLog b/net-im/naim/ChangeLog index 0410d00107bf..012ad07ffef8 100644 --- a/net-im/naim/ChangeLog +++ b/net-im/naim/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/naim # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.66 2008/02/05 21:13:31 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.67 2008/03/27 14:47:48 coldwind Exp $ + +*naim-0.11.8.3.1 (27 Mar 2008) + + 27 Mar 2008; Santiago M. Mola <coldwind@gentoo.org> -naim-0.11.7.1.ebuild, + +naim-0.11.8.3.1.ebuild: + Version bump (bug #186275) and remove old. 05 Feb 2008; Fabian Groffen <grobian@gentoo.org> naim-0.11.7.1.ebuild, naim-0.11.7.2.ebuild, naim-0.11.8.2.1.ebuild: diff --git a/net-im/naim/naim-0.11.7.1.ebuild b/net-im/naim/naim-0.11.7.1.ebuild deleted file mode 100644 index 4a233355f256..000000000000 --- a/net-im/naim/naim-0.11.7.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2008 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.1.ebuild,v 1.7 2008/02/05 21:13:31 grobian 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="~x86" -IUSE="debug" - -DEPEND=">=sys-libs/ncurses-5.2" - -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() { - make DESTDIR=${D} install || die "make install failed" - dodoc AUTHORS FAQ BUGS README NEWS ChangeLog doc/*.hlp -} diff --git a/net-im/naim/naim-0.11.8.3.1.ebuild b/net-im/naim/naim-0.11.8.3.1.ebuild new file mode 100644 index 000000000000..bdd6c8970a21 --- /dev/null +++ b/net-im/naim/naim-0.11.8.3.1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2008 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.3.1.ebuild,v 1.1 2008/03/27 14:47:48 coldwind Exp $ + +DESCRIPTION="An ncurses based AOL Instant Messenger" +HOMEPAGE="http://naim.n.ml.org" +SRC_URI="http://naim.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="debug screen" + +RESTRICT="tests" + +DEPEND=">=sys-libs/ncurses-5.2 + screen? ( app-misc/screen )" +RDEPEND="${DEPEND}" + +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/' \ + libfiretalk/Makefile.am \ + libfiretalk/Makefile.in +} + +src_compile() { + # --enable-profile + local myconf="" + + use debug && myconf="${myconf} --enable-debug" + use screen && myconf="${myconf} --enable-detach" + + econf \ + --with-pkgdocdir=/usr/share/doc/${PF} \ + ${myconf} \ + || die "configure failed" + + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS FAQ BUGS README NEWS ChangeLog doc/*.hlp +} |