blob: e604450585a4b88f6b2cfe909867012a22e7bcdf (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit git-2 autotools
DESCRIPTION="A full-featured GTK based trayicon UI for ConnMan"
HOMEPAGE="https://github.com/tbursztyka/connman-ui"
EGIT_REPO_URI="git://github.com/tbursztyka/${PN}.git"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
DEPEND="net-misc/connman
>=sys-apps/dbus-1.4
>=dev-libs/glib-2.28
x11-libs/gtk+:3"
RDEPEND="${DEPEND}"
src_prepare() {
eautoreconf
}
|