commit:     6ad554b297eef7657f056f907e492fead489b3a2
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 20 15:59:40 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Oct 20 15:59:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad554b2

leechcraft.eclass: Remove

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 eclass/leechcraft.eclass | 60 ------------------------------------------------
 1 file changed, 60 deletions(-)

diff --git a/eclass/leechcraft.eclass b/eclass/leechcraft.eclass
deleted file mode 100644
index c53f6712d86..00000000000
--- a/eclass/leechcraft.eclass
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-#
-# @ECLASS: leechcraft.eclass
-# @MAINTAINER:
-# [email protected]
-# @AUTHOR:
-# [email protected]
-# [email protected]
-# @SUPPORTED_EAPIS: 6 7
-# @BLURB: Common functions and setup utilities for the LeechCraft app
-# @DESCRIPTION:
-# The leechcraft eclass contains a common set of functions and steps
-# needed to build LeechCraft core or its plugins.
-#
-# Though this eclass seems to be small at the moment, it seems like a
-# good idea to make all plugins inherit from it, since all plugins
-# have mostly the same configuring/build process.
-#
-# Thanks for original eclass to Andrian Nord <[email protected]>.
-#
-# Only EAPI >=6 is supported
-
-case ${EAPI:-0} in
-       6) inherit cmake-utils ;;
-       7) inherit cmake ;;
-       *) die "EAPI not supported, bug ebuild mantainer" ;;
-esac
-
-if [[ ${PV} == 9999 ]]; then
-       EGIT_REPO_URI="https://github.com/0xd34df00d/leechcraft.git";
-
-       inherit git-r3
-else
-       
SRC_URI="https://dist.leechcraft.org/LeechCraft/${PV}/leechcraft-${PV}.tar.xz";
-       S="${WORKDIR}/leechcraft-${PV}"
-fi
-
-HOMEPAGE="https://leechcraft.org/";
-LICENSE="Boost-1.0"
-
-DEPEND="
-       dev-qt/qtcore:5
-       dev-qt/qtgui:5
-"
-RDEPEND="${DEPEND}"
-
-# @ECLASS-VARIABLE: LEECHCRAFT_PLUGIN_CATEGORY
-# @DEFAULT_UNSET
-# @DESCRIPTION:
-# Set this to the category of the plugin, if any.
-: ${LEECHCRAFT_PLUGIN_CATEGORY:=}
-
-if [[ "${LEECHCRAFT_PLUGIN_CATEGORY}" ]]; then
-       CMAKE_USE_DIR="${S}"/src/plugins/${LEECHCRAFT_PLUGIN_CATEGORY}/${PN#lc-}
-elif [[ ${PN} != lc-core ]]; then
-       CMAKE_USE_DIR="${S}"/src/plugins/${PN#lc-}
-else
-       CMAKE_USE_DIR="${S}"/src
-fi

Reply via email to