diff options
author | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 20:13:13 +0000 |
---|---|---|
committer | Kevin McCarthy <signals@gentoo.org> | 2011-03-02 20:13:13 +0000 |
commit | 497e06d10a8c5779b2020117bd05051f3b1b6316 (patch) | |
tree | 01bfa171df27257d5b1e448374e41393c4f9a50d /net-im/gyach | |
parent | Correct Slots for gtk 3 introduction to tree (diff) | |
download | historical-497e06d10a8c5779b2020117bd05051f3b1b6316.tar.gz historical-497e06d10a8c5779b2020117bd05051f3b1b6316.tar.bz2 historical-497e06d10a8c5779b2020117bd05051f3b1b6316.zip |
Slotted gtk+ depend and EAPI=2 bump to support it.
Package-Manager: portage-2.2.0_alpha25/cvs/Linux x86_64
Diffstat (limited to 'net-im/gyach')
-rw-r--r-- | net-im/gyach/ChangeLog | 7 | ||||
-rw-r--r-- | net-im/gyach/gyach-0.9.8.ebuild | 13 |
2 files changed, 14 insertions, 6 deletions
diff --git a/net-im/gyach/ChangeLog b/net-im/gyach/ChangeLog index 0fc2bc7ca244..b67acf855b9c 100644 --- a/net-im/gyach/ChangeLog +++ b/net-im/gyach/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/gyach -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gyach/ChangeLog,v 1.13 2008/12/27 23:18:44 coldwind Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/gyach/ChangeLog,v 1.14 2011/03/02 20:13:13 signals Exp $ + + 02 Mar 2011; Kevin McCarthy <signals@gentoo.org> gyach-0.9.8.ebuild: + Slotted gtk+ depend and EAPI=2 bump to support it. 27 Dec 2008; Santiago M. Mola <coldwind@gentoo.org> -files/gyach-0.9.7-yahoo-auth-2004-06-24.diff, diff --git a/net-im/gyach/gyach-0.9.8.ebuild b/net-im/gyach/gyach-0.9.8.ebuild index d94a32c1083a..b75fb3d4ecfa 100644 --- a/net-im/gyach/gyach-0.9.8.ebuild +++ b/net-im/gyach/gyach-0.9.8.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gyach/gyach-0.9.8.ebuild,v 1.3 2008/12/27 23:18:44 coldwind Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gyach/gyach-0.9.8.ebuild,v 1.4 2011/03/02 20:13:13 signals Exp $ + +EAPI=2 DESCRIPTION="GTK+-based Yahoo! chat client" SRC_URI="http://www4.infi.net/~cpinkham/gyach/code/${P}.tar.gz" @@ -10,10 +12,13 @@ IUSE="gnome" LICENSE="GPL-2" SLOT="0" -DEPEND="=x11-libs/gtk+-2*" +DEPEND="x11-libs/gtk+:2" -src_compile() { +src_configure() { ./configure --host=${CHOST} --prefix=/usr || die +} + +src_compile() { emake || die } |