blob: a0ff7c94d040821d58ae0edf36ead5fa0f5242b8 (
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
|
# Copyright 1999-2012 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.5.1.ebuild,v 1.17 2012/05/24 04:24:11 vapier Exp $
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="alpha amd64 hppa ia64 ppc ppc64 x86 ~x86-fbsd"
IUSE="test"
RDEPEND=">=dev-libs/glib-2.8
>=dev-libs/libgalago-0.5.2
>=dev-libs/dbus-glib-0.71"
DEPEND="${RDEPEND}
virtual/pkgconfig
test? ( dev-libs/check )"
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
}
|