diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-25 07:33:51 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-25 07:33:51 +0000 |
commit | 738fc9d9e137266685d795844fd87800b5e8a0f2 (patch) | |
tree | ccc0599269c03caf3e0bcfc311aaf5d2042fe2b4 /net-im/naim | |
parent | new package (diff) | |
download | gentoo-2-738fc9d9e137266685d795844fd87800b5e8a0f2.tar.gz gentoo-2-738fc9d9e137266685d795844fd87800b5e8a0f2.tar.bz2 gentoo-2-738fc9d9e137266685d795844fd87800b5e8a0f2.zip |
bug fix release of naim
Diffstat (limited to 'net-im/naim')
-rw-r--r-- | net-im/naim/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/naim/files/digest-naim-0.11.4.9 | 1 | ||||
-rw-r--r-- | net-im/naim/naim-0.11.4.9.ebuild | 52 |
3 files changed, 60 insertions, 1 deletions
diff --git a/net-im/naim/ChangeLog b/net-im/naim/ChangeLog index 086813d6a39d..da8847d68f9f 100644 --- a/net-im/naim/ChangeLog +++ b/net-im/naim/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/naim # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.4 2002/10/19 20:16:50 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.5 2002/10/25 07:33:51 lostlogic Exp $ + +*naim-0.11.4.9 (25 Oct 2002) + + 25 Oct 2002; Brandon Low <lostlogic@gentoo.org> naim-0.11.4.9.ebuild : + + Another bugfix release. *naim-0.11.4.8 (19 Oct 2002) diff --git a/net-im/naim/files/digest-naim-0.11.4.9 b/net-im/naim/files/digest-naim-0.11.4.9 new file mode 100644 index 000000000000..50b9b8386d93 --- /dev/null +++ b/net-im/naim/files/digest-naim-0.11.4.9 @@ -0,0 +1 @@ +MD5 3ae383953856048e7a0aad3c213b28b1 naim-0.11.4.9.tar.gz 362509 diff --git a/net-im/naim/naim-0.11.4.9.ebuild b/net-im/naim/naim-0.11.4.9.ebuild new file mode 100644 index 000000000000..4b67d51490f1 --- /dev/null +++ b/net-im/naim/naim-0.11.4.9.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2002 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.4.9.ebuild,v 1.1 2002/10/25 07:33:51 lostlogic Exp $ + +# if the below URI isn't updated, check +# http://128.113.139.111/~n/.naim_archive/naim-VERSION.tar.gz +# but that doesn't have as good uptime. +SRC_URI="http://www.acm.rpi.edu/~n/${P}.tar.gz" +DESCRIPTION="An ncurses AOL Instant Messenger." +HOMEPAGE="http://site.rpi-acm.org/info/naim/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND=">=sys-libs/ncurses-5.2 + virtual/glibc" + +S="${WORKDIR}/${P}" + +src_compile() { + 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 +} |