blob: 44d02e6c480d6fabc1cc675575f8a7dea6820d57 (
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
|
# 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-markdown.git
https://github.com/balde/balde-markdown.git"
inherit git-r3 autotools
fi
DESCRIPTION="A balde extension that adds Markdown support"
HOMEPAGE="https://github.com/balde/balde-markdown"
SRC_URI="https://github.com/balde/${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="test"
RDEPEND=">=dev-libs/glib-2.34
>=net-libs/balde-0.1
app-text/discount"
DEPEND="${RDEPEND}"
src_prepare() {
[[ ${PV} = *9999* ]] && eautoreconf
default
}
src_configure() {
econf \
--without-valgrind
}
|