# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=4 DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC specification" HOMEPAGE="https://sourceforge.net/projects/libdc1394/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="2" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="doc static-libs X" RDEPEND=">=sys-libs/libraw1394-1.2.0 virtual/libusb:1 X? ( x11-libs/libSM x11-libs/libXv )" DEPEND="${RDEPEND} virtual/pkgconfig doc? ( app-doc/doxygen )" src_configure() { econf \ $(use_enable static-libs static) \ --program-suffix=2 \ $(use_with X x) \ $(use_enable doc doxygen-html) } src_compile() { default use doc && emake doc } src_install() { default use doc && dohtml doc/html/* find "${ED}" -name '*.la' -exec rm -f {} + }