diff options
author | Nick Hadaway <raker@gentoo.org> | 2003-02-22 20:28:17 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2003-02-22 20:28:17 +0000 |
commit | 18371aad55aba8c56d61d1b0e401c345010a2efd (patch) | |
tree | 12af6a04a2e23e4100af15edb67419708a3db2d4 /net-im/naim | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-18371aad55aba8c56d61d1b0e401c345010a2efd.tar.gz gentoo-2-18371aad55aba8c56d61d1b0e401c345010a2efd.tar.bz2 gentoo-2-18371aad55aba8c56d61d1b0e401c345010a2efd.zip |
Version bump.
Diffstat (limited to 'net-im/naim')
-rw-r--r-- | net-im/naim/ChangeLog | 10 | ||||
-rw-r--r-- | net-im/naim/files/digest-naim-0.11.5.5 | 1 | ||||
-rw-r--r-- | net-im/naim/naim-0.11.5.5.ebuild | 62 |
3 files changed, 72 insertions, 1 deletions
diff --git a/net-im/naim/ChangeLog b/net-im/naim/ChangeLog index 2891a5552283..4fa8dfce041d 100644 --- a/net-im/naim/ChangeLog +++ b/net-im/naim/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for net-im/naim # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.16 2003/02/12 08:02:52 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.17 2003/02/22 20:28:17 raker Exp $ + +*naim-0.11.5.5 (22 Feb 2003) + + 22 Feb 2003; Nick Hadaway <raker@gentoo.org> naim-0.11.5.5.ebuild, + files/digest-naim-0.11.5.5 : + The "I just realized naim has more subversions than the linux kernel" + release. Version bump. Lots of nice fixes. As much as the critics + guffaw at using a "console" program in x-windows, it is plausible :) 10 Feb 2003; Peter Johanson <latexer@gentoo.org> naim-0.11.5.1.ebuild naim-0.11.5.4.ebuild : Added ~alpha to KEYWORDS diff --git a/net-im/naim/files/digest-naim-0.11.5.5 b/net-im/naim/files/digest-naim-0.11.5.5 new file mode 100644 index 000000000000..acee2d58bb06 --- /dev/null +++ b/net-im/naim/files/digest-naim-0.11.5.5 @@ -0,0 +1 @@ +MD5 2a51f9649231ec86c9ea937641a95d71 naim-0.11.5.5.tar.gz 401561 diff --git a/net-im/naim/naim-0.11.5.5.ebuild b/net-im/naim/naim-0.11.5.5.ebuild new file mode 100644 index 000000000000..c913c264aaf5 --- /dev/null +++ b/net-im/naim/naim-0.11.5.5.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.5.5.ebuild,v 1.1 2003/02/22 20:28:17 raker Exp $ + +VA="`echo ${PV}|sed -e 's:^\([0-9]*\)\..*$:\1:'`" +VB="`echo ${PV}|sed -e 's:^[0-9]*\.\([0-9]*\)\..*$:\1:'`" +FOLDER="${P}" +SNAP="" +SRC_URI="http://128.113.139.111/~n/.${PN}_archive/${VA}/${VB}/${FOLDER}${SNAP}.tar.gz" +DESCRIPTION="An ncurses AOL Instant Messenger." +HOMEPAGE="http://site.rpi-acm.org/info/naim/" +#P="`echo ${P}|sed -e 's:_.*$::'`" +P="${P/_/}" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86 ~ppc ~alpha" + +DEPEND=">=sys-libs/ncurses-5.2 + virtual/glibc" + +S="${WORKDIR}/${P}" + +src_compile() { + einfo "${P}" + + local myconf + myconf="--with-gnu-ld --enable-detach" + use pic && myconf="${myconf} --with-pic" + use static && myconf="${myconf} --enable-static=yes" + + econf ${myconf} || die "configure failed" + emake || die "make failed" +} + +src_install() { + dobin src/naim + + doman naim.1 + + dodoc AUTHORS BUGS ChangeLog FAQ NEWS README doc/* + + insinto /usr/share/${P} + newins contrib/README.aimconvert README.aimconvert + newins contrib/aimconvert.tcl aimconvert.tcl + newins contrib/extractbuddy.sh extractbuddy.sh + newins contrib/sendim.sh sendim.sh + newins src/cmplhlp2.sh cmplhlp2.sh + newins src/cmplhelp.sh cmplhelp.sh + newins src/cmplsample.sh cmplsample.sh + newins src/genkeys.sh genkeys.sh + + insinto /usr/include/${PN} + newins include/modutil.h modutil.h + newins include/naim.h naim.h + newins include/config.h config.h + + dodir /usr/share/doc/naim + insinto /usr/share/doc/naim + doins ${S}/src/{commands,keyboard}.txt + doins ${S}/doc/COLORS ${S}/FAQ +} |