diff options
author | Pacho Ramos <pacho@gentoo.org> | 2010-09-29 17:38:53 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2010-09-29 17:38:53 +0000 |
commit | e59081b44835f09a9d9f27ea8d05f5abfe91a1ec (patch) | |
tree | be14a2d09e27a7ea17067794779ef08b911179e4 /net-irc/telepathy-idle | |
parent | Version bump with multiple bugfixes and working tests (bug #330273). (diff) | |
download | gentoo-2-e59081b44835f09a9d9f27ea8d05f5abfe91a1ec.tar.gz gentoo-2-e59081b44835f09a9d9f27ea8d05f5abfe91a1ec.tar.bz2 gentoo-2-e59081b44835f09a9d9f27ea8d05f5abfe91a1ec.zip |
Version bump with some fixes.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-irc/telepathy-idle')
-rw-r--r-- | net-irc/telepathy-idle/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/net-irc/telepathy-idle/ChangeLog b/net-irc/telepathy-idle/ChangeLog index 31786947f27e..589345c45053 100644 --- a/net-irc/telepathy-idle/ChangeLog +++ b/net-irc/telepathy-idle/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/telepathy-idle # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.19 2010/09/11 09:04:28 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/ChangeLog,v 1.20 2010/09/29 17:38:53 pacho Exp $ + +*telepathy-idle-0.1.6 (29 Sep 2010) + + 29 Sep 2010; Pacho Ramos <pacho@gentoo.org> +telepathy-idle-0.1.6.ebuild: + Version bump with some fixes. 11 Sep 2010; <nixnut@gentoo.org> telepathy-idle-0.1.5.ebuild: ppc stable #321591 diff --git a/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild b/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild new file mode 100644 index 000000000000..9ee72e5c7f17 --- /dev/null +++ b/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/telepathy-idle/telepathy-idle-0.1.6.ebuild,v 1.1 2010/09/29 17:38:53 pacho Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="Full-featured IRC connection manager for Telepathy." +HOMEPAGE="http://telepathy.freedesktop.org/wiki/Components" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="test" + +RDEPEND="dev-libs/dbus-glib + >=dev-libs/glib-2.8.6:2 + >=dev-libs/openssl-0.9.7 + >=net-libs/telepathy-glib-0.8 + sys-apps/dbus" +DEPEND="${RDEPEND} + dev-util/pkgconfig + test? ( dev-python/twisted-words )" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS || die +} |