diff options
author | Alexis Ballier <aballier@gentoo.org> | 2009-06-18 13:03:46 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2009-06-18 13:03:46 +0000 |
commit | a646da8f26a66ffd8516ac1b188fcacf1a2ece12 (patch) | |
tree | fbf2de145a0bbddcc336eb443a7864e387b9f945 /net-libs/libtelepathy | |
parent | keyword ~x86-fbsd and call elibtoolize for a sane .so versionning. (diff) | |
download | gentoo-2-a646da8f26a66ffd8516ac1b188fcacf1a2ece12.tar.gz gentoo-2-a646da8f26a66ffd8516ac1b188fcacf1a2ece12.tar.bz2 gentoo-2-a646da8f26a66ffd8516ac1b188fcacf1a2ece12.zip |
keyword ~x86-fbsd and call elibtoolize for a sane .so versionning.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libtelepathy')
-rw-r--r-- | net-libs/libtelepathy/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libtelepathy/libtelepathy-0.3.3.ebuild | 13 |
2 files changed, 15 insertions, 4 deletions
diff --git a/net-libs/libtelepathy/ChangeLog b/net-libs/libtelepathy/ChangeLog index 20e7939fe99a..aa6a54932cee 100644 --- a/net-libs/libtelepathy/ChangeLog +++ b/net-libs/libtelepathy/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libtelepathy # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtelepathy/ChangeLog,v 1.25 2009/03/29 15:50:52 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtelepathy/ChangeLog,v 1.26 2009/06/18 13:03:46 aballier Exp $ + + 18 Jun 2009; Alexis Ballier <aballier@gentoo.org> + libtelepathy-0.3.3.ebuild: + keyword ~x86-fbsd and call elibtoolize for a sane .so versionning. 29 Mar 2009; <solar@gentoo.org> libtelepathy-0.3.3.ebuild: - keyword ~arm diff --git a/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild b/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild index 47f699c702d7..5acd503866c9 100644 --- a/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild +++ b/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild @@ -1,21 +1,28 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild,v 1.6 2009/03/29 15:50:52 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libtelepathy/libtelepathy-0.3.3.ebuild,v 1.7 2009/06/18 13:03:46 aballier Exp $ -inherit flag-o-matic +inherit flag-o-matic libtool DESCRIPTION="A glib based library for Telepathy client development" HOMEPAGE="http://telepathy.freedesktop.org" SRC_URI="http://telepathy.freedesktop.org/releases/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="~arm ~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="" RDEPEND=">=dev-libs/glib-2.10 >=dev-libs/dbus-glib-0.73 >=net-libs/telepathy-glib-0.7.1" + +src_unpack() { + unpack ${A} + cd "${S}" + elibtoolize # for a sane .so versionning on BSD +} + DEPEND="${RDEPEND} dev-libs/libxslt" |