diff options
author | Peter Weller <welp@gentoo.org> | 2008-05-29 16:11:28 +0000 |
---|---|---|
committer | Peter Weller <welp@gentoo.org> | 2008-05-29 16:11:28 +0000 |
commit | dfcc092393f0a888354935a3d1718974a3b0304a (patch) | |
tree | 1e7ab77b246b520f77fad1a7dbed36929bb9ad40 /net-misc/twitux | |
parent | python_mod_optimize is ROOT aware. (diff) | |
download | gentoo-2-dfcc092393f0a888354935a3d1718974a3b0304a.tar.gz gentoo-2-dfcc092393f0a888354935a3d1718974a3b0304a.tar.bz2 gentoo-2-dfcc092393f0a888354935a3d1718974a3b0304a.zip |
Bug 220925
(Portage version: 2.1.4.4)
Diffstat (limited to 'net-misc/twitux')
-rw-r--r-- | net-misc/twitux/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/twitux/twitux-0.62.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/net-misc/twitux/ChangeLog b/net-misc/twitux/ChangeLog index 01d8df1cca4a..329e29a7d9ae 100644 --- a/net-misc/twitux/ChangeLog +++ b/net-misc/twitux/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/twitux # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/twitux/ChangeLog,v 1.5 2008/05/20 16:28:27 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/twitux/ChangeLog,v 1.6 2008/05/29 16:11:28 welp Exp $ + +*twitux-0.62 (29 May 2008) + + 29 May 2008; <welp@gentoo.org> +twitux-0.62.ebuild: + Bug 220925 20 May 2008; Greg Kroah-Hartman <gregkh@gentoo.org> twitux-0.61-r1.ebuild: added ~x86 diff --git a/net-misc/twitux/twitux-0.62.ebuild b/net-misc/twitux/twitux-0.62.ebuild new file mode 100644 index 000000000000..a8e8c0ba13e8 --- /dev/null +++ b/net-misc/twitux/twitux-0.62.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/twitux/twitux-0.62.ebuild,v 1.1 2008/05/29 16:11:28 welp Exp $ + +EAPI=1 + +DESCRIPTION="A Twitter client for the Gnome desktop" +HOMEPAGE="http://live.gnome.org/DanielMorales/Twitux" +SRC_URI="mirror://sourceforge/twitux/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="spell gnome-keyring" + +DEPEND="net-libs/libsoup:2.4 + dev-libs/libxml2 + gnome-base/libgnome + gnome-base/gconf + x11-libs/gtk+:2 + dev-libs/dbus-glib + spell? ( app-text/aspell ) + gnome-keyring? ( gnome-base/gnome-keyring )" +RDEPEND="${DEPEND}" + +src_compile() { + econf $(use_enable spell aspell) \ + $(use_enable gnome-keyring) || die "econf failed" + + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS NEWS README TODO +} |