summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Kennedy <mkennedy@gentoo.org>2002-10-09 05:35:19 +0000
committerMatthew Kennedy <mkennedy@gentoo.org>2002-10-09 05:35:19 +0000
commit389580cb1b4ee443386b135c2f4a02faae3e94a5 (patch)
treefce9bf2fcd9f0fdc69a4558347c9ccc32abbdf81 /net-misc
parentAdded patches 201-215. Latest patches fix a bug that crashes VIM; atleast on ... (diff)
downloadgentoo-2-389580cb1b4ee443386b135c2f4a02faae3e94a5.tar.gz
gentoo-2-389580cb1b4ee443386b135c2f4a02faae3e94a5.tar.bz2
gentoo-2-389580cb1b4ee443386b135c2f4a02faae3e94a5.zip
minor version bump
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/gyach/ChangeLog9
-rw-r--r--net-misc/gyach/files/digest-gyach-0.9.01
-rw-r--r--net-misc/gyach/gyach-0.9.0.ebuild36
3 files changed, 45 insertions, 1 deletions
diff --git a/net-misc/gyach/ChangeLog b/net-misc/gyach/ChangeLog
index b0c9e3011d21..b81e1cdfbd08 100644
--- a/net-misc/gyach/ChangeLog
+++ b/net-misc/gyach/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for net-misc/gyach
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/net-misc/gyach/ChangeLog,v 1.6 2002/10/01 05:26:00 bcowan Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gyach/ChangeLog,v 1.7 2002/10/09 05:35:19 mkennedy Exp $
+
+*gyach-0.9.0 (09 Oct 2002)
+
+ 09 Oct 2002; Matthew Kennedy <mkennedy@gentoo.org> gyach-0.9.0.ebuild,
+ ChangeLog, files/digest-gyach-0.9.0 :
+
+ Minor version bump.
*gyach-0.8.5 (01 Oct 2002)
diff --git a/net-misc/gyach/files/digest-gyach-0.9.0 b/net-misc/gyach/files/digest-gyach-0.9.0
new file mode 100644
index 000000000000..5738315454cc
--- /dev/null
+++ b/net-misc/gyach/files/digest-gyach-0.9.0
@@ -0,0 +1 @@
+MD5 d3194770e82aff329adb593ca679a474 gyach-0.9.0.tar.gz 226287
diff --git a/net-misc/gyach/gyach-0.9.0.ebuild b/net-misc/gyach/gyach-0.9.0.ebuild
new file mode 100644
index 000000000000..bb89a18766a6
--- /dev/null
+++ b/net-misc/gyach/gyach-0.9.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/gyach/gyach-0.9.0.ebuild,v 1.1 2002/10/09 05:35:19 mkennedy Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="GTK+-based Yahoo! chat client"
+SRC_URI="http://www4.infi.net/~cpinkham/gyach/code/${P}.tar.gz"
+HOMEPAGE="http://www4.infi.net/~cpinkham/gyach/"
+KEYWORDS="x86 sparc sparc64"
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="virtual/glibc
+ =x11-libs/gtk+-2*"
+
+RDEPEND="${DEPEND}"
+
+src_compile() {
+ ./configure --host=${CHOST} --prefix=/usr || die
+ emake || die
+}
+
+src_install() {
+ make prefix=${D}/usr install || die
+ dodoc AUTHORS BUGS COPYING ChangeLog INSTALL NEWS README* TODO
+ dodoc sample.*
+
+ # install icon and desktop entry for gnome
+ if [ "`use gnome`" ] ; then
+ insinto /usr/share/pixmaps
+ doins ${D}/usr/share/gyach/pixmaps/gyach-icon.xpm
+ insinto /usr/share/gnome/apps/Internet
+ doins ${FILESDIR}/gyach.desktop
+ fi
+
+}