53 lines
1.3 KiB
Bash
53 lines
1.3 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
|
|
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
|
|
inherit autotools-utils python-r1
|
|
|
|
DESCRIPTION="Support library to deal with Apple Property Lists (Binary & XML)"
|
|
HOMEPAGE="http://www.libimobiledevice.org/"
|
|
SRC_URI="http://www.libimobiledevice.org/downloads/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2 LGPL-2.1"
|
|
SLOT="0/2" # based on SONAME of libplist.so
|
|
KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-fbsd"
|
|
IUSE="python static-libs"
|
|
|
|
RDEPEND=">=dev-libs/libxml2-2.7.8"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
python? (
|
|
${PYTHON_DEPS}
|
|
>=dev-python/cython-0.17[${PYTHON_USEDEP}]
|
|
)"
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
DOCS=( AUTHORS NEWS README )
|
|
|
|
MAKEOPTS+=" -j1" #406365
|
|
|
|
RESTRICT="test" # TODO: src_test() was dropped from 1.10 (cmake) -> 1.11 (autotools)
|
|
|
|
src_configure() {
|
|
local myeconfargs=( $(use_enable static-libs static) )
|
|
use python || myeconfargs+=( --without-cython )
|
|
|
|
python_foreach_impl autotools-utils_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
python_foreach_impl autotools-utils_src_compile
|
|
}
|
|
|
|
src_install() {
|
|
python_foreach_impl autotools-utils_src_install
|
|
|
|
if use python; then
|
|
insinto /usr/include/plist/cython
|
|
doins cython/plist.pxd
|
|
fi
|
|
}
|