blob: 320560a5804d904e8f5a44810f8033e74046b240 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/galago-daemon/galago-daemon-0.3.4.ebuild,v 1.1 2006/02/04 22:29:58 compnerd Exp $
inherit eutils autotools
DESCRIPTION="Galago presence daemon"
HOMEPAGE="http://www.galago-project.org/"
SRC_URI="http://www.galago-project.org/files/releases/source/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="test"
RDEPEND=">=dev-libs/glib-2.2.2
>=dev-libs/libgalago-0.3.3
>=sys-apps/dbus-0.22"
DEPEND="${RDEPEND}
dev-util/pkgconfig
test? ( dev-libs/check )"
src_unpack() {
unpack ${A}
cd ${S}
# Allow disabling of tests
epatch ${FILESDIR}/galago-daemon-0.3.4-test-option.patch
eautoreconf
}
src_compile() {
econf $(use_enable test tests) || die "configure failed"
emake || die "make failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
dodoc AUTHORS ChangeLog NEWS README
}
|