diff options
author | Nicholas Henke <roughneck@gentoo.org> | 2002-11-03 15:42:27 +0000 |
---|---|---|
committer | Nicholas Henke <roughneck@gentoo.org> | 2002-11-03 15:42:27 +0000 |
commit | e365d66d09a837a9934d721f8ddf8db1faa78561 (patch) | |
tree | b16e913bc6c97a0c03e1927b581e880d8e7a7607 /net-im/imcom | |
parent | bumped version to 1.1.3 (diff) | |
download | gentoo-2-e365d66d09a837a9934d721f8ddf8db1faa78561.tar.gz gentoo-2-e365d66d09a837a9934d721f8ddf8db1faa78561.tar.bz2 gentoo-2-e365d66d09a837a9934d721f8ddf8db1faa78561.zip |
added PPC to keywords, bump version to 0.93
Diffstat (limited to 'net-im/imcom')
-rw-r--r-- | net-im/imcom/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/imcom/files/digest-imcom-0.93 | 1 | ||||
-rw-r--r-- | net-im/imcom/imcom-0.93.ebuild | 30 |
3 files changed, 38 insertions, 1 deletions
diff --git a/net-im/imcom/ChangeLog b/net-im/imcom/ChangeLog index fefde5a7ea6c..bc4f17d145f7 100644 --- a/net-im/imcom/ChangeLog +++ b/net-im/imcom/ChangeLog @@ -1,6 +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.1 2002/02/01 21:53:32 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/imcom/ChangeLog,v 1.2 2002/11/03 15:42:27 roughneck Exp $ + +*imcom-0.93 (3 Nov 2002) + + 3 Nov 2002; Nicholas Henke <roughneck@gentoo.org> imcom-0.93.ebuild : + + Added PPC to keywords. Bump version to 0.93 *imcom-0.92 (1 Feb 2002) diff --git a/net-im/imcom/files/digest-imcom-0.93 b/net-im/imcom/files/digest-imcom-0.93 new file mode 100644 index 000000000000..1742845b5787 --- /dev/null +++ b/net-im/imcom/files/digest-imcom-0.93 @@ -0,0 +1 @@ +MD5 0e63d044c48490cb84a326a64b2760c9 imcom-0.93.tar.gz 367948 diff --git a/net-im/imcom/imcom-0.93.ebuild b/net-im/imcom/imcom-0.93.ebuild new file mode 100644 index 000000000000..dc3ac718150b --- /dev/null +++ b/net-im/imcom/imcom-0.93.ebuild @@ -0,0 +1,30 @@ +# 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.93.ebuild,v 1.1 2002/11/03 15:42:27 roughneck 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" + +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 + +} |