# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ # @ECLASS: calculate-utils-r12.eclass # @MAINTAINER: # support@calculate.ru # @AUTHOR: # Author: Mir Calculate # @BLURB: Functions for calculate-utils # @DESCRIPTION: # This eclass use for calculate-utils ebuild PYTHON_COMPAT=(python2_7) DISTUTILS_USE_SETUPTOOLS=manual inherit distutils2 eutils EXPORTED_FUNCTIONS="src_compile src_install pkg_preinst" CALCULATE_URI="ftp://ftp.calculate-linux.org/calculate/source/calculate3" MIRROR_URI="http://mirror.yandex.ru/calculate/source/calculate3" # @ECLASS-VARIABLE: CALCULATE_MODULES # @DESCRIPTION: # Associative array module names and versions # Example: # declare -A CALCULATE_MODULES=( # ["console-gui"]="3.2.3.4" # ) # @ECLASS-VARIABLE: CALCULATE_MODULES_USE # @DESCRIPTION: # Associative array module names and use for IUSE # Example: # declare -A CALCULATE_MODULES_USE=( # ["console-gui"]="" # ) # @ECLASS-VARIABLE: CALCULATE_TARBALL # @DESCRIPTION: # Associative array module names and tarball archive name # Example: # declare -A CALCULATE_TARBALL=( ["lib"]="calculate-lib-3.2.3-r1.tar.bz2" ) # @ECLASS-VARIABLE: UTILS_PV # @DESCRIPTION: # Default version of all components # Example: : ${UTILS_PV:=$(ver_cut 1-3 ${PV})} declare -g -A CALCULATE_TARBALL_=() declare -g -A CALCULATE_MODULES_=( ["lib"]="$UTILS_PV" ["builder"]="$UTILS_PV" ["install"]="$UTILS_PV" ["core"]="$UTILS_PV" ["i18n"]="$UTILS_PV" ["update"]="$UTILS_PV" ["desktop"]="$UTILS_PV" ["client"]="$UTILS_PV" ["console-gui"]="$UTILS_PV" ["console"]="$UTILS_PV" ["server"]="$UTILS_PV" ["ldap"]="$UTILS_PV" ["unix"]="$UTILS_PV") declare -g -A CALCULATE_MODULES_USE_=( ["desktop"]="desktop" ["client"]="client" ["console-gui"]="qt5" ["console"]="console" ["server"]="server" ["ldap"]="server" ["unix"]="server" ) EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} # @FUNCTION: prepare_variables # @DESCRIPTION: # Prepare variables for ebuild prepare_variables() { for module in ${!CALCULATE_MODULES[@]} do CALCULATE_MODULES_[$module]=${CALCULATE_MODULES[$module]} done for module in ${!CALCULATE_MODULES_USE[@]} do CALCULATE_MODULES_USE_[$module]=${CALCULATE_MODULES_USE[$module]} done for module in ${!CALCULATE_MODULES_[@]} do MODULE_PN=calculate-${module} MODULE_PV=${CALCULATE_MODULES_[$module]} if [[ -n ${CALCULATE_TARBALL[$module]} ]] then CALCULATE_TARBALL_[$module]="${MODULE_PN}/${CALCULATE_TARBALL[$module]}" else CALCULATE_TARBALL_[$module]="${MODULE_PN}/${MODULE_PN}-${MODULE_PV}.tar.bz2" fi done for module in ${!CALCULATE_MODULES_[@]} do MODULE_USE=${CALCULATE_MODULES_USE_[$module]} MODULE_URI="" for URI in $CALCULATE_URI $MIRROR_URI do MODULE_URI="${MODULE_URI} ${URI}/${CALCULATE_TARBALL_[$module]}" done if [[ -n $MODULE_USE ]] then MODULE_URI="${MODULE_USE}? ( $MODULE_URI )" fi SRC_URI="$SRC_URI $MODULE_URI" done IUSE="+install dbus +gpg minimal pxe backup ${CALCULATE_MODULES_USE_[@]}" S="${WORKDIR}" } # @FUNCTION: prepare_module_info # @DESCRIPTION: # Prepare module info for compile and install prepare_module_info() { MODULE_INFO=() for module in ${!CALCULATE_MODULES_[@]} do MODULE_USE=${CALCULATE_MODULES_USE_[$module]} if [[ -z $MODULE_USE ]] || use $MODULE_USE then MODULE_INFO+=("calculate-$module ${CALCULATE_MODULES_[$module]}") fi done } prepare_variables RDEPEND=" install? ( >=app-cdr/cdrtools-3.01_alpha13 >=sys-boot/grub-2.00-r3 >=sys-boot/syslinux-5 sys-fs/squashfs-tools sys-fs/dosfstools sys-block/parted sys-apps/gptfdisk sys-fs/lvm2 sys-fs/mdadm ) !minimal? ( >=sys-apps/util-linux-2.19.1 net-misc/rsync dev-python/sudsds[python_targets_python2_7] net-libs/dslib[python_targets_python2_7] >=dev-python/pyopenssl-python2-0.14 dev-libs/openssl dev-python/m2crypto-python2 dev-python/pytz-python2 ) gpg? ( app-crypt/gnupg app-crypt/openpgp-keys-calculate-release ) >=dev-python/pyxml-0.8 sys-apps/iproute2[-minimal] sys-apps/pciutils app-arch/xz-utils app-eselect/eselect-repository || ( sys-apps/portage[python_targets_python3_6] sys-apps/portage[python_targets_python3_7] sys-apps/portage[python_targets_python3_8] sys-apps/portage[python_targets_python3_9] ) >=virtual/udev-197 !app-misc/livecd-tools sys-apps/coreutils[xattr] pxe? ( sys-apps/calculate-server net-ftp/tftp-hpa net-misc/dhcp net-fs/nfs-utils ) >=dev-python/soaplib-1.0-r3 !=dev-python/python2-ldap-2.0[ssl] sys-auth/pam_client >=sys-auth/pam_ldap-180[ssl] >=sys-auth/nss_ldap-239 ) qt5? ( dev-python/dbus-python2 media-gfx/imagemagick[jpeg] dev-python/PyQt5-python2 dev-python/pyinotify-python2 ) dbus? ( dev-python/dbus-python2 ) dev-python/pexpect-python2 !