blob: 06988692d81a47440e90923a7ce299f1a14c6a6f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/connman-gnome/connman-gnome-0.5.ebuild,v 1.2 2009/08/24 14:57:00 mr_bones_ Exp $
EAPI="2"
DESCRIPTION="Provides a daemon for managing internet connections"
HOMEPAGE="http://connman.net"
SRC_URI="mirror://kernel/linux/network/connman/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~arm ~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-libs/glib-2.16
>=sys-apps/dbus-1.2
>=dev-libs/dbus-glib-0.73
>=x11-libs/gtk+-2.10
net-misc/connman"
DEPEND="${RDEPEND}
>=dev-util/intltool-0.35"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|