summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorBrandon Low <lostlogic@gentoo.org>2002-12-09 01:45:37 +0000
committerBrandon Low <lostlogic@gentoo.org>2002-12-09 01:45:37 +0000
commitd14bd828a3ffbc3dcd281362419029e40cb1236f (patch)
tree8e3310597b5e3ac05c2caaeb7a1637d88d0d9420 /net-im
parentadded missing files (diff)
downloadgentoo-2-d14bd828a3ffbc3dcd281362419029e40cb1236f.tar.gz
gentoo-2-d14bd828a3ffbc3dcd281362419029e40cb1236f.tar.bz2
gentoo-2-d14bd828a3ffbc3dcd281362419029e40cb1236f.zip
add new naim release candidate thanks to RPI Dan :)
Diffstat (limited to 'net-im')
-rw-r--r--net-im/naim/ChangeLog7
-rw-r--r--net-im/naim/files/digest-naim-0.11.5_rc11
-rw-r--r--net-im/naim/naim-0.11.5_rc1.ebuild56
3 files changed, 63 insertions, 1 deletions
diff --git a/net-im/naim/ChangeLog b/net-im/naim/ChangeLog
index a2cf6a926919..411516da9e50 100644
--- a/net-im/naim/ChangeLog
+++ b/net-im/naim/ChangeLog
@@ -1,6 +1,11 @@
# 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.7 2002/12/07 21:01:05 lostlogic Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/naim/ChangeLog,v 1.8 2002/12/09 01:45:37 lostlogic Exp $
+
+*naim-0.11.5_rc1 (08 Dec 2002)
+
+ 08 Dec 2002; Brandon Low <lostlogic@gentoo.org> naim-0.11.5_rc1.ebuild :
+ Dan is getting ready for release, and we will be right with him :)
*naim-0.11.5_pre1 (04 Dec 2002)
diff --git a/net-im/naim/files/digest-naim-0.11.5_rc1 b/net-im/naim/files/digest-naim-0.11.5_rc1
new file mode 100644
index 000000000000..027bf8e7d12b
--- /dev/null
+++ b/net-im/naim/files/digest-naim-0.11.5_rc1
@@ -0,0 +1 @@
+MD5 f36bcb4a6be5726aade444ab41e73963 naim-0.11.5-2002-12-08-1324.tar.gz 368339
diff --git a/net-im/naim/naim-0.11.5_rc1.ebuild b/net-im/naim/naim-0.11.5_rc1.ebuild
new file mode 100644
index 000000000000..52a03333ad41
--- /dev/null
+++ b/net-im/naim/naim-0.11.5_rc1.ebuild
@@ -0,0 +1,56 @@
+# 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.5_rc1.ebuild,v 1.1 2002/12/09 01:45:37 lostlogic Exp $
+
+VA="`echo ${PV}|sed -e 's:^\([0-9]*\)\..*$:\1:'`"
+VB="`echo ${PV}|sed -e 's:^[0-9]*\.\([0-9]*\)\..*$:\1:'`"
+FOLDER="naim-0.11.5"
+SNAP="2002-12-08-1324"
+SRC_URI="http://128.113.139.111/~n/.${PN}_archive/${VA}/${VB}/${FOLDER}-snap/${FOLDER}-${SNAP}.tar.gz"
+DESCRIPTION="An ncurses AOL Instant Messenger."
+HOMEPAGE="http://site.rpi-acm.org/info/naim/"
+P=${P/_rc1/}
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+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
+}