dev-python/josepy: 1.1.0 cleanup
[gentoo.git] / eclass / leechcraft.eclass
1 # Copyright 1999-2015 Gentoo Foundation
2 # Distributed under the terms of the GNU General Public License v2
3 #
4 # @ECLASS: leechcraft.eclass
5 # @MAINTAINER:
6 # 0xd34df00d@gmail.com
7 # @AUTHOR:
8 # 0xd34df00d@gmail.com
9 # NightNord@niifaq.ru
10 # @SUPPORTED_EAPIS: 6 7
11 # @BLURB: Common functions and setup utilities for the LeechCraft app
12 # @DESCRIPTION:
13 # The leechcraft eclass contains a common set of functions and steps
14 # needed to build LeechCraft core or its plugins.
15 #
16 # Though this eclass seems to be small at the moment, it seems like a
17 # good idea to make all plugins inherit from it, since all plugins
18 # have mostly the same configuring/build process.
19 #
20 # Thanks for original eclass to Andrian Nord <NightNord@niifaq.ru>.
21 #
22 # Only EAPI >=6 is supported
23
24 case ${EAPI:-0} in
25         6|7) ;;
26         *) die "EAPI not supported, bug ebuild mantainer" ;;
27 esac
28
29 inherit cmake-utils
30
31 if [[ ${PV} == 9999 ]]; then
32         EGIT_REPO_URI="https://github.com/0xd34df00d/leechcraft.git"
33
34         inherit git-r3
35 else
36         DEPEND="app-arch/xz-utils"
37         SRC_URI="https://dist.leechcraft.org/LeechCraft/${PV}/leechcraft-${PV}.tar.xz"
38         S="${WORKDIR}/leechcraft-${PV}"
39 fi
40
41 HOMEPAGE="https://leechcraft.org/"
42 LICENSE="Boost-1.0"
43
44 # @ECLASS-VARIABLE: LEECHCRAFT_PLUGIN_CATEGORY
45 # @DEFAULT_UNSET
46 # @DESCRIPTION:
47 # Set this to the category of the plugin, if any.
48 : ${LEECHCRAFT_PLUGIN_CATEGORY:=}
49
50 if [[ "${LEECHCRAFT_PLUGIN_CATEGORY}" ]]; then
51         CMAKE_USE_DIR="${S}"/src/plugins/${LEECHCRAFT_PLUGIN_CATEGORY}/${PN#lc-}
52 elif [[ ${PN} != lc-core ]]; then
53         CMAKE_USE_DIR="${S}"/src/plugins/${PN#lc-}
54 else
55         CMAKE_USE_DIR="${S}"/src
56 fi