blob: dd443b2581422d3cad23001cbc360619f7c4120c (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
if [[ ${PV} = *9999* ]]; then
EGIT_REPO_URI="git://github.com/balde/balde.git
https://github.com/balde/balde.git"
inherit git-r3 autotools
fi
DESCRIPTION="A microframework for C based on GLib and bad intentions"
HOMEPAGE="http://balde.io/"
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.bz2"
KEYWORDS="~amd64 ~x86"
if [[ ${PV} = *9999* ]]; then
SRC_URI=""
KEYWORDS=""
fi
LICENSE="LGPL-2"
SLOT="0"
IUSE="doc test"
RDEPEND=">=dev-libs/glib-2.34
dev-libs/fcgi
x11-misc/shared-mime-info"
if [[ ${PV} = *9999* ]]; then
RDEPEND="${RDEPEND}
dev-util/peg"
fi
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_prepare() {
[[ ${PV} = *9999* ]] && eautoreconf
default
}
src_configure() {
econf \
$(use_with doc doxygen) \
--disable-examples \
--without-valgrind
}
src_compile() {
default
use doc && emake doxygen
}
src_install() {
default
use doc && dohtml -r doc/build/html/.
}
|