summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorThomas Raschbacher <lordvan@gentoo.org>2002-12-05 14:17:09 +0000
committerThomas Raschbacher <lordvan@gentoo.org>2002-12-05 14:17:09 +0000
commit22cf4faff5a324b385d3294eb54452375bd7ffff (patch)
tree493e62ceb920ab4de81a54a3290438c3e9f476fd /net-im
parentfix digest; tweak xft2 detection code (diff)
downloadgentoo-2-22cf4faff5a324b385d3294eb54452375bd7ffff.tar.gz
gentoo-2-22cf4faff5a324b385d3294eb54452375bd7ffff.tar.bz2
gentoo-2-22cf4faff5a324b385d3294eb54452375bd7ffff.zip
New version and added IUSE
Diffstat (limited to 'net-im')
-rw-r--r--net-im/imcom/ChangeLog7
-rw-r--r--net-im/imcom/files/digest-imcom-0.951
-rw-r--r--net-im/imcom/imcom-0.95.ebuild31
3 files changed, 38 insertions, 1 deletions
diff --git a/net-im/imcom/ChangeLog b/net-im/imcom/ChangeLog
index bc4f17d145f7..9b169da87780 100644
--- a/net-im/imcom/ChangeLog
+++ b/net-im/imcom/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for net-im/imcom
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/ChangeLog,v 1.2 2002/11/03 15:42:27 roughneck Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/ChangeLog,v 1.3 2002/12/05 14:17:09 lordvan Exp $
+*imcom-0.95 (05 Dec 2002)
+ 05 Nov 2002; Thomas Raschbacher <lordvan@gentoo.org> imcom-0.95.ebuild:
+ Added IUSE
+ Bump version to 0.95
+
*imcom-0.93 (3 Nov 2002)
3 Nov 2002; Nicholas Henke <roughneck@gentoo.org> imcom-0.93.ebuild :
diff --git a/net-im/imcom/files/digest-imcom-0.95 b/net-im/imcom/files/digest-imcom-0.95
new file mode 100644
index 000000000000..477c81941188
--- /dev/null
+++ b/net-im/imcom/files/digest-imcom-0.95
@@ -0,0 +1 @@
+MD5 d921cc5d60859c1500671290802fe583 imcom-0.95.tar.gz 245812
diff --git a/net-im/imcom/imcom-0.95.ebuild b/net-im/imcom/imcom-0.95.ebuild
new file mode 100644
index 000000000000..88b4ce885fd7
--- /dev/null
+++ b/net-im/imcom/imcom-0.95.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/imcom-0.95.ebuild,v 1.1 2002/12/05 14:17:09 lordvan Exp $
+
+S=${WORKDIR}/${P}
+SRC_URI="http://imcom.floobin.cx/files/${P}.tar.gz"
+HOMEPAGE="http://imcom.floobin.cx"
+DESCRIPTION="Python commandline Jabber Client"
+
+DEPEND=">=dev-lang/python-2.2
+ >=dev-python/PyXML-0.7"
+RDEPEND=""
+
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="x86 ppc"
+IUSE=""
+
+src_install() {
+
+ dodir /usr/bin
+ dodir /usr/share/imcom
+ dodoc AutoStatus.API CONTRIBUTORS LICENSE README* TODO WHATSNEW
+ dodoc docs/*
+ cp *.py ${D}/usr/share/imcom
+ mv imcom imcom.orig
+ sed -e 's:/usr/local/share:/usr/share:' imcom.orig | cat > imcom
+ chmod 755 imcom
+ dobin imcom
+
+}