diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-03-09 11:33:08 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-03-09 11:33:08 +0000 |
commit | 0d6fd51a63e22c5883232b9a90d744cc4791189e (patch) | |
tree | 409b193ddffdb82a93ab826b6f0d35f2bad42223 /net-im/telepathy-mission-control | |
parent | Unmask telepathy-glib and telepathy-farsight (diff) | |
download | gentoo-2-0d6fd51a63e22c5883232b9a90d744cc4791189e.tar.gz gentoo-2-0d6fd51a63e22c5883232b9a90d744cc4791189e.tar.bz2 gentoo-2-0d6fd51a63e22c5883232b9a90d744cc4791189e.zip |
Bump to 5.7.6, disable static libs, drop la files
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'net-im/telepathy-mission-control')
-rw-r--r-- | net-im/telepathy-mission-control/ChangeLog | 8 | ||||
-rw-r--r-- | net-im/telepathy-mission-control/telepathy-mission-control-5.7.6.ebuild | 52 |
2 files changed, 59 insertions, 1 deletions
diff --git a/net-im/telepathy-mission-control/ChangeLog b/net-im/telepathy-mission-control/ChangeLog index 0100a1b3d8eb..60e3c7e636ab 100644 --- a/net-im/telepathy-mission-control/ChangeLog +++ b/net-im/telepathy-mission-control/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-im/telepathy-mission-control # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.40 2011/02/24 20:57:52 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/ChangeLog,v 1.41 2011/03/09 11:33:08 nirbheek Exp $ + +*telepathy-mission-control-5.7.6 (09 Mar 2011) + + 09 Mar 2011; Nirbheek Chauhan <nirbheek@gentoo.org> + +telepathy-mission-control-5.7.6.ebuild: + Bump to 5.7.6, disable static libs, drop la files 24 Feb 2011; Thomas Kahle <tomka@gentoo.org> telepathy-mission-control-5.6.1.ebuild: diff --git a/net-im/telepathy-mission-control/telepathy-mission-control-5.7.6.ebuild b/net-im/telepathy-mission-control/telepathy-mission-control-5.7.6.ebuild new file mode 100644 index 000000000000..c365f74561f0 --- /dev/null +++ b/net-im/telepathy-mission-control/telepathy-mission-control-5.7.6.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-im/telepathy-mission-control/telepathy-mission-control-5.7.6.ebuild,v 1.1 2011/03/09 11:33:08 nirbheek Exp $ + +EAPI="3" +PYTHON_DEPEND="2:2.5" + +inherit python + +DESCRIPTION="Telepathy Mission Control" +HOMEPAGE="http://telepathy.freedesktop.org" +SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="gnome-keyring test" + +RDEPEND=">=net-libs/telepathy-glib-0.13.14 + >=dev-libs/dbus-glib-0.82 + >=gnome-base/gconf-2 + gnome-keyring? ( || ( gnome-base/libgnome-keyring <gnome-base/gnome-keyring-2.29.4 ) )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-libs/libxslt + test? ( dev-python/twisted-words )" + +# Tests are broken, see upstream bug #29334 +# upstream doesn't want it enabled everywhere +RESTRICT="test" + +pkg_setup() { + python_set_active_version 2 +} + +src_prepare() { + python_convert_shebangs -r 2 . +} + +src_configure() { + # creds is not available and no support mcd-plugins for now + econf --disable-static\ + --disable-mcd-plugins \ + $(use_enable gnome-keyring) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog || die + + find "${D}" -name '*.la' -exec rm -f '{}' + || die +} |