blob: e7b9155d94ec09c489f8586aa25862eb0aa8e4f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# 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.8 2009/06/23 15:22:06 mr_bones_ Exp $
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="~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"
src_compile() {
# Force at least -O1
# https://bugs.freedesktop.org/show_bug.cgi?id=13560
export CFLAGS="-O1 ${CFLAGS}"
replace-flags -O0 -O1
econf
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "emake install failed"
dodoc AUTHORS ChangeLog README
}
|