forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clsync-docs-0.4.1.ebuild
49 lines (41 loc) · 1.02 KB
/
clsync-docs-0.4.1.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
MY_PN="${PN%-docs}"
MY_P="${MY_PN}-${PV}"
if [[ ${PV} == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/xaionaro/${MY_PN}.git"
else
SRC_URI="https://github.com/xaionaro/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_P}"
fi
DESCRIPTION="Clsync and libclsync API documentation"
HOMEPAGE="http://ut.mephi.ru/oss/clsync https://github.com/xaionaro/clsync"
LICENSE="GPL-3+"
SLOT="0"
IUSE="api +examples"
DEPEND="
virtual/pkgconfig
api? ( app-doc/doxygen )
"
src_configure() {
: # doxygen doesn't depend on configuration
}
src_compile() {
if use api; then
doxygen .doxygen || die "doxygen failed"
fi
}
src_install() {
dodoc CONTRIB DEVELOPING NOTES PROTOCOL README.md SHORTHANDS TODO
if use api; then
dohtml -r doc/doxygen/html/*
dodoc -r doc/devel/*
fi
if use examples; then
docinto examples
dodoc -r examples/{production,clsync*}
fi
}