summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Raschbacher <lordvan@gentoo.org>2003-10-02 06:44:55 +0000
committerThomas Raschbacher <lordvan@gentoo.org>2003-10-02 06:44:55 +0000
commitc0cdafadb2bd17642eeee2b504db01fd1ebb63a3 (patch)
tree292a8c6a1087b26ca4be90b38e986c858ff1cf28 /net-im/imcom
parentcleaned up ebuild (diff)
downloadgentoo-2-c0cdafadb2bd17642eeee2b504db01fd1ebb63a3.tar.gz
gentoo-2-c0cdafadb2bd17642eeee2b504db01fd1ebb63a3.tar.bz2
gentoo-2-c0cdafadb2bd17642eeee2b504db01fd1ebb63a3.zip
cleaned up ebuild
Diffstat (limited to 'net-im/imcom')
-rw-r--r--net-im/imcom/ChangeLog8
-rw-r--r--net-im/imcom/Manifest6
-rw-r--r--net-im/imcom/files/digest-imcom-1.31-r11
-rw-r--r--net-im/imcom/imcom-1.31-r1.ebuild31
4 files changed, 41 insertions, 5 deletions
diff --git a/net-im/imcom/ChangeLog b/net-im/imcom/ChangeLog
index ae85d70124b2..1b826e417bef 100644
--- a/net-im/imcom/ChangeLog
+++ b/net-im/imcom/ChangeLog
@@ -1,11 +1,15 @@
# ChangeLog for net-im/imcom
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/ChangeLog,v 1.9 2003/08/21 08:21:33 lordvan Exp $
-
+# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/ChangeLog,v 1.10 2003/10/02 06:44:49 lordvan Exp $
+
*imcom-1.31 (21 Aug 2003)
21 Aug 2003; Thomas Raschbacher <lordvan@gentoo.org> imcom-1.31.ebuild:
new version
removed betas and old versions
+ 02 Oct 2003; Thomas Raschbacher <lordvan@gentoo.org> imcom-1.31-r1.ebuild:
+ revision bump
+ cleaned up ebuild bug #24179
+ (thanks to splite <splite-gentoo@sigint.cs.purdue.edu> for pointing this out)
*imcom-1.30_beta9 (21 May 2003)
21 May 2003; Thomas Raschbacher <lordvan@gentoo.org> imcom-1.30_beta9.ebuild:
diff --git a/net-im/imcom/Manifest b/net-im/imcom/Manifest
index bd658239c0ad..956d4c2f7a99 100644
--- a/net-im/imcom/Manifest
+++ b/net-im/imcom/Manifest
@@ -1,7 +1,7 @@
+MD5 23302197bd0e0c3901dd1ceedaa4dfe7 imcom-1.31.ebuild 925
MD5 485d094514364b73f811c24a830c1fda imcom-0.95.ebuild 783
-MD5 5714497e6bf99efcddfed6b7b1bd6845 imcom-1.31-r1.ebuild 896
-MD5 23302197bd0e0c3901dd1ceedaa4dfe7 imcom-1.31.ebuild.~1.3.~ 925
-MD5 728ddda51ab924bb64c91ecd07500502 ChangeLog 1717
+MD5 99735e124a55af261cacd16c4a3176b2 imcom-1.31-r1.ebuild 898
+MD5 edc377571b6b626ec51bd24ae397b8c7 ChangeLog 1923
MD5 1cba1b4de0a2f189931b618d764daa74 metadata.xml 404
MD5 2728c9cb165a176d49822b58ddd6825b files/digest-imcom-1.31-r1 62
MD5 3034003b5e28e3d66787f708dbc8dec6 files/Makefile-1.31 1308
diff --git a/net-im/imcom/files/digest-imcom-1.31-r1 b/net-im/imcom/files/digest-imcom-1.31-r1
new file mode 100644
index 000000000000..4affa3704e72
--- /dev/null
+++ b/net-im/imcom/files/digest-imcom-1.31-r1
@@ -0,0 +1 @@
+MD5 39e910c77d696ea3b607ec34f113b93b imcom-1.31.tar.gz 280266
diff --git a/net-im/imcom/imcom-1.31-r1.ebuild b/net-im/imcom/imcom-1.31-r1.ebuild
new file mode 100644
index 000000000000..e8c8f8922f6f
--- /dev/null
+++ b/net-im/imcom/imcom-1.31-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/imcom-1.31-r1.ebuild,v 1.1 2003/10/02 06:44:49 lordvan Exp $
+
+MYVER=${PV}
+S=${WORKDIR}/${PN}-${MYVER}
+SRC_URI="http://imcom.floobin.cx/files/${P}.tar.gz"
+#SRC_URI="http://nafai.dyndns.org/files/imcom-betas/${PN}-${MYVER}.tar.gz"
+HOMEPAGE="http://imcom.floobin.cx"
+DESCRIPTION="Python commandline Jabber Client"
+
+DEPEND=">=dev-lang/python-2.2
+ >=dev-python/pyxml-0.7"
+RDEPEND="${DEPEND}"
+
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="~x86 ~ppc"
+IUSE=""
+
+src_compile() {
+ ./configure --prefix=/usr || die "configure failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ dodoc CONTRIBUTORS LICENSE README* TODO WHATSNEW docs/CHANGELOG
+ dohtml docs/*.html docs/*.png docs/*.jpg docs/*.css
+ doman docs/imcom.1
+ make prefix=${D}/usr install-bin
+}