blob: 685c177ff27f1df84d59e67275755f9638324f03 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
OASIS_BUILD_DOCS=1
OASIS_BUILD_TESTS=1
inherit oasis
DESCRIPTION="Library for dealing with 'text'"
HOMEPAGE="https://github.com/vbmithr/ocaml-text/"
SRC_URI="https://github.com/vbmithr/ocaml-text/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0/${PV}"
KEYWORDS="~amd64"
IUSE="pcre"
RDEPEND="virtual/libiconv
dev-ml/camlp4:=
pcre? ( dev-ml/pcre-ocaml:=[ocamlopt?] )"
DEPEND="${RDEPEND}
doc? ( dev-tex/rubber virtual/latex-base )"
DOCS=( "README" "CHANGES" )
src_configure() {
oasis_configure_opts="$(use_enable pcre)" \
oasis_src_configure
}
src_install() {
oasis_src_install
use doc && dodoc manual/*.pdf
}
|