diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2003-10-02 06:44:55 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2003-10-02 06:44:55 +0000 |
commit | d52fbd9cfd644110a4a7528c8b381c7112847f56 (patch) | |
tree | f1d1ccd14f73673ffcdf369aade10ee53f8c67cc /net-im/imcom | |
parent | cleaned up ebuild (diff) | |
download | historical-d52fbd9cfd644110a4a7528c8b381c7112847f56.tar.gz historical-d52fbd9cfd644110a4a7528c8b381c7112847f56.tar.bz2 historical-d52fbd9cfd644110a4a7528c8b381c7112847f56.zip |
cleaned up ebuild
Diffstat (limited to 'net-im/imcom')
-rw-r--r-- | net-im/imcom/Manifest | 6 | ||||
-rw-r--r-- | net-im/imcom/files/digest-imcom-1.31-r1 | 1 | ||||
-rw-r--r-- | net-im/imcom/imcom-1.31-r1.ebuild | 31 |
3 files changed, 35 insertions, 3 deletions
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 +} |