blob: 90fdeb623b3b1f252a9b94b48efcdc8b1e910e13 (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit autotools git-r3
DESCRIPTION="Linux WebQQ Client"
HOMEPAGE="https://github.com/mathslinux/lwqq"
EGIT_REPO_URI="https://github.com/mathslinux/lwqq.git"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="sys-libs/zlib
dev-libs/libev
x11-libs/gtk+:3
dev-libs/glib:2
dev-db/sqlite:3"
DEPEND="${DEPEND}"
src_prepare() {
eautoreconf
}
|