diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-19 20:16:50 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-19 20:16:50 +0000 |
commit | 33feb010b6529f97e0b9fb0b23ab78eaf183344f (patch) | |
tree | 6ec03ee48d5282ed3e5b7d11869d63ebb11c42d1 /net-im/naim | |
parent | Removed the package.mask entry for net-dns/djbdns-1.05-r4 Am using ~arch (diff) | |
download | gentoo-2-33feb010b6529f97e0b9fb0b23ab78eaf183344f.tar.gz gentoo-2-33feb010b6529f97e0b9fb0b23ab78eaf183344f.tar.bz2 gentoo-2-33feb010b6529f97e0b9fb0b23ab78eaf183344f.zip |
like the changelog says
Diffstat (limited to 'net-im/naim')
-rw-r--r-- | net-im/naim/ChangeLog | 9 | ||||
-rw-r--r-- | net-im/naim/files/digest-naim-0.11.4.8 | 1 | ||||
-rw-r--r-- | net-im/naim/naim-0.11.4.8.ebuild | 50 |
3 files changed, 59 insertions, 1 deletions
diff --git a/net-im/naim/ChangeLog b/net-im/naim/ChangeLog index 96e5d21dded0..086813d6a39d 100644 --- a/net-im/naim/ChangeLog +++ b/net-im/naim/ChangeLog @@ -1,6 +1,13 @@ # 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.3 2002/10/19 19:32:38 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.4 2002/10/19 20:16:50 lostlogic Exp $ + +*naim-0.11.4.8 (19 Oct 2002) + + 19 Oct 2002; Brandon Low <lostlogic@gentoo.org> naim-0.11.4.8.ebuild : + + And moments later he made it a release... not masking, because it has + lots of goodness over the old one, bugfixes only. *naim-0.11.4.8_pre1 (19 Oct 2002) diff --git a/net-im/naim/files/digest-naim-0.11.4.8 b/net-im/naim/files/digest-naim-0.11.4.8 new file mode 100644 index 000000000000..c6c7b448d2f9 --- /dev/null +++ b/net-im/naim/files/digest-naim-0.11.4.8 @@ -0,0 +1 @@ +MD5 6f3cf7564b40b7e4f41ca2c2e06910de naim-0.11.4.8.tar.gz 362822 diff --git a/net-im/naim/naim-0.11.4.8.ebuild b/net-im/naim/naim-0.11.4.8.ebuild new file mode 100644 index 000000000000..a7a215da061b --- /dev/null +++ b/net-im/naim/naim-0.11.4.8.ebuild @@ -0,0 +1,50 @@ +# 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.8.ebuild,v 1.1 2002/10/19 20:16:50 lostlogic Exp $ + +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" +RDEPEND="${DEPEND}" + +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 +} |