blob: 167016ffd7b6c80efc793901ae4da094ccb7de25 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit autotools git-2
DESCRIPTION="an IRC bot written in Vala with support for dynamic plugins and a sqlite3-based database"
HOMEPAGE="https://github.com/cmende/foobot-vala"
EGIT_REPO_URI="git://github.com/cmende/${PN}-vala.git"
EGIT_BOOTSTRAP="eautoreconf"
LICENSE="BSD"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="dev-libs/glib:2
dev-libs/libpeas
dev-libs/sqlheavy"
DEPEND="${RDEPEND}
dev-lang/vala:0.16
virtual/pkgconfig"
src_configure() {
VALAC="$(type -p valac-0.16)" econf
}
src_install() {
default
find "${ED}" -name "*.la" -delete || die
}
|