# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI=5 PYTHON_COMPAT=( python2_7 ) inherit versionator autotools-utils python-single-r1 MY_DATE="$(get_version_component_range 1)" DESCRIPTION="Library and tools to support the Volume Shadow Snapshot (VSS) format." HOMEPAGE="http://github.com/libyal/libvshadow/" SRC_URI="https://github.com/libyal/${PN}/releases/download/${MY_DATE}/${PN}-alpha-${MY_DATE}.tar.gz" LICENSE="LGPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86 ~x86-macos ~x64-macos" IUSE="debug python nls unicode" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" DEPEND=" nls? ( virtual/libintl virtual/libiconv ) python? ( ${PYTHON_DEPS} ) sys-fs/fuse dev-libs/libuna app-forensics/libbfio" RDEPEND="${DEPEND}" AUTOTOOLS_IN_SOURCE_BUILD=1 pkg_setup() { use python && python-single-r1_pkg_setup } src_configure() { local myeconfargs=( $(use_enable nls) $(use_with nls libiconv-prefix) $(use_with nls libintl-prefix) $(use_enable unicode wide-character-type) $(use_enable debug debug-output) $(use_enable debug verbose-output) $(use_enable python) ) autotools-utils_src_configure } src_compile() { autotools-utils_src_compile if use python; then emake -C pyvshadow fi } src_install() { autotools-utils_src_install if use python; then emake -C pyvshadow DESTDIR="${D}" install fi }